Page 2 of 2

Re: Thumbnail Creation

Posted: 25 Mar 2026, 11:57
by Pcfactory
Hi, yes, the entire Joomla platform is up to date, and I physically deleted all the "phoca gallery" folders after uninstalling it, but as soon as I reinstall it and click on "images," the thumbnail creation screen reopens. I don't know what to do.

Re: Thumbnail Creation

Posted: 25 Mar 2026, 13:02
by christine
Hi,
What happens when you disable thumbnail generation?

Are thumbnails l, m, and s still listed under Media?

Kind regards,
Christine

Re: Thumbnail Creation

Posted: 25 Mar 2026, 13:05
by Pcfactory
Hi, when I reinstall Phoca gallery there are no more images in any folder, it continues to try to create the thumbnail of the same image, even disabling the creation of thumbnails.

Re: Thumbnail Creation

Posted: 25 Mar 2026, 13:11
by christine
Hi,

Hmm, if: "...it continues to try to create the thumbnail..."
then there must still be thumbnails somewhere? :-)

Again: Are thumbnails l, m, and s still listed under Media?
Caches?

Kind regards
Christine

Re: Thumbnail Creation

Posted: 25 Mar 2026, 13:25
by Pcfactory
Hi, there's nothing related to "Phoca Gallery" under media. I deleted everything. I also cleared the cache.

Re: Thumbnail Creation

Posted: 25 Mar 2026, 13:56
by christine
Hi,

Perhaps there's still data from Phoca (images) in the database?

I'm out of ideas at the moment ... Maybe:
Would be useful, to get the complete Call Stack.

Code:
public $error_reporting = 'maximum';
public $debug = true;
Note that the top line is not necessarily the cause of the error, nor is it necessarily the code location that needs to be corrected.

Often, the lines below will indicate an extension that caused the error, e.g. by sending an incorrectly worded request.

Sometimes it can be useful that you temporarily rename the error.php file in the template folder, if it exists, to e.g. errorxxxxxx.php. This will ensure that Joomla's error page is used.

Kind regards,
Christine

Re: Thumbnail Creation

Posted: 25 Mar 2026, 22:30
by Pcfactory
Hi, debugging and error handling was already set up as you suggested. I also renamed the "template error.ph" file. I reinstalled Phoca Gallery, and when I went to "Images," it didn't crash this time. So I started creating categories and uploading images. Obviously, I created the category and then added the images. The first two categories and their corresponding images were added without any problems, including creating the thumbnails. Everything crashed when I uploaded the photos from the third category while creating the thumbnails. Why? Where do I see any errors?

https://imgur.com/a/6hmXpWc

Re: Thumbnail Creation

Posted: 31 Mar 2026, 16:58
by Jan
Hi, this could mean that in third category, there could be some image which cannot be managed by your server (GD library) e.g. because it is too large, not right image, etc. When the script stops, just try to check the image where the script stopped.

Jan

Re: Thumbnail Creation

Posted: 15 Apr 2026, 12:16
by bosino3809
Good morning 👍 If your thumbnail generation process is freezing without errors, it’s usually caused by either server resource limits or a problem with the image processing library rather than the cache itself.

First, check whether your hosting environment is hitting memory or execution time limits (very common with bulk thumbnail creation). If you have access, try increasing PHP limits like memory_limit and max_execution_time. Also verify that your image processing extension (GD or ImageMagick) is properly installed and not partially broken.

Another useful test is to try regenerating thumbnails in smaller batches—if that works, it confirms a resource bottleneck. If it still freezes, check server logs directly, since phpBB debug output often misses fatal background issues.