• Resolved azrieil

    (@azrieil)


    case 1:
    Somewhere in my functions.php

    if (session_status() == PHP_SESSION_NONE)
    	session_start();

    /super_socializer.php:332
    session_start();
    Facebook pop-up window on my https://localhost

    Notice: 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.

    • This topic was modified 6 years, 1 month ago by azrieil.
    • This topic was modified 6 years, 1 month ago by azrieil.
    • This topic was modified 6 years, 1 month ago by azrieil.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)

The topic ‘Session throws warn & brackets error’ is closed to new replies.