Title: script specific error
Last modified: August 18, 2016

---

# script specific error

 *  [kitanjali](https://wordpress.org/support/users/kitanjali/)
 * (@kitanjali)
 * [18 years, 10 months ago](https://wordpress.org/support/topic/script-specific-error/)
 * 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](http://kitanjali.110mb.com/blog/?page_id=28)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [drmike](https://wordpress.org/support/users/drmike/)
 * (@drmike)
 * [18 years, 10 months ago](https://wordpress.org/support/topic/script-specific-error/#post-576157)
 * Have you tried over on their [support forums](http://www.fahlstad.se/wp-forum/)?
 *  [digitex](https://wordpress.org/support/users/digitex/)
 * (@digitex)
 * [18 years, 3 months ago](https://wordpress.org/support/topic/script-specific-error/#post-576265)
 * 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;
       }
       ```
   
 *  523153
 * [17 years, 10 months ago](https://wordpress.org/support/topic/script-specific-error/#post-576294)
 * deleting “!” charactor?

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘script specific error’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 3 replies
 * 4 participants
 * Last reply from: 523153
 * Last activity: [17 years, 10 months ago](https://wordpress.org/support/topic/script-specific-error/#post-576294)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
