From 7d6cc562b75b7507e853501a6dd2befe57625da3 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Tue, 19 Mar 2002 21:50:42 +0000 Subject: Oh no, they killed update_to_RC3.php, those ba****ds git-svn-id: file:///svn/phpbb/trunk@2360 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/update_to_RC3.php | 380 ------------------------------------------------ 1 file changed, 380 deletions(-) delete mode 100644 phpBB/update_to_RC3.php diff --git a/phpBB/update_to_RC3.php b/phpBB/update_to_RC3.php deleted file mode 100644 index 605844eca4..0000000000 --- a/phpBB/update_to_RC3.php +++ /dev/null @@ -1,380 +0,0 @@ - - -sql_query($sql[$i])) ) - { - $errored = true; - $error = $db->sql_error(); - echo " -> FAILED ---> " . $error['message'] . "

\n\n"; - } - else - { - echo " -> COMPLETED

\n\n"; - } -} - -if ( $errored ) -{ - echo "\n
Some queries failed! This is probably nothing to worry about, update will attempt to continue. Should this fail you may need to seek help at our development board (see README)

\n\n"; - flush(); -} - -$sql = "SELECT themes_id - FROM " . THEMES_TABLE . " - WHERE template_name = 'subSilver'"; -if( !($result = $db->sql_query($sql)) ) -{ - die("Couldn't obtain subSilver id"); -} - -if( $row = $db->sql_fetchrow($result) ) -{ - $theme_id = $row['themes_id']; - - $sql = "UPDATE " . THEMES_TABLE . " - SET head_stylesheet = 'subSilver.css', body_background = '', body_bgcolor = 'E5E5E5', body_text = '000000', body_link = '006699', body_vlink = '5493B4', body_alink = '', body_hlink = 'DD6900', tr_color1 = 'EFEFEF', tr_color2 = 'DEE3E7', tr_color3 = 'D1D7DC', tr_class1 = '', tr_class2 = '', tr_class3 = '', th_color1 = '98AAB1', th_color2 = '006699', th_color3 = 'FFFFFF', th_class1 = 'cellpic1.gif', th_class2 = 'cellpic3.gif', th_class3 = 'cellpic2.jpg', td_color1 = 'FAFAFA', td_color2 = 'FFFFFF', td_color3 = '', td_class1 = 'row1', td_class2 = 'row2', td_class3 = '', fontface1 = 'Verdana, Arial, Helvetica, sans-serif', fontface2 = 'Trebuchet MS', fontface3 = 'Courier, ''Courier New'', sans-serif', fontsize1 = 10, fontsize2 = 11, fontsize3 = 12, fontcolor1 = '444444', fontcolor2 = '006600', fontcolor3 = 'FFA34F', span_class1 = '', span_class2 = '', span_class3 = '' - WHERE themes_id = $theme_id"; - if ( !($result = $db->sql_query($sql)) ) - { - die("Couldn't update subSilver theme"); - } - - $sql = "INSERT INTO " . THEMES_NAME_TABLE . " (themes_id, tr_color1_name, tr_color2_name, tr_color3_name, tr_class1_name, tr_class2_name, tr_class3_name, th_color1_name, th_color2_name, th_color3_name, th_class1_name, th_class2_name, th_class3_name, td_color1_name, td_color2_name, td_color3_name, td_class1_name, td_class2_name, td_class3_name, fontface1_name, fontface2_name, fontface3_name, fontsize1_name, fontsize2_name, fontsize3_name, fontcolor1_name, fontcolor2_name, fontcolor3_name, span_class1_name, span_class2_name, span_class3_name) - VALUES ($theme_id, 'The lightest row colour', 'The medium row color', 'The darkest row colour', '', '', '', 'Border round the whole page', 'Outer table border', 'Inner table border', 'Silver gradient picture', 'Blue gradient picture', 'Fade-out gradient on index', 'Background for quote boxes', 'All white areas', '', 'Background for topic posts', '2nd background for topic posts', '', 'Main fonts', 'Additional topic title font', 'Form fonts', 'Smallest font size', 'Medium font size', 'Normal font size (post body etc)', 'Quote & copyright text', 'Code text colour', 'Main table header text colour', '', '', '')"; - if ( !($result = $db->sql_query($sql)) ) - { - echo "WARNING >> Couldn't insert subSilver name info
\n"; - } -} - -print "
Updating topic first post info
\n"; -flush(); - -$sql = "SELECT MIN(post_id) AS first_post_id, topic_id - FROM " . POSTS_TABLE . " - GROUP BY topic_id - ORDER BY topic_id ASC"; -if ( !($result = $db->sql_query($sql)) ) -{ - die("Couldn't obtain first post id list"); -} - -if ( $row = $db->sql_fetchrow($result) ) -{ - do - { - $post_id = $row['first_post_id']; - $topic_id = $row['topic_id']; - - $sql = "UPDATE " . TOPICS_TABLE . " - SET topic_first_post_id = $post_id - WHERE topic_id = $topic_id"; - if ( !$db->sql_query($sql) ) - { - die("Couldn't update topic first post id in topic :: $topic_id"); - } - } - while ( $row = $db->sql_fetchrow($result) ); -} - -print "
Updating moderator user_level
\n"; -flush(); - -$sql = "SELECT DISTINCT u.user_id - FROM " . USERS_TABLE . " u, " . USER_GROUP_TABLE . " ug, " . AUTH_ACCESS_TABLE . " aa - WHERE aa.auth_mod = 1 - AND ug.group_id = aa.group_id - AND u.user_id = ug.user_id - AND u.user_level <> 1"; -if ( !$db->sql_query($sql) ) -{ - die("Couldn't obtain moderator user ids"); -} - -$mod_user = array(); -while ( $row = $db->sql_fetchrow($result) ) -{ - $mod_user[] = $row['user_id']; -} - -if ( count($mod_user) ) -{ - $sql = "UPDATE " . USERS_TABLE . " - SET user_level = " . MOD . " - WHERE user_id IN (" . implode(", ", $mod_user) . ")"; - if ( !$db->sql_query($sql) ) - { - die("Couldn't update user level"); - } -} - -print "
Updating config settings
\n"; -flush(); - -$sql = "INSERT INTO " . CONFIG_TABLE . " - (config_name, config_value) VALUES ('server_name', 'www.myserver.tld')"; -if( !$db->sql_query($sql) ) -{ - print "Failed inserting server_name config ... probably exists already
\n"; -} - -$sql = "INSERT INTO " . CONFIG_TABLE . " - (config_name, config_value) VALUES ('script_path', '/phpBB2/')"; -if( !$db->sql_query($sql) ) -{ - print "Failed inserting script_path config ... probably exists already
\n"; -} - -$sql = "INSERT INTO " . CONFIG_TABLE . " - (config_name, config_value) VALUES ('server_port', '80')"; -if( !$db->sql_query($sql) ) -{ - print "Failed inserting server_port config ... probably exists already
\n"; -} - -$sql = "INSERT INTO " . CONFIG_TABLE . " (config_name, config_value ) - VALUES ('version', 'RC-3')"; -if ( !$db->sql_query($sql) ) -{ - print "Failed inserting version config ... probably exists already
\n"; -} - -$sql = "INSERT INTO " . CONFIG_TABLE . " - (config_name, config_value) VALUES ('record_online_users', '1')"; -if( !$db->sql_query($sql) ) -{ - print "Failed inserting record_online_users config ... probably exists already
\n"; -} - -$sql = "INSERT INTO " . CONFIG_TABLE . " - (config_name, config_value) VALUES ('record_online_date', '" . time() . "')"; -if( !$db->sql_query($sql) ) -{ - print "Failed inserting record_online_date config ... probably exists already
\n"; -} - -echo "\n
\nCOMPLETE!
\n"; -echo "\n

You should now visit the General Configuration settings page in the Administration Panel and update the 'Server' settings. If you do not do this emails sent from the board will contain incorrect information. Don't forget to delete this file!

\n"; -?> - - -- cgit v1.2.1