Forums

script specific error (4 posts)

  1. kitanjali
    Member
    Posted 2 years ago #

    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: http://kitanjali.110mb.com/blog/?page_id=28

  2. drmike
    Member
    Posted 2 years ago #

    Have you tried over on their support forums?

  3. digitex
    Member
    Posted 1 year ago #

    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;
    }
  4. lumo44
    Member
    Posted 1 year ago #

    deleting "!" charactor?

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags