On Oct 21, 2011, at 22:54, Yves S. Garret wrote: > Whenever I run sudo ./lampp restart, I get the following error: > > httpd: Syntax error on line 114 of /opt/lampp/etc/httpd.conf: Cannot load > /opt/lampp/libexec/apache2/mod_rewrite.so into server: > /opt/lampp/libexec/apache2/mod_rewrite.so: cannot open shared object file: No > such file or directory
Obviously, you don't have the file /opt/lampp/libexec/apache2/mod_rewrite.so. In your httpd.conf, you wrote: LoadModule rewrite_module libexec/apache2/mod_rewrite.so This doesn't make sense. Look at all the other lines near it: LoadModule dav_fs_module modules/mod_dav_fs.so LoadModule vhost_alias_module modules/mod_vhost_alias.so LoadModule negotiation_module modules/mod_negotiation.so Obviously you should use the same format for mod_rewrite.so: LoadModule negotiation_module modules/mod_rewrite.so -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php
