98 lines
2.5 KiB
PHP
98 lines
2.5 KiB
PHP
<?php
|
|
/*
|
|
$Id: admin_customers.php,v 1.1 2003/06/11 23:38:53 project3000 Exp $
|
|
|
|
osCommerce, Open Source E-Commerce Solutions
|
|
http://www.oscommerce.com
|
|
|
|
Copyright (c) 2003 osCommerce
|
|
|
|
Released under the GNU General Public License
|
|
*/
|
|
|
|
if (!$HTTP_POST_VARS['DB_SERVER']) {
|
|
?>
|
|
<html>
|
|
<head>
|
|
<title>osCommerce Preview Release 2.2 Database Update Script</title>
|
|
<style type=text/css><!--
|
|
TD, P, BODY {
|
|
font-family: Verdana, Arial, sans-serif;
|
|
font-size: 14px;
|
|
color: #000000;
|
|
}
|
|
//--></style>
|
|
</head>
|
|
<body>
|
|
<p>
|
|
<b>osCommerce Preview Release 2.2 Database Update Script</b>
|
|
<p>This script updates the configuration table so that it uses a new function to get and set the zone information.
|
|
<form name="database" action="<?php echo basename($PHP_SELF); ?>" method="post">
|
|
<table border="0" cellspacing="2" cellpadding="2">
|
|
<tr>
|
|
<td colspan="2"><b>Database Server Information</b></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Server:</td>
|
|
<td><input type="text" name="DB_SERVER"> <small>(eg, 192.168.0.1)</small></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Username:</td>
|
|
<td><input type="text" name="DB_SERVER_USERNAME"> <small>(eg, root)</small></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Password:</td>
|
|
<td><input type="text" name="DB_SERVER_PASSWORD"> <small>(eg, bee)</small></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Database:</td>
|
|
<td><input type="text" name="DB_DATABASE"> <small>(eg, catalog)</small></td>
|
|
</tr>
|
|
<tr>
|
|
<td> </td>
|
|
<td><input type="submit" value="Submit"></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</body>
|
|
</html>
|
|
<?php
|
|
exit;
|
|
}
|
|
|
|
function tep_db_connect() {
|
|
global $db_link, $HTTP_POST_VARS;
|
|
|
|
$db_link = mysql_connect($HTTP_POST_VARS['DB_SERVER'], $HTTP_POST_VARS['DB_SERVER_USERNAME'], $HTTP_POST_VARS['DB_SERVER_PASSWORD']);
|
|
|
|
if ($db_link) mysql_select_db($HTTP_POST_VARS['DB_DATABASE']);
|
|
|
|
return $db_link;
|
|
}
|
|
|
|
function tep_db_error ($query, $errno, $error) {
|
|
die('<font color="#000000"><b>' . $errno . ' - ' . $error . '<br><br>' . $query . '<br><br><small><font color="#ff0000">[TEP STOP]</font></small><br><br></b></font>');
|
|
}
|
|
|
|
function tep_db_query($db_query) {
|
|
global $db_link;
|
|
|
|
$result = mysql_query($db_query, $db_link) or tep_db_error($db_query, mysql_errno(), mysql_error());
|
|
|
|
return $result;
|
|
}
|
|
|
|
function tep_db_fetch_array($db_query) {
|
|
$result = mysql_fetch_array($db_query);
|
|
|
|
return $result;
|
|
}
|
|
|
|
tep_db_connect() or die('Unable to connect to database server!');
|
|
|
|
tep_db_query("update configuration set use_function = 'tep_cfg_get_zone_name' where configuration_key = 'STORE_ZONE'");
|
|
|
|
?>
|
|
|
|
Done!
|