Started 1 week ago (2009-11-24 08:16:23)
by rodries2
probably you have display errors disabled in php.ini try to enable it to see the error
Started 1 week ago (2009-11-24 17:52:36)
by wordprest
I run successfully my wp on a Linux system.
You need a
web server installed on yours (for Mac OS should be Leopard if I'm not wrong). The space requirement is quite minimum.
Started 1 week, 1 day ago (2009-11-23 06:21:19)
by xanderini
Having put my blog through validation on here t comes up with 17 errors. Unfortunately none of it means a thing to me as I don't know how to code php. My limited understanding of programming makes me think that many of the errors listed are suggestions and not actual errors per se but if someone could have a look and give me a nude in the right direction I'd be most grateful.
Started 6 days, 3 hours ago (2009-11-25 15:12:32)
by wordprest
hello,
for your theme upgrade is not really needed.
as regard of your server directory, ehat do you see in your ftp window?
Started 6 days, 2 hours ago (2009-11-25 16:10:15)
by wordprest
hello,
You have to include your new path in your .
htaccess file.
Started 1 week ago (2009-11-23 22:27:47)
by apljdi
Are you running a web server? Does your server support PHP?
Started 1 week, 1 day ago (2009-11-23 07:25:18)
by whooami
what is your domain name? where is your blog installed, url please? that looks like a server level problem..
Started 5 days, 2 hours ago (2009-11-26 16:50:41)
by songdogtech
This might do it: run phpinfo to see where your php.ini file is. Make a plain text file and call it phpinfo.php and put just this line in it:
<?php phpinfo(); ?>
then put the file in the root of your server, and then go to that file with your web browser. Find 'Loaded
Configuration File'. This will tell you the php.ini that is being used.
and uncomment this line and remove the preceding ...
Started 1 week, 1 day ago (2009-11-23 05:20:10)
by numeeja
I don't understand what you are trying to describe. Can you explain it in a more
user friendly way? Maybe with a link to the site you're having problems with?
Started 1 week ago (2009-11-24 07:18:06)
by rodries2
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($translati on));
} else {
by:
if ('' == $original) {
$tmp = $this->make_headers($translation);
$this->set_headers($tmp);
} else {
Please report if this fix your ...