if you encounter these problems during your installation:
1. no module named modpython
[color=red] solution: download the modpython.py, and copy to '/usr/local/lib/python2.7/dist-packages/django/core/handler'[/color]
2. no module named server.settings(your project name.settings)
[color=red] solution: check the urls in your apache2 config file-->httpd.conf or default, especially the 'PythonPath'[/color]
for example:
1. create a new project named myproject:
/media/DATA/MyDocuments/python_ubuntu/django$ sudo python /usr/local/lib/python2.7/dist-packages/django/bin/django-admin.py startproject myproject
2. configurate the apache2 httpd.conf:
$ cd /etc/apache2
$ sudo gedit httpd.conf
<Location "/myproject/">
SetHandler python-program
SetEnv DJANGO_SETTINGS_MODULE myproject.settings
PythonPath "['/media/DATA/MyDocuments/python_ubuntu/django'] + sys.path"
PythonHandler django.core.handlers.modpython
PythonDebug On
</Location>
3. start off your apache2:
$ cd /etc/init.d
$ sudo ./apache2 restart
everything is done!
suffered terrible problems and drove me crazy
when they were fixed, feeling so great!
1. no module named modpython
[color=red] solution: download the modpython.py, and copy to '/usr/local/lib/python2.7/dist-packages/django/core/handler'[/color]
2. no module named server.settings(your project name.settings)
[color=red] solution: check the urls in your apache2 config file-->httpd.conf or default, especially the 'PythonPath'[/color]
for example:
1. create a new project named myproject:
/media/DATA/MyDocuments/python_ubuntu/django$ sudo python /usr/local/lib/python2.7/dist-packages/django/bin/django-admin.py startproject myproject
2. configurate the apache2 httpd.conf:
$ cd /etc/apache2
$ sudo gedit httpd.conf
<Location "/myproject/">
SetHandler python-program
SetEnv DJANGO_SETTINGS_MODULE myproject.settings
PythonPath "['/media/DATA/MyDocuments/python_ubuntu/django'] + sys.path"
PythonHandler django.core.handlers.modpython
PythonDebug On
</Location>
3. start off your apache2:
$ cd /etc/init.d
$ sudo ./apache2 restart
everything is done!
suffered terrible problems and drove me crazy
when they were fixed, feeling so great!