Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~8K People Reached
Favorite Tags
Member Avatar for bbinais

I want to disable the user for 6hrs when he inputs the wrong password 3 times i'm using mysql... please help me... and this is my usercheck.php [code=php] <?php session_start(); include("config.php"); if (isset($_POST['sub'])) { $myusername = $_POST['txtusername']; $mypassword = $_POST['txtpassword']; $name = stripslashes($myusername); $password = stripslashes($mypassword); $myusername = mysql_real_escape_string($name); $mypassword …

Member Avatar for diafol
0
2K
Member Avatar for bbinais

we have 10 domain controllers. account is getting locked on certain domains. there is no security events(539)recorded on dcs. though security failure locks enabled on all dcs. How do we get to know from which machine is causing bad passwords attempts....

Member Avatar for salapso
0
101
Member Avatar for bbinais

hi, this is my php code i need pagination for this page.. help me please.... [CODE=php] include('connection.php'); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="Expires" content="Wed, 01 Jan 2020 00:00:01 GMT" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="Content-Script-Type" content="text/javascript" …

Member Avatar for pritaeas
0
162
Member Avatar for bbinais

Is it possible to create grid view in php?Or any thing equivalent to that?What i actually want is to query the database(mySQL) and print the result in a table form on the web page. and when i click any column i want to redirect to another page Any help would …

Member Avatar for Shanti C
0
77
Member Avatar for bbinais

i need to validate my username and must not be blank.. i use this code.. but its not working... i'm getting this error.. [COLOR="Red"]'Object not found! The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the …

Member Avatar for diafol
0
229
Member Avatar for bbinais

i cant update... is there any error in it... i'm getting an error" you are using a safe updating mode.... please help me.... [CODE] UPDATE $tbl_name SET MUSE_RETRYCOUNT='0', MUSE_ISLOCKED='0' WHERE MUSE_LASTRETRYTIME <=DATE_ADD(SYSDATE(),INTERVAL -6 hour) [/CODE]

Member Avatar for smantscheff
0
61
Member Avatar for bbinais

if my php website is ideal for 30 minutes it shuld be redirected to login page please help me.... this is my checkuser.php [code=php] <?php session_start(); include("config.php"); if (isset($_POST['sub'])) { $myusername = $_POST['txtusername']; $mypassword = $_POST['txtpassword']; $name = stripslashes($myusername); $password = stripslashes($mypassword); $myusername = mysql_real_escape_string($name); $mypassword = mysql_real_escape_string($password); $sql = …

Member Avatar for Shanti C
0
135
Member Avatar for bbinais

i want the code for if user try to access the login screen for more than 3 times with invalid password then account should lock plzzzzzzzzzzzz......

Member Avatar for bbinais
0
452
Member Avatar for bbinais

please help me.... i want a error message "invalid user name or password" when i input wrong username or password in the login page. i can do it in an another page .but i need the error message in the same loginpage like gmail(between username and password). this is my …

Member Avatar for bbinais
0
4K
Member Avatar for bbinais

1. i cant login my login page while i use the encrypted password using md5(). 2. session is not working in my pages. 3. logout button is not working. Main_Login.php --------------- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="Expires" content="Wed, …

Member Avatar for Ezzaral
0
244
Member Avatar for Acute

Hello every1, i'm building a site that requires logging in before accessing other pages(like facebook or any mail system). At first(in index) i create an object of my sessions class, say $session. The constructor of sessions class calls session_start() php function. $session checks if user logged in or not(maybe he …

Member Avatar for diafol
0
96
Member Avatar for backendcode