|
From: FlorinCB <ory...@us...> - 2008-12-31 02:05:39
|
Update of /cvsroot/mxbb/phpbb2mxp/install In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/install Added Files: index.htm install.php update_to_latest.php upgrade.php Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: update_to_latest.php --- <?php /*************************************************************************** * update_to_xxx.php * ------------------- * begin : Wednesday, May 16, 2002 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: update_to_latest.php,v 1.1 2008/12/31 01:44:31 orynider Exp $ * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * [...1156 lines suppressed...] echo "SQL :: <b>" . $error_ary['sql'][$i] . "</b><br /><br /></li>"; } echo "</ul>\n<p>This is probably nothing to worry about, update will continue. Should this fail to complete you may need to seek help at our development board. See <a href=\"docs\README.html\">README</a> for details on how to obtain advice.</p>\n"; } else { echo "<b>No errors</b>\n"; } echo "<h2>Update completed</h2>\n"; echo "\n" . '<p style="color:red">Please make sure you have updated your board files too, this file is only updating your database.</p>'; echo "\n<p>You should now visit the General Configuration settings page in the <a href=\"../admin/\">Administration Panel</a> and check the General Configuration of the board. If you updated from versions prior to RC-3 you <b>must</b> update some entries. If you do not do this emails sent from the board will contain incorrect information. Don't forget to delete this file!</p>\n"; ?> <br clear="all" /> </body> </html> --- NEW FILE: install.php --- <?php /*************************************************************************** * install.php * ------------------- * begin : Tuesday, Sept 11, 2001 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: install.php,v 1.1 2008/12/31 01:44:31 orynider Exp $ * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * [...1032 lines suppressed...] exit; } // Ok we are basically done with the install process let's go on // and let the user configure their board now. We are going to do // this by calling the admin_board.php from the normal board admin // section. $s_hidden_fields = '<input type="hidden" name="username" value="' . $admin_name . '" />'; $s_hidden_fields .= '<input type="hidden" name="password" value="' . $admin_pass1 . '" />'; $s_hidden_fields .= '<input type="hidden" name="redirect" value="admin/index.'.$phpEx.'" />'; $s_hidden_fields .= '<input type="hidden" name="login" value="true" />'; page_header($lang['Inst_Step_2'], '../login.'.$phpEx); page_common_form($s_hidden_fields, $lang['Finish_Install']); page_footer(); exit; } } ?> --- NEW FILE: upgrade.php --- <?php /*************************************************************************** * upgrade.php * ------------------- * begin : Wed Sep 05 2001 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: upgrade.php,v 1.1 2008/12/31 01:44:31 orynider Exp $ * ****************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * [...1904 lines suppressed...] $db->sql_freeresult($posts_result); // Remove common words after the first 2 batches and after every 4th batch after that. if ( $batchcount % 4 == 3 ) { remove_common('global', 4/10); } print " <span class=\"ok\"><b>OK</b></span><br />\n"; } echo "\n<br /><br />\n\n<font size=\"+3\"><b>UPGRADE COMPLETED</b></font><br />\n"; } } print "<br />If the upgrade completed without error you may click <a href=\"./../index.$phpEx\">Here</a> to proceed to the index<br />"; common_footer(); ?> --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |