Typos.
git-svn-id: http://svn.automattic.com/wordpress/trunk@1117 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
76606da17d
commit
26323cbc21
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
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.");
|
||||
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_once('../wp-config.php');
|
||||
require('upgrade-functions.php');
|
||||
$step = $_GET['step'];
|
||||
|
@ -51,11 +51,10 @@ switch($step) {
|
|||
before it’s probably worth it to start from scratch and work back to your
|
||||
design.</li>
|
||||
<li>You need to transfer some of your settings from your old <code>b2config.php</code>
|
||||
to <code>wp-config.php</code> file [NEED MORE INFO].</li>
|
||||
to <code>wp-config.php</code> file.</li>
|
||||
<li>WordPress issues should be discussed in our <a href="http://wordpress.org/support/">support
|
||||
forums</a>.</li>
|
||||
<li><strong>Back up</strong> your database before you do anything. Yes, you.
|
||||
Right now.</li>
|
||||
<li><strong>Back up</strong> your database before you do anything. Yes, you.</li>
|
||||
</ul>
|
||||
<p>Have you looked at the <a href="../readme.html">readme</a>? If
|
||||
you’re all ready, <a href="import-b2.php?step=1">let’s go</a>!</p>
|
||||
|
|
|
@ -7,7 +7,7 @@ $tp_database_username = 'username';
|
|||
$tp_database_password = 'password';
|
||||
$tp_database_host = 'localhost';
|
||||
|
||||
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.");
|
||||
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');
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?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.");
|
||||
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');
|
||||
|
||||
|
|
Loading…
Reference in New Issue