Seite 1 von 1

Brauche Hilfe für Simply CMS

Verfasst: 30.06.2004 18:58
von Panzer89
Also wie die überschrift schon zeigt brauch ich hilfe bei der instalation von SimplyCMS. Dort muss ich bei common.php etwas editieren.

in der installationsanleitung steht
##-----[ FIND ]------------------------------------------------------
##

error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables
set_magic_quotes_runtime(0); // Disable magic_quotes_runtime

##
##-----[ ADD BEFORE ]------------------------------------------------
##

// Begin simply CMS Mod
// Type in all the cats-ids you want to display in the simply CMS.
// Separate the cat_ids in $cont_cat with an ',' (comma)
// e.g. $cont_cat = "(1, 2, 5, 7)";

$cont_cat = "(1)";

//
// End simply CMS Mod
//
jetzt weiss ich aber nich wo ich diese "$cont_cat = "(1)"" genau einfügen muss bei
error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables
set_magic_quotes_runtime(0); // Disable magic_quotes_runtime
Könnte mir jemand helfen

Verfasst: 30.06.2004 19:42
von Both
Ich denke mal vor die
error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables
set_magic_quotes_runtime(0); // Disable magic_quotes_runtime
, dass es im Enddefeckt so aus sieht:
// Begin simply CMS Mod
// Type in all the cats-ids you want to display in the simply CMS.
// Separate the cat_ids in $cont_cat with an ',' (comma)
// e.g. $cont_cat = "(1, 2, 5, 7)";

$cont_cat = "(1)";

//
// End simply CMS Mod
//
error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables
set_magic_quotes_runtime(0); // Disable magic_quotes_runtime
Timmy