Changing the Path to the PHP Error File on VS
Let's make it so that the error file
is located in the logs folder. To do this, you need to first
create this folder via FTP and make sure
that writing is allowed to it.
Now in the error_log setting,
specify the filename with the folder:
<?php
ini_set('display_errors', 'off');
ini_set('log_errors', 'on');
ini_set('error_log', 'logs/errors.log');
echo $test;
?>
Move your error file to a separate folder.