OpenKB::Server Technical Papers

Wordpress

Wordpress: xmlRPC error when using live writer

by admin on Feb.28, 2010, under Wordpress

Error: An error occurred while attempting to connect to your weblog: Invalid Server Response – The response to the blogger.getUsersBlogs method received from the weblog server was invalid. You must correct this error before proceeding. or Invalid response document returned from XmlRpc server
Other:
Invalid response document returned from XmlRpc server

Possible solution Solution : find the class.IXR.php file (under wp-includes), edit the file, and look for function output($xml) FInd the line that calculates the length $length = strlen($xml); and replace it by $length = strlen($xml)+3;

or if modsecurity is enabled set the following in an .htaccess file <files xmlrpc.php>SecFilterInheritance Off </files>

Comments Off more...

Wordpress: Endif tages internet explorer

by admin on May.25, 2009, under Wordpress

wordpress support simple and plan 

Don’t copy and paste text from MS Word because it adds junky code that IE hates. Either remove the bad mso code, or repaste your text from a text editor like notepad.

also
Instead of using crtl-v to past into the blog, plus use the “paste from word” button under the editor within WordPress. The button is next to the easer button.

or past into notepad2 and then into wordpress
Notepad2

Comments Off more...

Wordpress: Fatal error: Allowed memory size of 33554432 bytes

by admin on Feb.28, 2009, under Wordpress

Fatal error: Allowed memory size of 33554432 bytes

Fix:
locate the wp-settings.php file
Search for define(’WP_MEMORY_LIMIT’, ‘32M’);
Change 32M to 64M : define(’WP_MEMORY_LIMIT’, ‘64M’);

for some reason this is different from setting the memory limit in the php.ini file. . :(

Comments Off more...

Wordpress: permalinks stop working

by admin on Jan.12, 2009, under Wordpress

Ensure you have a .htaccess file with the following

# BEGIN WordPress
<#IfModule mod_rewrite.c#> *take out the #’s*
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
<#/IfModule#> *take out the #’s *

# END WordPress

Comments Off more...

Wordpress: media upload error , Unable to create directory – Is its parent directory writable

by admin on Dec.14, 2008, under Wordpress

Unable to create directory – Is its parent directory writable by the server

fix
chmod -R 777 wp-content/uploads

do not chmod wp-content to 777 , only chmod the uploads folders and subfolders.

Comments Off more...

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!