Hi,
I installed Projekt successfully, then I installed the CMS add-on.
I can see the CMS add-on if I type the URL directly into my browser:
http://....phprojekt/cm/index.php
However, when I go the the Projekt main page at:
http://...phprojekt/index.php
-the new tab for 'Content' does not appear ie. the tabs are exactly the same as if I didn't install the CMS add-on at all.
Here are the relevant parts of my php.ini:
Code:
// set some variables
$var_ini_set = ini_set("magic_quotes_gpc","on");
$var_ini_set = ini_set("include_path","./");
include_once ($path_pre."cm/cm_navigation.inc.php");
// avoid this d... error warning since it does not affect the scritps here
$var_ini_set = ini_set("session.bug_compat_42", 1);
$var_ini_set = ini_set("session.bug_compat_warn", 0);
// define the error level for the next lines, it will be changed in the lib
// to the desired value.
error_reporting(0);
.
.
.
.
// summary
case ($module == "summary"):
$frameset2 = "<frame name='u' src='$module/$module.php?mode=view".$sid."' marginwidth=2 marginheight=2>";
break;
}
include_once ("cm/cm_mainindex.inc.php");
// perform the frame set
echo $startframeset.$frameset1.$frame_o.$frameset2.$stopframeset;
?>
Any hints most appreciated!
Dan.