@elrick75 said in PHP Errors on csrf-magic.php and diag_command.php files:
(tried to allocate 4096 bytes) in /usr/local/www/diag_command.php
It looks like something was run in the Diag > Command Prompt page that didn't have a limited runtime and ended up exhausting the PHP memory limit.
Only ever run things there that complete immediately. So never run something like ping 8.8.8.8 there because it will just run continually in the background . If you need to set a count limit so it returns after that like ping -c 3 8.8.8.8.
Steve