7
@Mechs
Quote:
it only shows when i'm logged in, and it does not when i'm logged out.
Did you have changed your /include/common.php?
Normally it contains following lines:
if ($xoopsLogger->activated) {
$level = isset($xoopsConfig['debugLevel']) ? intval($xoopsConfig['debugLevel']) : 0;
if (($level == 2 && empty($xoopsUserIsAdmin)) || ($level == 1 && !$xoopsUser)) {
error_reporting(0);
$xoopsLogger->activated = false;
}
unset($level);
}
To allow debug output, when testing anonymous code parts, two lines are edited and set in comment:
// error_reporting(0);
// $xoopsLogger->activated = false;
If you have that, remove the commenting as shown in the first code snippet.
@AmyMarie
Seems your problem is different.
Quote:
Change "debugLevel" => 0,
To "debugLevel" => 2
,
To turn debug mode off, it should be the reverse.
But as you have(had) the setting off and still have the debug popup, I think it might be a cache problem.
Ensure the setting is off. Erase all files in the cache directories (except the index.html) and disable module wide caching in the preferences.
@both
Do the file check (see release notes) to ensure you have the correct files on your server.
There should be no errors, except for the removed install, and the displaced xoops_data and xoops_lib folders.