1. Verzeichnis: typo3conf/ext/cc_awstats/mod1
Datei: conf.php
/**** ALT: ****/
$MCONF["name"]="tools_txccawstatsM1";
$MCONF["access"]="admin";
/**** NEU: ****/
$MCONF["name"]="web_txccawstatsM1";
$MCONF["access"]="user,group";
2. Verzeichnis: typo3conf/ext/cc_awstats/mod1
Datei: index.php (ungefähr bei Zeile 78 in der Datei, unterhalb von "//Access check!")
/**** ALT: ****/
if(($this->id && $access) || ($BE_USER->user["admin"] && !$this->id)){
/**** NEU: ****/
if(($this->id && $access) || ($BE_USER->user["admin"] && !$this->id) || ($BE_USER->user["uid"] && !$this->id)){
3. Verzeichnis: typo3conf/ext/cc_awstats
Datei ext_tables.php
/**** ALT: ****/
if(TYPO3_MODE=="BE"){t3lib_extMgm::addModule("tools","txccawstatsM1","",t3lib_extMgm::extPath($_EXTKEY)."mod1/");}
/**** NEU: ****/
if(TYPO3_MODE=="BE"){t3lib_extMgm::addModule("web","txccawstatsM1","",t3lib_extMgm::extPath($_EXTKEY)."mod1/");}
Anschließend noch den typo3conf/-Cache löschen.
|