On Jan 5, 7:46 pm, Michael Hipp <[EMAIL PROTECTED]> 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'.
>

If your code is working fine with the development server ( manage.py
runserver) then you can pretty much rule out a problem with your
code.

To get some help with this problem you'll need to post something from
your apache error log since it sounds like that's where the stacktrace
is going.  And you should also post your mysite.fcgi script.  You
probably just need to double check your pythonpath, which you usually
need to set in your .fcgi.

I set mine like this:

import sys
sys.path.insert(0, "/home/me/sites/example.com/apps" )
sys.path.insert(0, "/home/me/lib/python" )

--
Milan
--~--~---------~--~----~------------~-------~--~----~
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