PHP background process in safe mode
In my php project i should have some background process , but in safe mode , because I'm running it on a shared host. For example my background process code is in the file bg.php and I want it to be executed , write at finish of another specific script.( or maybe with some delay ) I searched a lot. some suggested libraries like beanstalkd but i think this library is heavy for my simple background process and also doesn't have good doc for PHP . some others said functions like exec() which is not possible in safe mode. 1- Does anyone have a simple solution for this problem? 2- I were also