Whenever I try to add the Modules needed, I can never restart Apache. My currently standing modules are as follows:
LoadModule rewrite_module libexec/mod_rewrite.so
LoadModule php4_module libexec/libphp4.so
LoadModule bwlimited_module libexec/mod_bwlimited.so
LoadModule bytes_log_module libexec/mod_log_bytes.so
LoadModule auth_passthrough_module libexec/mod_auth_passthrough.so
However, then I need to go into the addmodules - which looks like this:
# Reconstruction of the complete module list from all available modules
# (static and shared ones) to achieve correct module execution order.
# [WHENEVER YOU CHANGE THE LOADMODULE SECTION ABOVE UPDATE THIS, TOO]
ClearModuleList
AddModule mod_env.c
AddModule mod_log_config.c
AddModule mod_mime.c
AddModule mod_negotiation.c
AddModule mod_status.c
AddModule mod_include.c
AddModule mod_autoindex.c
AddModule mod_dir.c
AddModule mod_cgi.c
AddModule mod_asis.c
AddModule mod_cgi.c
AddModule mod_asis.c
AddModule mod_imap.c
AddModule mod_actions.c
AddModule mod_userdir.c
AddModule mod_alias.c
AddModule mod_rewrite.c
AddModule mod_access.c
AddModule mod_auth.c
AddModule mod_so.c
AddModule mod_setenvif.c
< IfDefine SSL >
AddModule mod_ssl.c
< /IfDefine >
AddModule mod_frontpage.c
AddModule mod_php4.c
AddModule mod_bwlimited.c
AddModule mod_log_bytes.c
AddModule mod_auth_passthrough.c
This is my first time doing any modular work - so if I could get some help? It'd be most definately appreciated...
oh, and if needed:
< VirtualHost 69.44.58.202 >
ServerAlias www.taintedjournal.com taintedjournal.com
ServerAdmin webmaster@taintedutopia.com
DocumentRoot /home/lj/htdocs
BytesLog domlogs/taintedjournal.com-bytes_log
ServerName www.taintedjournal.com
User lj
Group lj
CustomLog domlogs/taintedjournal.com combined
ScriptAlias /cgi-bin/ /home/lj/public_html/cgi-bin/
< /VirtualHost >
-Shade