2003-12-30 06:36:47 +01:00
< ? php
$_wp_installing = 1 ;
2004-04-22 02:40:38 +02: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 06:36:47 +01:00
require ( '../wp-config.php' );
require ( 'upgrade-functions.php' );
2004-04-21 00:56:47 +02:00
$step = $_GET [ 'step' ];
2003-12-30 06:36:47 +01:00
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 " >
2004-01-15 02:04:29 +01:00
< title > WordPress & rsaquo ; Upgrade WordPress </ title >
2003-12-30 06:36:47 +01:00
< meta http - equiv = " Content-Type " content = " text/html; charset=iso-8859-1 " />
< style media = " screen " type = " text/css " >
body {
2004-04-14 19:10:12 +02:00
background - color : white ;
2004-04-14 19:12:52 +02:00
color : black ;
2003-12-30 06:36:47 +01:00
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 ;
2003-12-30 10:31:13 +01:00
height : 60 px ;
2003-12-30 06:36:47 +01:00
border - bottom : 4 px solid #333;
}
#logo a {
display : block ;
text - decoration : none ;
text - indent : - 100 em ;
2003-12-30 10:31:13 +01:00
height : 60 px ;
2003-12-30 06:36:47 +01:00
}
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 & #8217;re all ready, <a href="upgrade.php?step=1">let's go</a>! </p>
< ? php
break ;
case 1 :
2004-01-12 13:12:45 +01:00
upgrade_all ();
2003-12-30 06:36:47 +01:00
?>
< 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 >