Member:
Markus ⋅
Date: January 28, 2010, 10:41 PM
⋅ Subject: "Re: No image in Gallery after Upload"
There is a confirmed bug in the Gallery inline uploader. Here's the fix.
There is a little conflict in the new upload-from-URL and inline uploader combo. In some situations, the URL data negates the valid uploaded image. This issue has now been fixed. If you want to change this yourself, open /core/class_elements.php at line #437, and change the following:
elseif (!empty($data['image_from_url']) && !defined("AJAX"))
To this:
elseif (!empty($data['image_from_url']) && strlen($data['image_from_url']) > 20 && !defined("AJAX"))
You can also upload this patch file to correct the issue in your iWiccle 1.20 installation. I wonder how this issue didn't surface earlier. In any case, things should be back in working order for you with this fix.
I will also repeat for reference here (thanks AntiFMRadio for the note) that if you have problems using the "Upload from URL" feature, your host may have disabled PHP from accessing files from remote URLs. To fix that, edit your php.ini to read as follows:
allow_url_fopen = On
CURL image fetching support as an option will be introduced in an upcoming release to ensure this feature will work across different shared hosting platforms.