<?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.40 to Version 1.41</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.40 to 1.41 Upgrade Script for <B><?= $SiteDescription ?></B>.<br />
<br />
This script will update your database to make it compliant with Version 1.41 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.40<br />
<br />
The MySql User in your Config.php file must have the following permissions: CREATE, ALTER.<br />
Once the database has been installed you can safely revoke CREATE and ALTER. <br />
<br />
<A href="<?=$UpgradeScript?>?step=1">Perform Upgrade >></A>
<?php
}
// =============================================================================================================
elseif ($Step == '1')
{
// Set up the tables...
echo ('<br />Updating table: news_templates...');
$sql_query = mysql_query("ALTER TABLE news_templates
ADD Headline TEXT NOT NULL DEFAULT '' AFTER TemplateName");
if ($sql_query)
{
echo ('<b> Done!</b>');
}
else
{
echo mysql_error();
exit();
}
echo ('<br />Updating templates...');
$sql_query = mysql_query("UPDATE news_templates SET Headline ='<table width=\"100%\" border=\"3\"><tr><td><b><center>{headline}</center></b></td></tr></table>'");
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 />
<?php
}
?>
</p>
</body>
</HTML>