Re: Everything is working but modpython

2008-09-04 Thread jpittet
I went on to the IRC channel and Magus- helped me solve the problem. Centos has permissions on the user folder I had the SVN trunk in that was set to 700. /home/username/django-trunk is where I symlinked django from. To solve this problem all I had to do was set the permissions to 711 and it

Re: Everything is working but modpython

2008-09-03 Thread Graham Dumpleton
Run command line 'python' you used to install Django and then go: $ python Python 2.3.5 (#1, Mar 20 2005, 20:38:20) [GCC 3.3 20030304 (Apple Computer, Inc. build 1809)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import django >>> django.__file__ '/System/

Re: Everything is working but modpython

2008-09-03 Thread Joshua Jonah
Likely it's an issue with the instance of python that mod_python is complied to, do you have more than one version of python? Joshua Jonah wrote: > That error looks like you cant import django. weird. > > jpittet wrote: > >> I have everything running except mod_python on apache. >> >> I can im

Re: Everything is working but modpython

2008-09-03 Thread Joshua Jonah
That error looks like you cant import django. weird. jpittet wrote: > I have everything running except mod_python on apache. > > I can import django in the Python interpreter. I can even run python > manage.py runserver but as soon as I put it in apache, it gives me > grief. This is a > Centos 5

Everything is working but modpython

2008-09-03 Thread jpittet
I have everything running except mod_python on apache. I can import django in the Python interpreter. I can even run python manage.py runserver but as soon as I put it in apache, it gives me grief. This is a Centos 5 Python 2.4 Apache 2.2 mod_python.i386 3.2.8-3.1 Django SVN at 1.0 rc_1 Here is