Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WampServer icons doesn't work

I've just installed WampServer 2.5, and scripts runs well. Only Wamp Icons doen't works. For example if I browse a folder project's, when Wamp lists files doesn't appear the icon, as show below:

esample

Trying to right click on an icon, in new tab opened appears the message:

Forbidden

You don't have permission to access /icons/unknown.gif on this server.

So in httpd.conf i've changed permission in directory / and c:/wamp/www/, setting Require all granted. After this, now I've this error:

Not Found

The requested URL /icons/unknown.gif was not found on this server.

How can I pass right icons path to wampserver?

Thank you for reading.

like image 446
Sim Sca Avatar asked Oct 28 '14 11:10

Sim Sca


1 Answers

  1. Uncomment the line Include conf/extra/httpd-autoindex.conf in httpd.conf file

  2. Make sure httpd-autoindex.conf file has this:

    Alias /icons/ "icons/"
    
    <Directory "icons">
        Options Indexes MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
    
  3. Restart the server

like image 188
kums Avatar answered Sep 28 '22 01:09

kums