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 j...@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



--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to