I have uploaded my project from git and my urls.py file is not compiling (meaning I don't see a urls.pyc file after restarting apache). When I use runserver, it works but with apache it just gives me a 404 Not Found Page (and it's not my custom 404 page either). Could it be because of the folder structure of my project? My manage.py and settings.py files are 2 folders down from the project root unlike the default of 1. I pointed my WSGIDaemonProcess and WSGIScriptAlias to what I believe to be correct. Any thoughts? asked 21 Jul '12, 15:08 Flye777 |
Looks like that problem may be solved. Just so everybody knows, when you have a directory that has the manage.py file further inside a project than the root, all preceding folders must be in the python path. So I just added the folder in between the django_app path and the manage.py path to the WSGIDaemonProcess PythonPath value. answered 21 Jul '12, 15:18 Flye777 |