Thread obsoleto Aiuto urgente

YoloGames

Nuovo utente
Autore del topic
28 Febbraio 2017
7
1
Miglior risposta
0
Salve,sto aprendo un retro con cms privato in local hostfunziona benissimo da quando lo ho sul semi dedicato francese di ovh mi esce come sfondo
Warning
: date() [
Perfavore, Entra oppure Registrati per vedere i Link!
]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Europe/Paris' for '1.0/no DST' instead in C:\xampp\htdocs\core.php on line 25
 
Posta il core.php (Per vedere la linea 25).
Probabilmente devi settare la timezone.
 
Posta il core.php (Per vedere la linea 25).
Probabilmente devi settare la timezone.

$H = date('H');
$i = date('i');
$s = date('s');
$m = date('m');
$d = date('d');
$Y = date('Y');
$j = date('j');
$n = date('n');
$today = $d;
$month = $m;
$year = $Y;
$date_normal = date('d-m-Y',mktime($m,$d,$Y));
$date_full = date('d-m-Y H:i:s',mktime($H,$i,$s,$m,$d,$Y));
 
Il PHP ti dice chiaramente come fare.
Usa quella funzione indicata nell'errore.
 
Usa la funzione default_timezone, ti potresti documentare su PHP.NET