Multiple installation problem?
-
I’m trying to install a second version of WordPress on my testing server. I want to start with a clean installation and database to troubleshoot issues I’m having with a plugin. I have placed the WordPress files in a new directory, created a database, and created the config.php file. When I try to access intall.php, however, the result that I get is a mess. The example below is just the first paragraph:
wp-config.php file. I need this before we can get started. Need more help? We got it. You can create a wp-config.php file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file."); require_once('../wp-config.php'); require_once('./upgrade-functions.php'); $schema = ( isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on' ) ? 'https://' : 'https://'; $guessurl = str_replace('/wp-admin/install.php?step=2', '', $schema . $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) ); if (isset($_GET['step'])) $step = $_GET['step']; else $step = 0; header( 'Content-Type: text/html; charset=utf-8' ); ?>
My PHP is working, and just in case it is the other installation that was causing problems, I moved that folder off of my server. I thought I would check with you all before I go to the trouble of removing the other WP database, etc.
Do you have any idea what is going on?
- The topic ‘Multiple installation problem?’ is closed to new replies.