• Notice: A session had already been started - ignoring session_start() in /wp-content/plugins/accelerated-mobile-pages/includes/redirect.php on line 62

    replace this:
    session_start();

    for:

    // make the use of sessions possible.
    if (!session_id()) {
        session_start();
    }

    or:

    if(empty($_SESSION))
        session_start();
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)

The topic ‘validation for session in php’ is closed to new replies.