• I’ve install WP-Forum in my wordpress blog. Everything was fine, I could manage the forum but there is a few lines showing on the top of the page.

    Warning: date() expects parameter 2 to be long, string given in /www/110mb.com/k/i/t/a/n/j/a/l/kitanjali/htdocs/blog/wp-content/plugins/wp-forum/forum-functions.php on line 668

    What does it mean and how to fix it?

    This is the page of my forum: https://kitanjali.110mb.com/blog/?page_id=28

Viewing 3 replies - 1 through 3 (of 3 total)
  • Have you tried over on their support forums?

    Hi,

    Open cookie.php and find:

    function ul($user_id){
    if(!isset($_COOKIE[’session’])){
    update_usermeta( $user_id, ‘lastvisit’, time() );
    return true;
    }
    return false;
    }

    change to

    function ul($user_id){
    if(isset($_COOKIE[’session’])){
    update_usermeta( $user_id, ‘lastvisit’, time() );
    return true;
    }
    return false;
    }

    deleting “!” charactor?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘script specific error’ is closed to new replies.