1
Hi!
I have just installed XOOPS 2.2.2, and wants to use the module "content" as start page.. Thats just not possible, it keeps reloading the header location..
I found out that the header redirect is in index.php. Here is the code:
Quote:
if ( isset($xoopsConfig['startpage']) && $xoopsConfig['startpage'] != "" && $xoopsConfig['startpage'] != "--") {
header('Location: '.XOOPS_URL.'/modules/'.$xoopsConfig['startpage'].'/');
exit();
} else {
$xoopsOption['show_cblock'] =1;
require "header.php";
require "footer.php";
}
So it seems that the content module uses the index.php file and that the other modules dont. because it works with news 1.4.
I also know that with XOOPS 2.0.13 you can use content as start page.
What do I do??