One of my users is of need to run the following script.
I'm curious if there is a way to rewrite it such that
it doesn't need to use the exec() command.
exec("echo \"$txt\" >> /tmp/yaniv.log");
The reason is because our server has been tightening the security and the exec() is one of the functions that is now blocked. (no more system(), exec(), passthru() ).
Is there a way to rewrite it such that this will not be an issue?
thanks,
-Alon.