displayed the contents of the directory ispconfig

Discussion in 'Tips/Tricks/Mods' started by nomeitalia, Jun 5, 2013.

  1. nomeitalia

    nomeitalia New Member

    is displayed the contents of the directory
    /usr/local/ispconfig/interface/web/mail
    /usr/local/ispconfig/interface/web/dashboard
    and so on...
    example: https://servername:8080/mail
    show its contents


    to solve the problem you add into ispconfig.vhost

    <IfModule mod_php5.c>
    DocumentRoot /usr/local/ispconfig/interface/web/
    AddType application/x-httpd-php .php
    <Directory /usr/local/ispconfig/interface/web>
    Options FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
    php_value magic_quotes_gpc 0
    </Directory>
    </IfModule>

    it would be better to have the default for all sites that are created
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    This has already been change din svn some time ago, so the changes will be in the next release.
     

Share This Page