aajkaal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: [Plugin: WordPress Stats] Error after update to 2.6I am on wordpress 2.7 and I am trying very hard to find a fix for:
WordPress.com Stats needs attention: please enter an API key or disable the plugin.
Error from last API Key attempt:Your blog was unable to connect to WordPress.com. Please ask your host for help. (transport error – HTTP status code was not 200)
Please help.
Forum: Plugins
In reply to: Error from last API Key attemptI hardcoded the key in stats.php as follows:
// You can hardcode a WP.com API key here.
$stats_wpcom_api_key = ‘xxxxxxxxxxxx’;Didn’t help.
Forum: Plugins
In reply to: Error from last API Key attemptI have the same problem with 2.7
Forum: Fixing WordPress
In reply to: Thumbnail Image option = Greyed out…2.7 wordpressOn RedHat 4, installed php-gd-4.3.9-3.22.9 to resolve the issue. Recycle apache and test with new image or
Use this test script:
<?php
header(“Content-type: image/png”);
$im = @imagecreate(110, 20)
or die(“Cannot Initialize new GD image stream”);
$background_color = imagecolorallocate($im, 0, 0, 0);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, “A Simple Text String”, $text_color);
imagepng($im);
imagedestroy($im);?>