>   AddHandler fastcgi-script .fcgi

Is this the actual name of your fcgi script? Also, there seems to be a
space before ".fcgi", which doesn't seem right.

Michael Hipp wrote:
> Hello,
>
> I'm hoping to rework my website into Django, but am having trouble at my
> shared hosting provider (HostMonster).
>
> They don't support mod_python, so Hostmonster said to add this to .htaccess
> for FastCGI:
>
>    AddHandler fcgid-script .fcgi
>
> I did that and my html sites still work, but when I add the recommendations
> from Django my html sites don't work and neither does my fledgling Django 
> site.
>
>    AddHandler fastcgi-script .fcgi
>    RewriteEngine On
>    RewriteCond %{REQUEST_FILENAME} !-f
>    RewriteRule ^(.*)$ mysite.fcgi/$1 [QSA,L]
>
> I also did the mysite.fcgi file. My Django site just returns blank pages. The
> html sites get an 'Internal Server Error'.
>
> I'm pretty sure my Django code works as it's just the simple stuff from
> chapter 2 and 3 and it works on the development server.
>
> Any help?
>
> Thanks,
> Michael
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to