Maybe somekind of offtopic, but trying to run django on cPanel shared
account, got a lot of problems with finalizing crash with error on
splitting an empty request ('host.name','')
Used the same method posted above, any ideas from where is the
problem?

Also additionally the htaccess or direct call to the dispatcher drops
a http 500 error, so i was doing very hard experiment just to view is
the app running, so i was calling shell_exec("/usr/bin/env python
dispatch.fcgi") so i got the split error.

PS: This is definitely a wrong way to experiment the run of django,
but did some one made it to run on cPanel shared hosting without
additional/changes to the system (with root) ?

On Mar 31, 9:13 am, Amit Ramon <[EMAIL PROTECTED]> wrote:
> A dumb question: do you have, in your two dispatch.fcgi files, different 
> values for DJANGO_SETTINGS_MODULE, or are they the same? And is sys.path 
> different between the two projects? Because the combination of sys.path and 
> DJANGO_SETTINGS_MODULE has to be different if you want to load different 
> setting files.
>
> --- Amit
>
> * Brandon Taylor <[EMAIL PROTECTED]> [2008-03-30 13:56 -0700]:
>
>
>
> > Hi everyone,
>
> > I'm on shared hosting and can't modify any Apache settings. So, I'm
> > assuming I need to specify which settings file to use in .htaccess.
>
> > I have two projects on my server. The first one is working correctly,
> > the second is not. The problem with the second is that it seems to be
> > loading project settings from the first project.
>
> > Here is my .htaccess file:
>
> > RewriteEngine On
> >     RewriteBase /
> >     RewriteRule ^(media/.*)$ - [L]
> >     RewriteRule ^(admin_media/.*)$ - [L]
> >     RewriteRule ^(dispatch\.fcgi/.*)$ - [L]
> >     RewriteRule ^(.*)$ dispatch.fcgi/$1 [L]
>
> > Here is my dispatch.fcgi:
>
> > import sys
> > sys.path += ['/home/brandon/django/django_src']
> > sys.path += ['/home/brandon/django/django_projects']
> > from fcgi import WSGIServer
> > from django.core.handlers.wsgi import WSGIHandler
> > import os
> > os.environ['DJANGO_SETTINGS_MODULE'] = 'myproject.settings'
> > WSGIServer(WSGIHandler()).run()
>
> > I'm sure the problem is the os.environ['DJANGO_SETTINGS_MODULE']
> > setting not getting specified for the individual websites. Can someone
> > please share their recipe for multiple sites in a shared environment?
> > I would really appreciate it!
>
> > Brandon
--~--~---------~--~----~------------~-------~--~----~
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