Blank page on fresh wordpress installation, mysql 5 php 5.2.5
-
I’m having some problems installing wordpress 2.3.2. I’m running PHP 5.2.5, Mysql 5.0.37
After I setup my wp-config.php I get a blank page. If I show tables on the mysql database I’ve created, there’s nothing in there, but I’ve checked at least 20 times that my login credentials work properly from that host.
I’ve set error reporting to E_ALL and I only get these two errors from my php log:
[31-Jan-2008 15:27:04] PHP Notice: Undefined offset: 0 in /content/apache2/myblog.com/htdocs/wordpress/wp-includes/wp-db.php on line 286
[31-Jan-2008 15:17:52] WordPress database error Table ‘enterprise2blogwp.wp_options’ doesn’t exist for query SELECT option_value FROM wp_options WHERE option_name = ‘siteurl’Here’s my wp-config.php
<?php // ** MySQL settings ** // define('DB_NAME', 'myblog'); // The name of the database define('DB_USER', 'wordpress'); // Your MySQL username define('DB_PASSWORD', 'mypassword'); // ...and password define('DB_HOST', 'dbprod01'); // 99% chance you won't need to change this value define('DB_CHARSET', 'utf8'); define('DB_COLLATE', ''); // You can have multiple installations in one database if you give each a unique prefix $table_prefix = 'wp_'; // Only numbers, letters, and underscores please! // Change this to localize WordPress. A corresponding MO file for the // chosen language must be installed to wp-content/languages. // For example, install de.mo to wp-content/languages and set WPLANG to 'de' // to enable German language support. define ('WPLANG', ''); /* That's all, stop editing! Happy blogging. */ define('ABSPATH', dirname(__FILE__).'/'); require_once(ABSPATH.'wp-settings.php');
- The topic ‘Blank page on fresh wordpress installation, mysql 5 php 5.2.5’ is closed to new replies.