Les archives de FluxBB.fr
Vous n'êtes pas identifié(e).
Pages : 1
Bonjours,
Je viens d'installer un forum fuxbb en local et au dessus du header j'ai une erreur, la voici:
Deprecated: Function set_magic_quotes_runtime() is deprecated in C:\wamp\www\world\forum\include\common.php on line 58Et voici la ligne 50 à 71:
// Record the start time (will be used to calculate the generation time for the page)
list($usec, $sec) = explode(' ', microtime());
$pun_start = ((float)$usec + (float)$sec);
// Make sure PHP reports all errors except E_NOTICE. PunBB supports E_ALL, but a lot of scripts it may interact with, do not.
error_reporting(E_ALL ^ E_NOTICE);
// Turn off magic_quotes_runtime
set_magic_quotes_runtime(0);
// Strip slashes from GET/POST/COOKIE (if magic_quotes_gpc is enabled)
if (get_magic_quotes_gpc())
{
function stripslashes_array($array)
{
return is_array($array) ? array_map('stripslashes_array', $array) : stripslashes($array);
}
$_GET = stripslashes_array($_GET);
$_POST = stripslashes_array($_POST);
$_COOKIE = stripslashes_array($_COOKIE);
}Merci d'avance
Cordialement,
Samaf
Hors ligne
La réponse ici :
Hors ligne
N'oublie pa sla balise [réglé]
Hors ligne
Merci pour ton aide.
Je vais éditer mon post pour mettre la balise.
Edite: Impossible d'éditer le titre du post.
Dernière modification par Samaf (30-08-2009 14:36:22)
Hors ligne
Pages : 1