Session throws warn & brackets error
-
case 1:
Somewhere in my functions.phpif (session_status() == PHP_SESSION_NONE) session_start();/super_socializer.php:332
session_start();
Facebook pop-up window on my https://localhostNotice: session_start(): A session had already been started – ignoring in /var/www/html/wp-content/plugins/super-socializer/super_socializer.php on line 332
Can be fixed by change /super_socializer.php:332
if (session_status() == PHP_SESSION_NONE) session_start();Or
@session_start();case 2
/library/Google/Utils.php:67
$ordinalValue = ord($str{$ret});
That syntax removed in 7.4. Please change it to
$ordinalValue = ord($str[$ret]);
for better compatibility if it possible.
Thanks.
The topic ‘Session throws warn & brackets error’ is closed to new replies.