Hi!
I have a PHP application with alot of files, and I really needed an easy way out of this.
Most of the files call the session_start(); function. However, my /tmp space is too small, and so it keeps returning me errors.
I found out a work-around, by adding ini_set('session.save_handler','files'); before session_start();.
I really don't want to modify everything manually, so I needed some way of defining the session.save_handler variable for an entire directory.
Is it possible?
Thanks.