rodries2
Forum Replies Created
-
squirrel-lt I think that you are rigth, maybe is a permissions problem.
You can try to investigate the user Apache service is using, then give writing permissions to that user in your wp directory, but I’m not sure
I’m not using windows 7pipegm: I had the same error but I don’t remember how I fixed it 🙁
try to delete wp-config.php and retry install.phpwhich php version are you using? (unix or windows ? )
squirrel-lt:
try to reinstall deleting wp-config.php also you can add this 2 lines in install.php to be sure that errors are showed
<?php
error_reporting(E_ALL | E_STRICT);
ini_set(“display_errors”, 1);
……
……it’s strange a blank page
Forum: Installing WordPress
In reply to: Blank page on install.phpis wp-config.php on line 22 like:
define(‘DB_USER’, ‘usernamehere’);
?Seems that you have a bad db user name
You can try to delete wp-config.php and retry install.php
probably you have display errors disabled in php.ini try to enable it to see the error
Forum: Installing WordPress
In reply to: Blank page on install.phpAdd the next lines at top in install.php to see the error
<?php
error_reporting(E_ALL | E_STRICT);
ini_set(“display_errors”, 1);
……
……Then post the error
Forum: Installing WordPress
In reply to: Blank page on install.phpProbably you have the same bug that I had using php 5.0.5
Try the next change:In function import_from_reader($reader) in file wp-includes/pomo/mo.php
change:
if (” == $original) {
$this->set_headers($this->make_headers($translation));
} else {by:
if (” == $original) {
$tmp = $this->make_headers($translation);
$this->set_headers($tmp);
} else {Please report if this fix your problem.
Thks for reply
I know how to fix, the fix is similar to http://ww.wp.xz.cn/support/topic/243548?replies=2 post
What I want is to include the fix in official code, because wordpress can not be installed using php 5.0.5