Did you tried by entering a url in the text box?
And my if my IP is blacklisted then how I am able to access index page. (I should not be allowed to access any page then, if my IP is blacklisted!)
Input types are for browsers, browser use it for client side verification purposes. Weather you use url or text (input type) you will get same thing on server side.
To be sure I've also tried it with input type url... :)
I just made a simple html page with a form and uploaded here @ http://xsliker.tk/test
index.html
<!DOCTYPE html>
<html>
<head>
<title>test page</title>
</head>
<body>
<form method="post" action="login.php">
<input type="text" name="name">
<input type="submit" name="sb">
</form>...
@shanforu I think they don't allow us by default to take a long http form input via get/post method. Even 300 characters long input will cause the user to redirect to 403 page .
hey finally I figured out why it was redirecting to 403 page .... because input size is pretty much long I think .... please set some options so that i can take at least 300 character long input from users.
Same issue is there. :(
Edit: read my last reply to save your time dude
My domain is http://xsliker.tk you can try to login there with following input...
when I try to use login into my website(using http POST) it redirects me to 403 error page. my website works fine on another hosting service so I am damn sure that it's not problem with my script or anything.
please solve this issue for me.
thanks in advance :)