michelle
10-12-2003, 04:52 PM
I am knee-deep in the middle of installing a script (while simultaneously pulling my hair out). Here's a piece of it:
session_start();
ob_start();
require_once("settings.inc.php");
if($_REQUEST["section"]) {
$SECTION = $_REQUEST["section"];
}
if((!isset($_SESSION["prefs"][PREF_ISSETUP_ID])) || ($_SESSION["prefs"][PREF_ISSETUP_ID] == "0")) {
header("Location: ./setup/setup.php");
}
In the forum for the software (listmessenger.com) they are trying to help, and asked me a question I can't answer: "...the webserver tries to setup a session. Does your server support that?"
So... Does IH support that? ;)
session_start();
ob_start();
require_once("settings.inc.php");
if($_REQUEST["section"]) {
$SECTION = $_REQUEST["section"];
}
if((!isset($_SESSION["prefs"][PREF_ISSETUP_ID])) || ($_SESSION["prefs"][PREF_ISSETUP_ID] == "0")) {
header("Location: ./setup/setup.php");
}
In the forum for the software (listmessenger.com) they are trying to help, and asked me a question I can't answer: "...the webserver tries to setup a session. Does your server support that?"
So... Does IH support that? ;)