Although I have instructed php to only log an error once - i see the error over and over again in my log file. Any ideas why this directive would get ignored? I've restarted apache, etc.
相关问题
- Views base64 encoded blob in HTML with PHP
- Laravel Option Select - Default Issue
- PHP Recursively File Folder Scan Sorted by Modific
- Can php detect if javascript is on or not?
- Using similar_text and strpos together
Besides the
ignore_repeated_errors
, there is also theignore_repeated_source
ini settings. I think that one would work for you and should stop showing the same error repeatedly, when same file is called over and over.As PHP manual here says for it:
This directive will only stop the error from being logged again within the same script run. When the same script is run multiple times, you will still see that error every time.