I'm getting this error when trying to update the db through cli
# php8.2 update_cli.php --update_db
PHP Warning: require_once(../database_updates.php): Failed to open stream: No such file or directory in /home/domain/web/domain.de/public_html/scripts/update_cli.php on line 117
PHP Fatal error: Uncaught Error: Failed opening required '../database_updates.php' (include_path='.:/usr/share/php') in /home/domain/web/domain.de/public_html/scripts/update_cli.php:117
Stack trace:
#0 {main}
thrown in /home/domain/web/domain.de/public_html/scripts/update_cli.php on line 117
Line 117 should be changed from
require_once "../database_updates.php";
to
require_once "../admin/database_updates.php";
shouldn't it? 🤔