<?php
/* +--------------------------------------------------------------
| PHPFreeNews - News Headlines on your website |
| Developed by Jim Willsher. |
| http://www.phpfreenews.co.uk |
+-------------------------------------------------------------+
*/
require('../Config/Config.php');
require('../Inc/Functions.php');
$UpgradeScript = $_SERVER['PHP_SELF'];
$Step = isset($_GET['step']) ? $_GET['step'] : '';
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>
<?= $SiteDescription ?>
Upgrade Version 1.9 Database to Version 1.15 Database</TITLE>
<META name="Author" content="Jim Willsher">
<META name="Keywords" content="PHP, News, Headlines, PHPFreeNews">
<META name="Description" content="PHP Free News">
<LINK rel="stylesheet" href="../Inc/Styles.css" type="text/css" />
</HEAD>
<body>
<P class="plaintext"><IMG src="../Inc/Images/<?= $AdminSiteLogo ?>" width="266" height="61"></p>
<P class="plaintext">
<?php
// =============================================================================================================
if ($Step == '')
{
// First Stage
?>
Welcome to the Version 1.9 to 1.15 Upgrade Script for <B>
<?= $SiteDescription ?>
</B>.<br />
<br />
This script will update your database to make it compliant with Version 1.15 of<?= $SiteDescription ?>. <br />
The installer will upgrade database <B>"<?= $db ?>"</B>. Remember to upgrade every database you have.</p>
<P class="plaintext">It is assumed that you are already running version 1.9 or later. <br />
<br />
The MySql User in your Config.php file must have the following permissions: ALTER.<br />
Once the database has been installed you can safely revoke ALTER. <br />
<br />
<A href="<?=$UpgradeScript?>?step=1">Perform Upgrade >></A>
<?php
}
// =============================================================================================================
elseif ($Step == '1')
{
// Set up the tables...
echo ('<br />Updating Table: news_posts...');
$sql_query = mysql_query("ALTER TABLE news_posts
ADD `OriginalPostDate` DATE DEFAULT '0' NOT NULL AFTER `PostTime` ,
ADD `OriginalPostTime` TIME DEFAULT '0' NOT NULL AFTER `OriginalPostDate");
if ($sql_query)
{
echo ('<b> Done!</b>');
}
else
{
echo mysql_error();
exit();
}
echo ('<br />Migrating Data: news_posts...');
$sql_query = mysql_query("UPDATE news_posts
SET `OriginalPostDate` = `PostDate` ,
`OriginalPostTime` = `PostTime`");
if ($sql_query)
{
echo ('<b> Done!</b>');
}
else
{
echo mysql_error();
exit();
}
// ===============================================================================================
?>
<br />
<br />
If there were no errors generated then the Database was updated successfully.<br />
Please now delete this installation file (<?= $_SERVER['PHP_SELF'] ?>) or make it inaccessible. <br />
<br />
<?php
}
?>
</p>
</body>
</HTML>