20
The file is in xoops/html/include/checklogin.php
But I've had the problem so many times again that I just kept on uninstalling and reinstalling. No real helpful tips. Turn on your debugger in the include/common.php
Change this line:
if ($xoopsConfig['debug_mode'] == 1) {
error_reporting(E_ALL);
}
to be
//if ($xoopsConfig['debug_mode'] == 1) {
error_reporting(E_ALL);
//}
and see if there are any errors. That's what I did first and it fixed it once. Then there were problems with defining the XOOPS_ROOT_PATH, and I duplicated the problem. So maybe check your root path in your mainfile.php and make sure you defined it correctly.