Hehe, sorry for the slight delay. I had the plugin fixed and everything, but I completely forgot to upload it. We had some unexpected stuff going on because of Christmas ;)
The fixed version is attached to this post.
Notes
I noticed that the Joomla! System Cache might cause confusion if a user posts something containing {flickr} content tags BEFORE enabling Jigglr - since the output from Jigglr is not present, the original {flickr} tag will end up being cached, not the images. I made the necessary adjustments to the README.
The only thing that I could not fix was the issue with invalid path delimiters and so on. I tried out my idea of forcing phpFlickr to only load the PEAR libraries bundled with Jigglr by using the following code:
Code: Select all
$original = ini_get('include_path');
ini_set('include_path', dirname(__FILE__) . DIRECTORY_SEPARATOR . 'PEAR');
require_once <file>;
ini_set('include_path', $original);
But unfortunately, all I got was this:
Code: Select all
<div class="componentheading">
Welcome to the Frontpage</div>
<table class="blog" cellpadding="0" cellspacing="0">
<tr>
<td valign="top">
<div>
That is, Joomla! almost completely stopped working. If I had more time, maybe I could keep on pushing to find a better solution, but for now, I think I'll have to leave it at that. I've also placed a notice in the README about this issue.
You do not have the required permissions to view the files attached to this post.