Make WordPress Core

Changeset 1308


Ignore:
Timestamp:
05/18/2004 08:05:40 PM (21 years ago)
Author:
saxmatt
Message:

Renaming install-config.php to setup-config.php

Location:
trunk
Files:
1 added
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/install.php

    r1275 r1308  
    11<?php
    22$_wp_installing = 1;
    3 if (!file_exists('../wp-config.php')) die(__("There doesn't seem to be a wp-config.php file. You must create one (<a href='install-config.php'>attempt automatically</a>) before moving on."));
     3if (!file_exists('../wp-config.php'))
     4    die("There doesn't seem to be a <code>wp-config.php</code> file. I need this before we can get started. Need more help? <a href='http://wordpress.org/docs/faq/#wp-config'>We got it</a>. You can <a href='wp-admin/setup-config.php'>create a <code>wp-config.php</code> file through a web interface</a>, but this doesn't work for all server setups. The safest way is to manually create the file.");
    45require_once('../wp-config.php');
    56require('upgrade-functions.php');
  • trunk/wp-blog-header.php

    r1307 r1308  
    22
    33if (!file_exists(dirname(__FILE__).'/' . 'wp-config.php'))
    4     die("There doesn't seem to be a <code>wp-config.php</code> file. I need this before we can get started. Need more help? <a href='http://wordpress.org/docs/faq/#wp-config'>We got it</a>. You can <a href='wp-admin/install-config.php'>create a <code>wp-config.php</code> file through a web interface</a>, but this doesn't work for all server setups. The safest way is to manually create the file.");
     4    die("There doesn't seem to be a <code>wp-config.php</code> file. I need this before we can get started. Need more help? <a href='http://wordpress.org/docs/faq/#wp-config'>We got it</a>. You can <a href='wp-admin/setup-config.php'>create a <code>wp-config.php</code> file through a web interface</a>, but this doesn't work for all server setups. The safest way is to manually create the file.");
    55
    66require_once(dirname(__FILE__).'/' . '/wp-config.php');
Note: See TracChangeset for help on using the changeset viewer.