Inhaltsseite als Startseite

Begonnen von trans22, 17 August 2005, 10:18:22

⏪ vorheriges - nächstes ⏩

0 Mitglieder und 1 Gast betrachten dieses Thema.

trans22

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

Andi

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  ;)
schön´s Grüssle, Andi

trans22

Hi
Super, das funktioniert,

Danke für die Hilfe :D