Well I have a cron that runs a bash file:
#!/bin/bash
for n in {1..10}; do
/usr/bin/php /var/www/html/teste_sh.php v=$n &
done
But in this script teste_sh.php, If I do an error_log, it doesn't work.
Error_log of this folder is empty, but if I run http://localhost/teste_sh.php, error_log works fine!
Is there a way to make error_log work in this case?
Thanks.