My site works perfectly in localhost, but when I upload to a online server, this show:
Parse error: syntax error, unexpected ')', expecting T_PAAMAYIM_NEKUDOTAYIM in /public_html/index.php on line 17
index.php line 17:
if(!empty(DEFAULT_TIMEZONE)){
date_default_timezone_set(DEFAULT_TIMEZONE);
}
I fix the first error commenting the line, like this:
/*if(!empty(DEFAULT_TIMEZONE)){
date_default_timezone_set(DEFAULT_TIMEZONE);
}*/
But after fix it, a new error is displayed:
Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in /public_html/index.php on line 82
Index.php line 82:
$csrf_token = $csrf :: $token;
How to solve this? Thank's.