Changing default .htaccess in stats folder

Discussion in 'Developers' Forum' started by dclardy, Apr 6, 2010.

  1. dclardy

    dclardy Member

    Does anyone know where I can find this default .htaccess file? I would like to add some things to the file so that my drupal sites can have access to the stats folders, and I just want it done on creation.

    Thanks.
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    The file is created from in the apache plugin. There is no template for it.
     
  3. dclardy

    dclardy Member

    Thanks for the help Till.

    Just in case any one else wants to add this automatically. It gives you access to the stats folder when Drupal is installed. It might work with other CMS as well.

    Code:
    DirectoryIndex index.php index.html index.htm
    Options +Indexes
    Code:
    //* Create .htaccess and .htpasswd file for website statistics
                    if(!is_file($data["new"]["document_root"].'/web/stats/.htaccess') or $data["old"]["document_root"] != $data["new"]["document_root"]) {
                            if(!is_dir($data["new"]["document_root"].'/web/stats')) mkdir($data["new"]["document_root"].'/web/stats');
                            $ht_file = "DirectoryIndex index.php index.html index.htm\nOptions +Indexes\n\n\nAuthType Basic\nAuthName \"Members Only\"\nAuthUserFile ".$data["new"]["document_root"]."/.htpasswd_stats\nrequire valid-user";
                            file_put_contents($data["new"]["document_root"].'/web/stats/.htaccess',$ht_file);
                            chmod($data["new"]["document_root"].'/web/stats/.htaccess',0755);
                            unset($ht_file);
                    }
    It starts at line 818 and ends at 825. You can just copy and paste this in if you want you can look at the changes that I have made to it.
     

Share This Page