I think something wrong again with your system. Fixweb will be execute 'Full_update' function:
function fullUpdate()
{
global $sgbl;
$domname = $this->getDomainname();
$uname = $this->getUser();
$hroot = $sgbl->__path_httpd_root;
$droot = $this->main->getFullDocRoot();
lxfile_mkdir("{$hroot}/{$domname}/webstats");
$this->main->createPhpInfo();
web::createstatsConf($domname, $this->main->stats_username, $this->main->stats_password);
// $this->createSSlConf();
$this->createConfFile();
lxfile_unix_chown_rec("{$droot}/", "{$uname}:{$uname}");
lxfile_unix_chmod("{$droot}/", "0755");
lxfile_unix_chmod("{$droot}", "0755");
lxfile_unix_chown("{$hroot}/{$domname}", "{$uname}:apache");
}
You can see:
- web::createstatsConf($domname, $this->main->stats_username, $this->main->stats_password); --> config for webalizer/awstats (including dir create)
- lxfile_mkdir("{$hroot}/{$domname}/webstats"); --> dir for webalizer; overlap with above function and possible remove