5
I think this is a fix but Im no php expert...
Open admin.php find lines 60-68 and replace the code with the following..
if (strpos(XOOPS_PATH, XOOPS_ROOT_PATH . '/xoops_lib') !== false || strpos(XOOPS_PATH, $_SERVER['DOCUMENT_ROOT'] . '/xoops_lib') !== false) {
xoops_error(sprintf(_AD_WARNINGXOOPSLIBINSIDE, XOOPS_PATH));
echo '
';
}
if (strpos(XOOPS_VAR_PATH, XOOPS_ROOT_PATH . '/xoops_data') !== false || strpos(XOOPS_VAR_PATH, $_SERVER['DOCUMENT_ROOT'] . '/xoops_data') !== false) {
xoops_error(sprintf(_AD_WARNINGXOOPSLIBINSIDE, XOOPS_VAR_PATH));
echo '
';
}
During installation if you created a directory and renamed your files you dont need to do the following...just the above
save the file back to your server... create a new directory and name it whatever and place your xoops_data and xoops_lib inside your new directory....okay open up mainfile.php and find line 27 should look like this...
define( 'XOOPS_PATH', '/home/content/h/l/t/poopy/html/your new directory name goes here/xoops_lib' );
now find line 29 and do the same thing....save your file back to your server...and change the file permissions to 444...go to your admin page and see if the messages are gone you may have to change the file permissions for your xoops_data directory too.