Is it ok to assume /tmp folder writable by PHP/Apache on any unix system? I'm making a script and want to save cache in the tmp folder and want to know whether that can cause problems.
|
feedback
|
|
It should be OK. If you are unsure, make your installation script check the | |||
feedback
|
|
You can not rely on /tmp folder as in some variations of linux, it is auto cleaned after some time, it would be best for your application to have a local tmp folder inside the app, which you manage yourself. | |||||||||||
feedback
|