Hi, I'm trying to setup my site which using the method found here: http://forum.webfaction.com/viewtopic.php?id=2373, but I keep running into an error when I try to start up (./webapps/apachewsgi/apache2/bin/ start):
httpd: Syntax error on line 11 of /home/lnoir/webapps/apachewsgi/ apache2/conf/httpd.conf: Can't locate API module structure `access_module' in file /home/lnoir/webapps/apachewsgi/apache2/modules/ mod_authz_host.so: /home/lnoir/webapps/apachewsgi/apache2/modules/ mod_authz_host.so: undefined symbol: access_module I'm not sure what I've done wrong. This is my httpd.conf file: ServerRoot "/home/lnoir/webapps/apachewsgi/apache2" LoadModule dir_module modules/mod_dir.so LoadModule env_module modules/mod_env.so LoadModule log_config_module modules/mod_log_config.so LoadModule mime_module modules/mod_mime.so LoadModule rewrite_module modules/mod_rewrite.so LoadModule wsgi_module modules/mod_wsgi.so LoadModule alias_module modules/mod_alias.so LoadModule access_module modules/mod_authz_host.so KeepAlive Off Listen 7913 WSGIScriptAlias / /home/lnoir/webapps/apachewsgi/web2py/wsgihandler.py WSGIDaemonProcess web2py user=lnoir group=lnoir \ home=/home/lnoir/webapps/apachewsgi/web2py \ processes=1 maximum-requests=1000 NameVirtualHost 127.0.0.1:7913 <VirtualHost 127.0.0.1:7913> ServerName vividnotes.com DocumentRoot /home/lnoir/webapps/apachewsgi/web2py/applications <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory /home/lnoir/webapps/apachewsgi/> Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all </Directory> </VirtualHost> </VirtualHost 127.0.0.1:7913> ServerName admin.vividnotes.com DocumentRoot /home/lnoir/webapps/apachewsgi/web2py/applications/admin <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory /home/lnoir/webapps/apachewsgi/> Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all </Directory> </VirtualHost> LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \ \"%{User-Agent}i\"" combined CustomLog logs/acces_log combined ServerLimit 2 I'm very new to this and though I've checked, it's still quite likely I missed/misunderstood something. Any help is greatly appreciated. Thanks. LB --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~----------~----~----~----~------~----~------~--~---