5
I think the problem is located in the xoopsModule object :
if ( !$xoopsModule || !$xoopsModule->isActivated() ) {
include(XOOPS_ROOT_PATH."/header.php");
echo "
Le site est temporairement indisponible.
Veuillez nous excuser pour la gêne occasionnée. -"
. $module_dir . "-";
echo "XM : ".$xoopsModule;
include(XOOPS_ROOT_PATH."/footer.php");
exit();
}
How can i test this object is working ? I have tried to print it (bottom left, "XM :") but nothing appears.
Edit : i have separated $xoopsModule and $xoopsModule->isActive(), so i can have 2 different error messages.
For $xoopsModule, the error is "XM" and for $xoopsModule->isActivated() the error message is "XM->isw".
The error message i have is... "XM". So i think this is the xoopsModule class which is not working.
Can someone take a look at this ?
I can paste the class if needed.