This problem with the following code in index.php file of site template:
Code: |
if ($user->get('guest') == 1) {
$headerstuff = $this->getHeadData();
$headerstuff['scripts'] = array();
$this->setHeadData($headerstuff); }
|
use the following code instead of this code:
Code: |
if ($user->get('guest') == 1) {
/*$headerstuff = $this->getHeadData();
$headerstuff['scripts'] = array();
$this->setHeadData($headerstuff);*/ }
|
we can't change this code because index.php file of site template doesn't have writable permissions.
Regards,
ARI Soft