WBCE CMS Forum

WBCE CMS – Way Better Content Editing.

Du bist nicht angemeldet.

#1 18.07.2018 17:11:51

casi
Mitglied

Foldergallery

Hi. Foldergallery on PHP7.2 gets this message: Fatal error: 'continue' not in the 'loop' or 'switch' context in /modules/foldergallery/scripts/functions.php on line 114. Can you help?

Offline

#2 18.07.2018 17:16:33

florian
Administrator

Re: Foldergallery

open functions.php with notepad++ or similiar. I guess the code looks like

if (function_exists('getimagesize')) {
                list($width, $height, $type, $attr) = getimagesize($file);
            } else {
                continue;
            }

You can try just to remove the else part, e.g. change it to

if (function_exists('getimagesize')) {
                list($width, $height, $type, $attr) = getimagesize($file);
            } 

But there might be more issues, depending on which version of the FG you use.


Code allein macht nicht glücklich. Jetzt spenden!

Offline

#3 18.07.2018 17:19:48

casi
Mitglied

Re: Foldergallery

working  smile  thank you!

Offline

Liked by:

florian

Fußzeile des Forums

up