taviroquai / MapIgniter

MapIgniter is a GeoCMS based on Mapserver, PostGIS, OpenLayers and CodeIgniter.
Other
19 stars 17 forks source link

Apache mod_rewrite is not working #4

Open francesco1119 opened 9 years ago

francesco1119 commented 9 years ago

cannot continue the installation:

Checking if mod_rewrite is enabled for application folder...
Apache mod_rewrite is not working for application folder. Please change Apache configuration.

taviroquai commented 9 years ago

Enable mod_rewrite on apache:

$ sudo a2enmod rewrite

Edit the apache site configuration. For example /etc/apache2/sites-available/default Change "AllowOverride None" to "AllowOverride all"

If it still does not work, please read Apache documentation for you enviroment.

francesco1119 commented 9 years ago

I've done already "$ sudo a2enmod rewrite" and it didn't changed nothing

This is my Apache configuration:

<VirtualHost *:80> ServerAdmin webmaster@localhost

DocumentRoot /var/www
<Directory />
    Options FollowSymLinks
    AllowOverride All                                 
</Directory>
<Directory /var/www/>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All                                 
    Order allow,deny
    allow from all
</Directory>

ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
    AllowOverride None
    Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
    Order allow,deny
    Allow from all
</Directory>

ErrorLog ${APACHE_LOG_DIR}/error.log

# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn

CustomLog ${APACHE_LOG_DIR}/access.log combined

Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
    Options Indexes MultiViews FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>

My Apache version is: Server version: Apache/2.2.22 (Debian) Don't understand what I'm doing wrong!

taviroquai commented 9 years ago

Did you try to restart Apache?