Hi there I have been using this guide
http://www.hostlibrary.com/installin...l_php_on_linux to set up apache php and mysql correctly I have finished the whole guide
but when I try to start apache with this command
/usr/local/apache2/bin/apachectl start
I get this error
Syntax error on line 119 of /usr/local/apache2/conf/httpd.conf:
Invalid command 'Order', perhaps misspelled or defined by a module not included in the server configuration
I think its this that i added earlier in the tutorial is in the wrong place
LoadModule php4_module modules/libphp4.so
in the httpd.conf I have put it like this
Code:
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
#
# Example:
#LoadModule foo_module modules/mod_foo.so
LoadModule php4_module modules/libphp4.so
<IfModule !mpm_winnt_module>
<IfModule !mpm_netware_module>
IS this correct? PLease me