ich weiß au ned was heut los is es klappt einfach nichts...
langsam regt mich des scheiß tripod auf....
ich wollt die junior_adminmod installieren hab alle files gemoddet und nun wollt ich die datenbank installieren aber was kommt wenn ich auf die install.php klicke
Code: Alles auswählen
Fatal error: Call to undefined function: session_pagestart() in table_install.php on line 7
der code von der install.php lautet folgendermasen !!
Code: Alles auswählen
<?php
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
if ( $userdata['user_level'] != ADMIN )
message_die(GENERAL_ERROR, "You are not Authorised to do this.");
$sql = "CREATE TABLE " . $table_prefix . "junior_auth_panel (
panel_id char(32) NOT NULL default '',
enable_junior set('on','off') NOT NULL default 'off',
enable_mod set('on','off') NOT NULL default 'off',
PRIMARY KEY (panel_id)
)";
if (!$db->sql_query($sql))
{
message_die(GENERAL_ERROR, "<font color=\"red\">Error inserting the table (<b>" . $table_prefix . "junior_auth_panel</b>).</font>", "", __LINE__, __FILE__, $sql);
}
else
{
message_die(GENERAL_MESSAGE, "<font color=\"green\">Table (<b>" . $table_prefix . "junior_auth_panel</b>) created successfully.</font>", "", "", "", "");
}
?>mfg RussenMafia