Alright I give... I thought I followed all the directions and I'm
running into trouble

I have installed fastcgi
I have installed django and python

Trying to run this on apache 1.3 and fastcgi

in my httpd.conf

<IfModule mod_fastcgi.c>
        FastCGIExternalServer
/home/user/public_html/content/mysite.fcgi -socket
/home/user/mysite.sock
</IfModule>


My directory structure for this website

/home/user/content
-manage.py
-settings.py
-urls.py

/home/user/public_html/content/
-.htaccess

my htaccess file:

AddHandler fastcgi-script .fcgi
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /mysite.fcgi/$1 [QSA,L]


I logged into my server and started the django fastcgi. I know it is
running because I see it in my pid list

root     19810  0.0  0.0  9244 5624 ?        S    20:36   0:00 python
./manage.py runfcgi method=prefork socket=/home/user/mysite.sock
pidfile=django.pid


However when I go to http://www.mysite.com/content/   I get "HTTP 404
Not Found" error

I don't know where to start with trying to figure this out... been
working on it for 2 days now!!


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