• This error is being logged relatively frequently in the PHP error log.

    I know this is most likely an error caused by attempting to access this core includes file directly, but is there any way to prevent these errors from being logged? Having difficulty finding any solutions.

    Fatal error: Uncaught Error: Class ‘getid3_handler’ not found in **** Stack trace: #0 {main} thrown in ****/wp-includes/ID3/module.audio.ac3.php on line 18

    • This topic was modified 6 years, 3 months ago by Jan Dembowski.
Viewing 1 replies (of 1 total)
  • Moderator bcworkz

    (@bcworkz)

    You can sometimes configure PHP to not log certain classes of errors, but you would certainly want fatal errors logged. Depending on your hosting configuration, you may not be able to reconfigure logging anyway.

    The real solution is to stop the errors from occurring in the first place. If the source is not evident from the error log, coordinate with the access log to find out what requests are causing this. If it’s an external request, you could block that specific request in .htaccess so it doesn’t get to the point where an error happens.

Viewing 1 replies (of 1 total)

The topic ‘Uncaught Error: Class ‘getid3_handler’ not found in’ is closed to new replies.