View Single Post
  #6  
Old 14th November 2010, 09:21
d6bmg d6bmg is offline
Senior Member
 
Join Date: Aug 2010
P2P
Posts: 36
Lightbulb
Quote:
Originally Posted by Timisoreanul View Post
Open login.php then find this :
Code:
    // Begin the session
    session_start();
    if (isset($_SESSION['captcha_time']))
    (time() - $_SESSION['captcha_time'] < 10) ? exit("{$lang['login_spam']}") : NULL;
you see 10 ? yes? , lower to 2 (replace 10 to 2)..end try .Post if working ....
Ps: not sure , just try .
best thing to do is just to comment out that part i.e.
Code:
/* if (isset($_SESSION['captcha_time']))
    (time() - $_SESSION['captcha_time'] < 10) ? exit("{$lang['login_spam']}") : NULL; */
Reply With Quote