[solved] having a .htaccess file causes server (500) errors... - Printable Version +- ispCP - Board - Support (http://www.isp-control.net/forum) +-- Forum: ispCP Omega Support Area (/forum-30.html) +--- Forum: Usage (/forum-34.html) +--- Thread: [solved] having a .htaccess file causes server (500) errors... (/thread-2221.html) Pages: 1 2 |
[solved] having a .htaccess file causes server (500) errors... - psygarden - 01-24-2008 02:37 AM I remember having this issue with vhcs2 and now i've run into it with ispcp, i hope there's a solution, or that i'm just making a dumb mistake that i can fix easely! the problem is that i need to be able to rewrite urls using mod-rewrite. Now as soon as i have a .htaccess file in my htdocs folder i get "Error 500! - Internal Server Error!" errors. Here is most of my .htaccess file: Quote:RewriteEngine on Does anyone have suggestions how to get a working setup while using all these rewrite rules? Kind regards, Rik RE: having a .htaccess file causes server (500) errors... - BeNe - 01-24-2008 02:54 AM Did you checked your /etc/apache2/sites-enabled/ispcp.conf about Code: Options -Indexes Includes FollowSymLinks MultiViews Please check your error.log for more info! Greez BeNe RE: having a .htaccess file causes server (500) errors... - psygarden - 01-24-2008 04:21 AM BeNe Wrote:Did you checked your /etc/apache2/sites-enabled/ispcp.conf about Those settings are correct for that config file, is there any way that i can disable FastCGI after a website has been created ? mod rewrite is very important for all my sites... RE: having a .htaccess file causes server (500) errors... - BeNe - 01-24-2008 04:26 AM Quote:is there any way that i can disable FastCGI after a website has been created ?You can try to change to mod_fcgid...but i dont konw if this is a solution for your Problem. Try to set it directly in the apache2 config for the vhost. Not that nice way but it should work there. Greez BeNe RE: having a .htaccess file causes server (500) errors... - joximu - 01-24-2008 04:32 AM You also could try to find out, which line is throwing the error. Normally you also have some infos in the error.log of apache... RE: having a .htaccess file causes server (500) errors... - raphael - 01-24-2008 05:17 AM Quote:Next is that FastCGI can not understand ALL values in the .htaccess.ugh? fastcgi doesn't parse the .htaccess files, apache does RE: having a .htaccess file causes server (500) errors... - BeNe - 01-24-2008 05:43 AM Quote:ugh? fastcgi doesn't parse the .htaccess files, apache does*damn* Ok - this was my fault i was thinking at htscanner but this only for php values . And these directive is for mod_rewrite and has nothing do to PHP. Sorry! Greez BeNe RE: having a .htaccess file causes server (500) errors... - psygarden - 01-25-2008 07:35 AM Resolved RE: having a .htaccess file causes server (500) errors... - BeNe - 01-25-2008 08:18 AM Does it work now ? What was the Problem ? Greez BeNe RE: having a .htaccess file causes server (500) errors... - psygarden - 01-25-2008 08:23 AM BeNe Wrote:Does it work now ? I can't use the following statements in the default debian setup: Quote:Documentroot someting.html If i remove those lines that all the rest seems to be working! |