Menu

setcookie()

Help
2005-05-08
2013-06-03
  • tresloukadu

    tresloukadu - 2005-05-08

    I am getting the following error when trying to log in:

    Warning: setcookie() expects parameter 3 to be long, string given in /home/helpdesk/public_html/includes/cookie.inc.php on line 8

    The cookie.inc.php is actually quite a small file and I would not think that it would cause me much grief, but it is. Below is the actual code for the cookie generation script:

    <?php
    // Modified by Andrew Walker (ajwalker@home.com)
    $time = mktime()+$g_cookietimeout;
    $date = date("l, d-M-y H:i:s", ($time));

    if (isset($authentication)) {
    setcookie("status", $status, $date);
    setcookie("user", $user, $date);
    setcookie("group", $group, $date);
    setcookie("authentication", $authentication, $date);
    setcookie("laston", $laston, $date);
    }
    else {
    setcookie("status", "Logged In", $date);
    setcookie("user", $txtUsername, $date);
    setcookie("group", $row[4], $date);
    setcookie("authentication", "YES", $date);
    setcookie("laston", $row[6], $date);
    }
    ?>

    Any help would be greatly appreciated.

     
    • FilSchiesty

      FilSchiesty - 2005-07-09

      I too am getting this same error while trying to login.

       
    • tbma

      tbma - 2005-08-11

      The shortest fix would be to edit a line that says:

      $date = date("l, d-M-y H:i:s", ($time)); 

      to

      $date = $time;

       

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.