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...)
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 18: Line 18:


So restart Elgg.
So restart Elgg.
== Ver também ==
*[[AWSTATS: Agrupando os arquivos access.log]]
*[[Definindo a URL padrão no IBM HTTP Server Apache]]
*[[Apache:Redirecionando para pagina de Erro]]
*[[Apache:Redirecionando de HTTP para HTTPS]]
*[[Linux e Unix: Ferramentas de Monitoracao e Performance]]
*[[OpenLDAP:Configurando um LDAP Proxy]]
*[[MySQL:Configurando o MySQL]]
*[[BIND: Configurando o suporte ao Active Directory]]
*[[Tecnologias|  Mais Artigos sobre outras Tecnologias]]
*[[Apache HTTP Server|  Mais Artigos sobre Apache HTTP Server]]
*[[Linux|  Mais Artigos sobre Linux / UNIX / AIX]]
[[Category:Apache HTTP Server]]
[[Category:AWSTATS]]
[[Category:Tecnologias]]

Latest revision as of 00:18, 6 February 2013

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.

Ver também