On 5/29/07, Stut <stuttle@xxxxxxxxx> wrote:
blueboy wrote: > my .htacces file only contains 2 lines > > allowoverride all > php_flag display_errors on > > I get a 500 server error, any ideas? Check the Apache error log - that usually has more information on what's wrong. -Stut -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Sounds like you have the good ol' fashion "AllowOverride not allowed here" problem. This is because it's a core directive, which can only be used in httpd.conf. AllowOverride is actually the directive used to allow .htaccess files to be read, and what options can be set. If you were able to add that to the .htaccess file itself, it would mean that the admin had no control over what could and could not be done with the server as a whole. -- Daniel P. Brown [office] (570-) 587-7080 Ext. 272 [mobile] (570-) 766-8107 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php