I just uploaded my application to my server and this is the error that
I am getting when I try to restart apache:
Restarting web server: apache2Syntax error on line 6 of /etc/apache2/
httpd.conf:
Invalid command 'WSGIDaemonProcess', perhaps misspelled or defined by
a module not included in the server configuration
failed!
And my /etc/apache2/httpd.conf file looks like this:
<VirtualHost *:80>
ServerAdmin jose@localhost
ServerName
scihelp.info
WSGIDaemonProcess mocenter user=jose group=jose threads=25
WSGIProcessGroup mocenter
Alias /admin_media /usr/lib/python2.5/site-packages/django/contrib/
admin/me$
<Location /admin_media>
Order allow,deny
Allow from all
</Location>
Alias /media/ /home/jose/Django/mocenter/media/
<Directory /home/jose/Django/mocenter/media>
Order deny,allow
Allow from all
</Directory>
WSGIScriptAlias / /home/jose/Django/mocenter/apache/django.wsgi
<Directory /home/jose/Django/mocenter/apache>
Order deny,allow
Allow from all
</Directory>
</VirtualHost>
Everything worked well on my local server