astrashe
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: PHP Blogging Apps Open to XML-RPC ExploitsWow, that was easy.
Thanks.
Forum: Installing WordPress
In reply to: Error establishing a database connectionI just had the same problem on my home machine.
I doubt my problem was the same as yours — it turned out that my version of PHP (4.x) didn’t get along with my new version of MySQL. I upgraded to PHP5, and it worked.
I was able to diagnose my problem by writing a really simple PHP script that tried to connect to the database, and looking at the specific error.
(If the developers read this, I’d suggest including the specfic error message on the “can’t connect” page. The argument against it is probably that it would just confuse people. But if you see that page, you’re going to be confused anyway.)
Anyway, I used this to get a more specific error message — replace the connection parameters with what you’re using on your server, put this in a file called something.php, and pull it up in your browser.
<html>
<head><title>test</title></head>
<body><?php
$link = mysql_connect('mysql_host', 'mysql_user', 'mysql_password')
or die('Could not connect: ' . mysql_error());?>
</body>
</html>Forum: Everything else WordPress
In reply to: Does WordPress phone home?Thanks!
You guys are great.Forum: Everything else WordPress
In reply to: Does WordPress phone home?Thanks for the help…
I grepped for pingomatic.com, and didn’t find anything — lots of hits for rpc, though. Is there something I could search for here on the forum to learn more about what’s going on? Is there an easy way to turn that off?
I’m sure the graphic on the readme file isn’t a problem.