Ok, so I checked the error log, and you basically have 25.000 lines like this:
[27-Oct-2024 00:00:44 Europe/Rome] PHP Deprecated: DateTime::__construct(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home2/nzannama/public_html/app/parsers/Twig/Extension/Core.php on line 542
So first of all, this is entirely harmless, as it's just a "deprecated" message not technically an error. "Deprecated" means that your upgraded PHP version 8.2.24 no longer accepts "null" values for DateTime(). It seems you have PHP error logging set unusually high in your PHP settings somewhere? You don't need to log E_NOTICE and E_DEPRECATED in production websites. Anyway, you can delete the error log entry.
If you want to prevent it from populating in the future, you can either 1. Modify your error reporting, or 2. Open the file
/app/parsers/Twig/Extension/Core.php in a text editor, and modify line 542:
// $date = new DateTime($date, $defaultTimezone);
$date = new DateTime($date??'', $defaultTimezone); // use this instead
I'm not quite sure why you are even getting the "deprecated" message, but it could be a corrupted image date entry. I will look into it for next release, but it's definitely harmdless.