RE: [users@httpd] error 404 document in php

2011-05-28 Thread Geoff Millikan
> I'm not seeing anything > in the access log file except the reference to the 500 error > Running > a php cli on the php file does not return any errors Check the error log. Sounds like a permissions issue. Check the owner of the file. And recursive permissions. Are directories all 0755? >

Re: [users@httpd] error 404 document in php

2011-05-27 Thread David Mehler
Hello, Thank you for your replies. What i'm getting is the error 500 internal server error when I place the .htaccess file. I'm not seeing anything in the access log file except the reference to the 500 error. Running a php cli on the php file does not return any errors syntax or otherwise. I proba

RE: [users@httpd] error 404 document in php

2011-05-27 Thread Geoff Millikan
> Does anyone have this working? Yes. But, as noted under separate cover, it does not return a 404 status code in 2.2.17 even when a local URL-path is used like in the below. The lack of the 404 response will get you dinged by your favorite search engine as the Apache documentation mentions. E

Re: [users@httpd] error 404 document in php

2011-05-25 Thread Patrick Proniewski
On 25 mai 2011, at 21:55, David Mehler wrote: > I'm wanting to make a custom error document for 404. I'm wanting it to > look like the rest of my site and have some php information on the > site. If in httpd.conf I use errordocument 404 and specify a file > ending with .php no go. Does anyone have