
xnic0nx Offline Member Total Posts: 19
Joined: January 26, 2016Posted: January 30, 2016 @ 09:11 PM
in the app/Helpers/Cookie.php script
find at line 43:
Code$retval = @setcookie(COOKIE_PREFIX.$key, $value, $expiry, $path, $domain);
change that to :
Code$retval = @setcookie(COOKIE_PREFIX.$key, $value, time() + (86400 * 30), $path, $domain);
That should fix your Login/Cookie errors. The cookie is set for 30 days.