kranthi117 Posted February 28, 2008 Share Posted February 28, 2008 i hav this line in my .htacess file ErrorDocument 403 /site/403.php and this in my test.php file <?php header(' ',true,403); ?> but when i open http://localhost/site/test.php i m getting nothing but a blank screen but i m expecting 403.php to open in its place plz help me Plz dont suggest something like <?php header('Location: http://localhost/site/403.php'); ?> Quote Link to comment Share on other sites More sharing options...
trq Posted February 28, 2008 Share Posted February 28, 2008 the first argument to the header function is not optional, feading it an empty string isn't going to help either. How about passing it a 403 header? eg; <?php header("HTTP/1.0 Error 403 Forbidden"); ?> Quote Link to comment Share on other sites More sharing options...
kranthi117 Posted February 28, 2008 Author Share Posted February 28, 2008 well http://in2.php.net/manual/en/function.header.php#77846 i hav tried this many times and it worked perfectly well. i checked tru live HTTP headers of FF i even tried <?php header("HTTP/1.0 Error 403 Forbidden"); ?> but in vain httwatch basic(www.httpwatch.com) in IE shows its a 500 error in either case Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.