On Oct 3, 9:01 am, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> I actually got fed up, and nearly resolved to switch either
> frameworks(pylons, turbogears) or webhosts(webfaction, dreamhost).
[... big cut...]

Hi all,

i'm hosted at ASmallOrange and can't find a way to make feedjack[1]
work over there. Locally and over the django dev server everything
works smooth so i kinda exclude some gross misconfiguration in my app
settings.

FCGI is enabled from the control panel

I have this setup

~/.bash_profile:
export PATH=$HOME/bin:$HOME/projects/django/bin:$PATH
export PYTHONPATH=$HOME/projects:$PYTHONPATH

~/projects/
fcgi.py
django/ (this is the django source)
newyo/ (this is my app which contains the feedjack app)

~/www/
dispatch.fcgi
.htaccess

dispatch.fcgi contains:
#!/usr/bin/env python
import sys

sys.path += ['/home/lbologni/projects/django/']
sys.path += ['/home/lbologni/projects/']

from fcgi import WSGIServer
from django.core.handlers.wsgi import WSGIHandler

import os

os.environ['DJANGO_SETTINGS_MODULE'] = 'newyo.settings'

WSGIServer(WSGIHandler()).run()

.htaccess contains:
RewriteEngine On
RewriteBase /
RewriteRule ^(media/.*)$ - [L]
RewriteRule ^(admin_media/.*)$ - [L]
RewriteRule ^(dispatch\.fcgi/.*)$ - [L]
RewriteRule ^(.*)$ dispatch.fcgi/$1 [L]

What am i missing?

Thanks,
Lorenzo

--
[1] http://www.feedjack.org/


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