Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   TBDev (http://www.bvlist.com/forumdisplay.php?f=20)
-   -   How Can remove no spam security (http://www.bvlist.com/showthread.php?t=5476)

aniowe 8th October 2010 17:28

How Can remove no spam security
 
Quote:

NO SPAM! Wait 10 seconds and then refresh page
???

d6bmg 19th October 2010 23:12

this thing is good, right?
so why do you want to remove it?

aniowe 23rd October 2010 23:07

irritant is

Timisoreanul 23rd October 2010 23:25

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 .

cherwonk 24th October 2010 19:56

you can even just remove that bit, dont you play with your code? You need to experiment to see what does what. If you've already got a running site , I hope you have a test site set up to work out bugs.

d6bmg 14th November 2010 09:21

Quote:

Originally Posted by Timisoreanul (Post 25310)
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; */



All times are GMT +2. The time now is 04:34.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.