mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
New upgrade scripts and such.
git-svn-id: https://develop.svn.wordpress.org/trunk@662 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
62
wp-admin/upgrade.php
Normal file
62
wp-admin/upgrade.php
Normal file
@@ -0,0 +1,62 @@
|
||||
<?php
|
||||
$_wp_installing = 1;
|
||||
if (!file_exists('../wp-config.php')) die("There doesn't seem to be a wp-config.php file. Double check that you updated wp-config.sample.php with the proper database connection information and renamed it to wp-config.php.");
|
||||
require('../wp-config.php');
|
||||
require('upgrade-functions.php');
|
||||
|
||||
$step = $HTTP_GET_VARS['step'];
|
||||
if (!$step) $step = 0;
|
||||
?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<title>WordPress › Upgrade WordPres</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<style media="screen" type="text/css">
|
||||
body {
|
||||
font-family: Georgia, "Times New Roman", Times, serif;
|
||||
margin-left: 15%;
|
||||
margin-right: 15%;
|
||||
}
|
||||
#logo {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-image: url(http://wordpress.org/images/logo.png);
|
||||
background-repeat: no-repeat;
|
||||
height: 54px;
|
||||
border-bottom: 4px solid #333;
|
||||
}
|
||||
#logo a {
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
text-indent: -100em;
|
||||
height: 54px;
|
||||
}
|
||||
p {
|
||||
line-height: 140%;
|
||||
}
|
||||
</style>
|
||||
</head><body>
|
||||
<h1 id="logo"><a href="http://wordpress.org">WordPress</a></h1>
|
||||
<?php
|
||||
switch($step) {
|
||||
|
||||
case 0:
|
||||
?>
|
||||
<p>This file upgrades you from any previous version of WordPress to the latest. It may take a while though, so be patient. </p>
|
||||
<p>If you’re all ready, <a href="upgrade.php?step=1">let's go</a>! </p>
|
||||
<?php
|
||||
break;
|
||||
|
||||
case 1:
|
||||
upgrade_071();
|
||||
upgrade_072();
|
||||
upgrade_100();
|
||||
?>
|
||||
<h2>Step 1</h2>
|
||||
<p>There's actually only one step. So if you see this, you're done. <a href="../">Have fun</a>! </p>
|
||||
<?php
|
||||
break;
|
||||
}
|
||||
?>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user