Hi,
It took some time but I upgraded to version 13.8 and needed to do the update_feed step. Right now when I click a thumbnail the image/picture does not appear. In the inspector of the browser these messages are shown:
Uncaught SyntaxError: missing ] after element list picture.php:171:7
note: [ opened at line 169, column 13 picture.php:169:13
Uncaught ReferenceError: RVAS is not defined 93t7u.js:158:357
I checked the following page but no solution: https://piwigo.org/doc/doku.php?id=user … es_missing
What can be wrong?
Regards,
Peter
Piwigo version 13.8.0
PHP 8.0.30
ImageMagick 6.9.10-23
Plugins: Additional Pages
Admin Tools
Embedded Videos
Extended Description
LocalFiles Editor
Take A Tour of Your Piwigo
Last edited by pbijker (2023-09-20 00:20:06)
Offline
Tried on some of your images, they are displayed fine when clicking a thumbnail, no problem. But Firefox Inspector also says "Uncaught SyntaxError: missing ] after element list" and that is the
RVAS = {
derivatives: [
...
list at the bottom. That's not Piwigo core code so some plugin.
The problem there is that "Warning: Undefined array key "path_ext"" messages are injected and break the list, you can see when looking at the generated page code in Inspector or after Ctrl+U.
Either disable displaying deprecated and warning messages (because as seen it effectively may break functionality of a page even if nothing else is broken), in local config
$conf['show_php_errors_on_frontend'] = false;
or fine tune message classes to display, see [Forum, post 183126 by erAck in topic 31852] Menubar tags issue after 12.2.0 upgrade, or better, log to file instead.
See [Forum, post 180778 by erAck in topic 31258] Error Message.
Offline
Thanks erAck! Now it's all up and running.
Offline