Make WordPress Core


Ignore:
Timestamp:
10/07/2003 05:06:22 PM (22 years ago)
Author:
saxmatt
Message:

Added check for wp-config.php and edited text and style slightly. Took out it saying we were done when we weren't.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/b2-2-wp.php

    r290 r423  
    11<?php
    22$_wp_installing = 1;
     3if (!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.");
    34require_once('../wp-config.php');
    45
    56$step = $HTTP_GET_VARS['step'];
    67if (!$step) $step = 0;
    7 if (!step) $step = 0;
    88?>
    99<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    1010<html xmlns="http://www.w3.org/1999/xhtml">
    11     <title>WordPress > b2 Conversion</title>
     11    <title>WordPress &#8212; b2 Conversion</title>
    1212    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    1313    <style media="screen" type="text/css">
     
    3232        display: none;
    3333    }
    34     p {
     34    p, li {
    3535        line-height: 140%;
    3636    }
     
    4848<ul>
    4949  <li>If you're using an older version of b2, it's probably a good idea to upgrade
    50     to at least .6.1 before making the leap to WordPress.</li>
     50    to at least .61 before making the leap to WordPress.</li>
    5151  <li>The templates are so much better, and there is so much more going on than
    5252    before it's probably worth it to start from scratch and work back to your
     
    6060</ul>
    6161<p><code></code>Have you looked at the <a href="../readme.html">readme</a>? If
    62   you&#8217;re all ready, <a href="b2-2-wp.php?step=1">let's go</a>! </p>
     62  you&#8217;re all ready, <a href="b2-2-wp.php?step=1">let&#8217;s go</a>!</p>
    6363<?php
    6464    break;
     
    245245?>
    246246
    247 <p>All done!</p>
    248 
    249247<p>Don't forget to CHMOD the <code>weblogs.com.changes.cache</code> file and you'll
    250248  be A-okay. Welcome to the family.</p>
Note: See TracChangeset for help on using the changeset viewer.