Hi,
Ich schaffe es tatsächlich nicht eine Seite aus dem Inhaltsmanager als Startseite zu setzen. Habe eine Modul mit diesem Code angelegt :
Zitat<?php
if (!defined("mxMainFileLoaded")) die ("You can't access this file directly...");
// right blocks on = 1, off = 0
$index = 0;
include("header.php");
include("modules.php?name=Content&pa=showpage&pid=14");
include("footer.php");
?>
Danke Andy
Hi ;)
hmmm, probier mal so:
<?php
if (!defined("mxMainFileLoaded")) die ("You can't access this file directly...");
// Request-Parameter für Content Modul
$_REQUEST['name'] = 'Content';
$_REQUEST['pa'] = 'showpage';
$_REQUEST['pid'] = '14';
extract($_REQUEST);
include("modules/Content/index.php");
?>
nicht getestet ;)
Hi
Super, das funktioniert,
Danke für die Hilfe :D