Our /tmp directory is filling up on the server as we have sessions from several abantecart installations dumping into it. How do I change that? Shouldn't it be dumping locally for that user instead of the server /tmp directory?
i think you can manage with it via php.ini directives such as upload_tmp_dir (http://ua2.php.net/manual/en/ini.core.php#ini.upload-tmp-dir) for uploaded files and
session.save_path (http://ua2.php.net/manual/en/session.configuration.php#ini.session.save-path)
Just create few php.ini for each installations of AbanteCart with directives.
Note: You can check current values in admin menu->system->settings->system ->button [phpinfo()] at the heading.
Also read this http://stackoverflow.com/questions/10580043/servers-tmp-directory-filling-up
PERFECT~ Thanks - that did the trick, you just have to specify for each installation and map it locally with a rotate to conserve space.
Thanks for the great info :)