It seems that you have a problem with PHP (possibly confusion with its versions).
When you write the command in the CLI:
Code:
php -v
If PHP is 8.2 or newer, then try simply restarting your server (without restarting, php files are cached and the server uses an older version).
The error on your screenshots may mean that the Fileinfo extension, which is required for the Intervention Image library to work, is not installed or enabled in PHP.
Run in the terminal:
Code:
php -i | grep fileinfo
Code:
/etc/php/8.3/cli/conf.d/20-fileinfo.ini, fileinfo fileinfo support => enabled

Leave a comment: