Page 1 of 1

Remove webalizer

PostPosted: 28. April 2006 08:55
by xamp_user
Is there some way to remove such a features like "webalizer" or "webdav"?

PostPosted: 05. May 2006 21:59
by capitalfellow
The simplest way to remove Webalizer is to delete:

C:\xampp\xampp\webalizer

To disable WebDAV, open

C:\xampp\xampp\apache\conf\httpd.conf

Go to line 505:

# Distributed authoring and versioning (WebDAV)
Include conf/extra/httpd-dav.conf

make it look like this by adding a '#' in front of line 506:

# Distributed authoring and versioning (WebDAV)
#Include conf/extra/httpd-dav.conf

Save the file. Restart apache.

PostPosted: 05. May 2006 23:07
by WorldDrknss
After you delete webalizer open httpd-xampp.conf and remove the something similar to the following:
Code: Select all
    Alias /webalizer "C:/xampp/xampp/webalizer/"
    <Directory "C:/xampp/xampp/webalizer">
      <IfModule php5_module>
         <Files "webalizer.php">
            php_admin_flag safe_mode off
         </Files>
      </IfModule>
        AllowOverride AuthConfig
        Order allow,deny
        Allow from all
    </Directory>