2004-10-18 12:09:20 +00:00
<? php
2005-03-17 23:34:06 +00:00
define ( 'WP_INSTALLING' , true );
2004-04-22 00:40:38 +00:00
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." );
2003-12-30 05:36:47 +00:00
require ( '../wp-config.php' );
2004-05-05 08:00:13 +00:00
timer_start ();
2004-10-15 04:50:40 +00:00
require_once ( ABSPATH . '/wp-admin/upgrade-functions.php' );
2003-12-30 05:36:47 +00:00
2004-04-20 22:56:47 +00:00
$step = $_GET [ 'step' ];
2003-12-30 05:36:47 +00:00
if ( ! $step ) $step = 0 ;
2005-11-11 01:31:59 +00:00
header ( 'Content-Type: text/html; charset=utf-8' );
2003-12-30 05:36:47 +00:00
?>
<!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">
2004-06-11 16:09:18 +00:00
<head>
2004-09-05 01:22:17 +00:00
<title>WordPress › Upgrade</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style media="screen" type="text/css">
<!--
html {
background: #eee;
}
2003-12-30 05:36:47 +00:00
body {
2004-09-05 01:22:17 +00:00
background: #fff;
color: #000;
2003-12-30 05:36:47 +00:00
font-family: Georgia, "Times New Roman", Times, serif;
2004-09-05 01:22:17 +00:00
margin-left: 20%;
margin-right: 20%;
padding: .2em 2em;
2003-12-30 05:36:47 +00:00
}
2006-02-12 07:53:23 +00:00
2004-09-05 01:22:17 +00:00
h1 {
color: #006;
font-size: 18px;
font-weight: lighter;
2003-12-30 05:36:47 +00:00
}
2006-02-12 07:53:23 +00:00
2004-09-05 01:22:17 +00:00
h2 {
font-size: 16px;
2003-12-30 05:36:47 +00:00
}
2006-02-12 07:53:23 +00:00
2004-09-05 01:22:17 +00:00
p, li, dt {
2003-12-30 05:36:47 +00:00
line-height: 140%;
2004-09-05 01:22:17 +00:00
padding-bottom: 2px;
}
ul, ol {
padding: 5px 5px 5px 20px;
}
#logo {
margin-bottom: 2em;
2003-12-30 05:36:47 +00:00
}
2004-09-05 01:22:17 +00:00
.step a, .step input {
font-size: 2em;
}
.step, th {
text-align: right;
}
#footer {
text-align: center; border-top: 1px solid #ccc; padding-top: 1em; font-style: italic;
}
-->
2003-12-30 05:36:47 +00:00
</style>
2004-09-05 01:22:17 +00:00
</head>
<body>
2005-11-17 09:55:53 +00:00
<h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png" /></h1>
2003-12-30 05:36:47 +00:00
<?php
switch($step) {
case 0:
2006-01-10 03:06:48 +00:00
$goback = wp_specialchars($_SERVER['HTTP_REFERER'], 1);
2003-12-30 05:36:47 +00:00
?>
2005-02-27 23:09:58 +00:00
<p><?php _e('This file upgrades you from any previous version of WordPress to the latest. It may take a while though, so be patient.'); ?></p>
2006-01-10 03:06:48 +00:00
<h2 class="step"><a href="upgrade.php?step=1&backto=<?php echo $goback; ?>"><?php _e('Upgrade WordPress »'); ?></a></h2>
2003-12-30 05:36:47 +00:00
<?php
break;
2006-02-12 07:53:23 +00:00
2003-12-30 05:36:47 +00:00
case 1:
2006-03-31 08:07:39 +00:00
wp_upgrade();
2006-01-10 03:06:48 +00:00
if ( empty( $_GET['backto'] ) )
$backto = __get_option('home');
else
$backto = wp_specialchars( $_GET['backto'] , 1 );
2003-12-30 05:36:47 +00:00
?>
2005-02-27 23:09:58 +00:00
<h2><?php _e('Step 1'); ?></h2>
2006-01-10 03:06:48 +00:00
<p><?php printf(__("There's actually only one step. So if you see this, you're done. <a href='%s'>Have fun</a>!"), $backto); ?></p>
2004-05-05 08:00:13 +00:00
<!--
<pre>
2005-02-27 23:09:58 +00:00
<?php printf(__('%s queries'), $wpdb->num_queries); ?>
2004-05-05 08:00:13 +00:00
2005-02-27 23:09:58 +00:00
<?php printf(__('%s seconds'), timer_stop(0)); ?>
2004-05-05 08:00:13 +00:00
</pre>
-->
2003-12-30 05:36:47 +00:00
<?php
break;
}
?>
</body>
</html>