The Copperleaf Photolog Plugin has been updated to fix a fatal error when used with Wordpress 2.5.

Wordpress Upgrade

Things might get a little messy for a couple of days. I’ve just upgraded to the latest version of Wordpress and a few of the utilities that are used have been broken or deprecated. I’m in the process of fixing everything and should be done in a day or so.

Wordpress Upgrade

Today I finally took the plunge and upgraded to Wordpress 2.1. This was a pretty significant upgrade but actually went well. I had to make some minor tweaks but nothing significant. Hopefully there will be a performance improvement. Let me know if you experience any problems.

It’s been a while since I’ve posted anything. There’s no need to go into details here except to say there has been alot going on. Anyway, with the pending release of Wordpress 2.1, I needed to make a change to the CPL plugin to get it to work with the new release. While I was in there, I added a little feature that allows for photos to be grouped inside a post instead of only large group. Check it out.

I’ve posted new releases to both the Copperleaf Plus theme and the Copperleaf Photolog Plugin.

The biggest change is that I’ve rewritten the “photo of the day” components to make them more efficient. I’ve also added two new modes: newestrandom & newestroundrobin. These modes will pick up the newest photo of the day if it’s posted in the last 24 hours. After that it returns to either random or roundrobin mode.

System Update

I’ve just completed updating to Wordpress 2. It seemed to go smoothly. If you notice any problems, let me know.

I’ve posted new releases to both the Copperleaf Plus theme and the Copperleaf Photolog Plugin.

In addition to some bug fixes, I’ve added support for two additional “photo of the day” modes: random and roundrobin. They allow for additional customization of your site. Check them out!

One feature that I forgot to add was support for installations that do not have EXIF compiled/enabled in php. This has been fixed.

The plugin page can be found: here

Copperleaf Photolog Update

Until recently, the Copperleaf Photolog plugin was just a “Proof of Concept” since I’m working on a replacement. However, since I use CPL and development of it’s successor has been going very slow, I took some time and fixed a few bugs and added a few features. Here is a list of the updates. Enjoy.

  • Added support for the TinyMCE editor in Wordpress 2.x.
  • Fixed error when starting a post that doesn’t have an id yet.
  • Fixed a bug that shows a blank add at the top of the Add Photos dialog.
  • Added image id to the view on the write screen.
  • Added support for resizing the original when being uploaded.
  • Added support for stripping exif info from small images.
  • Centered the dialogs on admin screens.
  • Fix error when saving the new order in the rearrange dialog.
  • Added support for inserting images into pages.
  • Added a progress dialog when loading images from server dir.
  • Fixed some CSS problems with the rearrange dialog.

The plugin page can be found: here

Ok. I’ve released another patched version of the Copperleaf Plus Theme. There was a javascript bug in the handling in the sidebar expanders with Konqueror and Safari. Check it out.

Basically, there is code that does something like

var img = new Image(9,9);
...
somediv.appendChild(img);

This resulted in an exception being thrown by Konqueror and Safari. The fix was to change it to

var img = document.createElement('img');
...
somediv.appendChild(img);