I realized while installing the latest WordPress upgrade, that I hadn’t yet blogged some solutions to issues I had some time ago. These are all issues related to plugins.
Problem 1: I installed the Organizer plugin to help organise my pictures. It wouldn’t show them, which somewhat defeats the purpose of an organizer. Looking at the errors with Firebug (one of the most useful Firefox extensions I’ve found) revealed that the organizer_jump_directory
function wasn’t defined. One of the comments on the plugin solved the problem: copy the contents of the general.js
file to the index.php
and view.php
files.
Problem 2: flexible upload seemed to be activated, but I couldn’t see any sign of it in the “Write” page. The “add field” box was missing from the upload part of the page, as well as the other useful items. The solution: I needed to turn off the mod_security
Apache module for the admin directory in the .htaccess file. There are more details in WordPress support forum. I also needed to chmod the plugins directory to 755.
Problem 3: I have another blog, and wanted to show the postings from this blog via the Atom feed. I set it up, and it seemed to work, but it never updated the list to show the latest postings. After trying out a lot of different ideas, I discovered in the server logs that I had a 403: Forbidden
error, which gave me a new and different set of things to try out. In the end I discovered the source was that the BadBehavior plugin was blocking the requests. So I added the IP address of my blog into the bad-behavior/whitelist.inc.php
file, and all now works as it should.