Hi under PHP 8.2 I got this warning on the import page:
Deprecated: Optional parameter $path declared before required parameter $permissions is implicitly treated as a required parameter in /www/htdocs/xyz/plugins/flickr2piwigo/vendor/tedivm/stash/src/Stash/Utilities.php on line 212
which then also prevents the import (due to JS choking on the garbled json)
Fixed it temporarily with adding $conf['show_php_errors'] = E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_WARNING; to my config, but I guess a better way is to update the tedivm/stash library.