SID-00605: ImageGallery - Error: no images found
| Status: |
Answered |
TWiki version: |
4.3.2 |
Perl version: |
|
| Category: |
ImageGalleryPlugin |
Server OS: |
|
Last update: |
14 years ago |
Hi,
ImageGallery doesn't show images (see headline) but the attached images are there and shows up after clicking on them. Installing again had got an error, ... that the Graphics::Magick Version is 1.1.7 and should/must be higher >1.1.11. That's the error-message from the "Configuration-Installer", Installer from within the shell shows NO error.
TWiki is running on a shared hosted installation and I couldn't update CPAN.
On a TWiki 4.2.2 (same shared host) is
ImageGallery working fine?!
Any hints?
--
NorbertKress - 2009-11-02
Discussion and Answer
Closing this question after more than 30 days of inactivity. Feel free to reopen if needed. Consider engaging one of the
TWiki consultants if you need timely help. We invite you to
get involved with the community, it is more likely you get community support if you support the open source project!
--
PeterThoeny - 2010-01-03
I too have had this problem with version 3.73 of the plugin installed on TWiki 5.0.2.
I turned on the debugging for the plugin package TWiki::Plugins::ImageGalleryPlugin::Core and added a debug statement to print out the file suffix the plugin is expecting. For the file "2011-07-19_16.30.00.jpg" the pluging is looking for a file suffix that matches "30.00.jpg". In other words the suffix regex is greedy when I think it should be ungreedy. The suffix extracting regex is on line 115 of this package. With a slight modification, I've been able to get this to work for me.
orig:
if ($attachment->{name} =~ /\.(.+?)$/) {
mine:
if ($attachment->{name} =~ /.*\.(.+?)$/) {
--
JoshuaTharp - 2011-07-21
Thank you Joshua! I updated the plugin. Could you check the latest version at
Plugins.ImageGalleryPlugin?
--
PeterThoeny - 2011-07-21
This is tracked in
TWikibug:Item6772
.
--
PeterThoeny - 2011-07-21
If you answer a question - or someone answered one of your questions - please remember to edit the page and set the status to answered. The status selector is below the edit box.