i'm trying to set up a wordpress instalation to use it as the cms for a radio.
the address is http://www.amdelplata.com/dp
as you can see, it is taking forever to load.
i did what is said on http://wordpress.org/support/topic/151287, and i have this result first: <!-- 30 queries. 18,513 seconds. -->
also, when i did tihs as recommended
<?php
$argyle = fsockopen( 'example.com', 80, $errno, $errstr, 0.01 );
if ( $argyle ) {
fputs( $argyle, "GET /wp-cron.php HTTP/1.0\r\n"
. "Host: example.com\r\n\r\n" );
echo "Success sending the GET.\n";
} else {
echo "Error: $errstr ($errno)\n";
}
?>
i get as result
Error: Address family not supported by protocol (97)
lastly, the podpress plugin and the next gen plugin are getting this errors
tempnam(): open_basedir restriction in effect. File(/tmp) is not within the allowed path(s)
i'm thrilled, this never happened to me before, my guess is that the server needs to set up thigns correctly, but i don't know what to tell them
here is some more server info http://www.amdelplata.com/dp/WP-ServerInfo.doc
thanks for any help!