Bonjour j'ai un un problème qui emp^che l'accès à mon site. Je ne comprend pas car je n'ai fait aucune modifs dessus
Voici le code la dernière ligne est la ligne 1411
// from php.net (modified by Mark Jaquith to behave like the native PHP5 function)
function _http_build_query($data, $prefix=null, $sep=null, $key='', $urlencode=true) {
$ret = array();
foreach ( (array) $data as $k => $v ) {
if ( $urlencode)
$k = urlencode($k);
if ( is_int($k) && $prefix != null )
$k = $prefix.$k;
if ( !empty($key) )
$k = $key . '%5B' . $k . '%5D';
if ( $v === NULL )
continue;
elseif ( $v === FALSE )
$v = '0';
if ( is_array($v) || is_object($v) )
array_push($ret,_http_build_query($v, '', $sep, $k, $urlencode));
elseif ( $urlencode )
array_push($ret, $k.'='.urlencode($v));
else
array_push($ret, $k.'='.$v);
}
if ( NULL === $sep )
$sep = ini_get('arg_separator.output');
return implode($sep, $ret);
}
mon navigateur affiche :
Fatal error: Cannot redeclare _http_build_query() (previously declared in /homez.424/ludovica/www/WordPress3/wp-includes/compat.php:18) in /homez.424/ludovica/www/WordPress3/wp-includes/functions.php on line 1411
lorsque je veux accéder à mon site
http://ludovicamiot-photographies.com/WordPress3/index
Si quelqun à une solution à me donner
merci