Probably 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.
Thread Starter
Orange
(@leegrant)
That didn’t work, thanks but any other suggestions?
Add 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
Thread Starter
Orange
(@leegrant)
Parse error: syntax error, unexpected T_STRING in /var/www/vhosts/klevermedia.co.uk/httpdocs/wordpress/wp-config.php on line 22
is 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
Thread Starter
Orange
(@leegrant)
seems I missed out a ‘ after my db username, I was sure I checked over and over. my mistake