4
I found out the solution myself.
I dont know why no one else got this issue but there seems to be a little problem in
xcgal/admin/header.phpheader.php look like this
<?php
require('../include/init.inc.php');
include '../../../include/cp_header.php';
if ( file_exists("../language/".$xoopsConfig['language']."/admin.php") ) {
include_once "../language/".$xoopsConfig['language']."/admin.php";
} else {
include_once "../language/english/admin.php";
}
include_once XOOPS_ROOT_PATH."/include/xoopscodes.php";
include_once XOOPS_ROOT_PATH.'/class/module.errorhandler.php';
$myts =& MyTextSanitizer::getInstance();
$eh = new ErrorHandler;
echo "<table><tr><td><b><a href='index.php'>INDEX</a></b></td>
<td align='center'>
<b><a href='catmgr.php'>"._AM_CATMNGR."</a></b> ::
<b><a href='usermgr.php'>"._AM_USERMNGR."</a></b> ::
<b><a href='groupmgr.php'>"._AM_GROUPMNGR."</a></b><br />
<b><a href='searchnew.php'>"._AM_BATCHADD."</a></b> ::
<b><a href='ecardmgr.php'>"._AM_ECARDMNGR."</a></b> ::
<b><a href='../editpics.php?mode=upload_approval'>"._AM_PICAPP."</a></b>
</td></tr> </table>
<br /><hr />";
?>
But it should be
<?php
require('../include/init.inc.php');
include '../../../include/cp_header.php';
if ( file_exists("../language/".$xoopsConfig['language']."/admin.php") ) {
include_once "../language/".$xoopsConfig['language']."/admin.php";
} else {
include_once "../language/english/admin.php";
}
include_once XOOPS_ROOT_PATH."/include/xoopscodes.php";
include_once XOOPS_ROOT_PATH.'/class/module.errorhandler.php';
$myts =& MyTextSanitizer::getInstance();
$eh = new ErrorHandler;
?>
That is,
REMOVE echo statements.
I m not a Programmer
BUT
I m a Good Learner