| | |
| | | //* Create .htaccess and .htpasswd file for website statistics |
| | | if(!is_file($data['new']['document_root'].'/' . $web_folder . '/stats/.htaccess') or $data['old']['document_root'] != $data['new']['document_root']) { |
| | | if(!is_dir($data['new']['document_root'].'/' . $web_folder . '/stats')) $app->system->mkdir($data['new']['document_root'].'/' . $web_folder . '/stats'); |
| | | $ht_file = "AuthType Basic\nAuthName \"Members Only\"\nAuthUserFile ".$data['new']['document_root']."/.htpasswd_stats\nrequire valid-user"; |
| | | $ht_file = "AuthType Basic\nAuthName \"Members Only\"\nAuthUserFile ".$data['new']['document_root']."/web/stats/.htpasswd_stats\nrequire valid-user"; |
| | | $app->system->file_put_contents($data['new']['document_root'].'/' . $web_folder . '/stats/.htaccess',$ht_file); |
| | | $app->system->chmod($data['new']['document_root'].'/' . $web_folder . '/stats/.htaccess',0755); |
| | | unset($ht_file); |
| | | } |
| | | |
| | | if(!is_file($data['new']['document_root'].'/.htpasswd_stats') || $data['new']['stats_password'] != $data['old']['stats_password']) { |
| | | if(!is_file($data['new']['document_root'].'/web/stats/.htpasswd_stats') || $data['new']['stats_password'] != $data['old']['stats_password']) { |
| | | if(trim($data['new']['stats_password']) != '') { |
| | | $htp_file = 'admin:'.trim($data['new']['stats_password']); |
| | | $app->system->web_folder_protection($data['new']['document_root'],false); |
| | | $app->system->file_put_contents($data['new']['document_root'].'/.htpasswd_stats',$htp_file); |
| | | $app->system->file_put_contents($data['new']['document_root'].'/web/stats/.htpasswd_stats',$htp_file); |
| | | $app->system->web_folder_protection($data['new']['document_root'],true); |
| | | $app->system->chmod($data['new']['document_root'].'/.htpasswd_stats',0750); |
| | | $app->system->chmod($data['new']['document_root'].'/web/stats/.htpasswd_stats',0750); |
| | | unset($htp_file); |
| | | } |
| | | } |
| | |
| | | $tmp_symlink = str_replace('[website_domain]',$data['old']['domain'],$tmp_symlink); |
| | | // Remove trailing slash |
| | | if(substr($tmp_symlink, -1, 1) == '/') $tmp_symlink = substr($tmp_symlink, 0, -1); |
| | | // create the symlinks, if not exist |
| | | // delete the symlink |
| | | if(is_link($tmp_symlink)) { |
| | | $app->system->unlink($tmp_symlink); |
| | | $app->log('Removing symlink: '.$tmp_symlink,LOGLEVEL_DEBUG); |
| | |
| | | } |
| | | |
| | | public function create_relative_link($f, $t) { |
| | | global $app; |
| | | |
| | | // $from already exists |
| | | $from = realpath($f); |
| | | |