Elgg:The requested URL elgg html action systemsettings install was not found on this server: Difference between revisions

From Wiki
(New page: If you have problem to install Elgg v1.0 and the following message persists '''The requested URL /elgg/html/action/systemsettings/install was not found on this server''' and already che...)
 

Revision as of 18:19, 9 September 2008

If you have problem to install Elgg v1.0 and the following message persists

The requested URL /elgg/html/action/systemsettings/install was not found on this server

and already checked for mod_rewrite.

The problem must be that you forgot to set "AllowOverride All" for Apache, to allow use .htaccess from Elgg directory.

To help you create a file /etc/httpd/conf.d/elgg.conf with this instructions

<Directory "/opt/sites/elgg/">
   AllowOverride All
   Options None
   Order allow,deny
   Allow from all
 </Directory>


So restart Elgg.