Thinking it was safe to swim ...
I tried to do the same installation on another server/domain and got struck by the 'session_start(), /tmp/dataface permissions' bug that just won't go away; here's what webauction/index.php returned:
Warning: session_start() [function.session-start]: open(/tmp/dataface/sess_d9728c27d0920c2dab399c54f002fdaa, O_RDWR) failed: Permission denied (13) in /home/user/public_html/dataface/Dataface/Application.php on line 626
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/user/public_html/dataface/Dataface/Application.php:626) in /home/user/public_html/dataface/Dataface/Application.php on line 626
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/user/public_html/dataface/Dataface/Application.php:626) in /home/user/public_html/dataface/Dataface/Application.php on line 626
---------------------------------
web auction page
---------------------------------
Warning: Unknown(): open(/tmp/dataface/sess_d9728c27d0920c2dab399c54f002fdaa, O_RDWR) failed: Permission denied (13) in Unknown on line 0
Warning: Unknown(): Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/tmp/dataface) in Unknown on line 0
I found other posts on this and followed your suggestion that we can "explicitly set the session save directory to some other directory by adding the following to the beginning of your index.php file:
Code:
session_save_path('/path/to/directory');
but nothing changed. [btw, that's the dataface/index.php file, right? And "the beginning of" means before:
require_once 'init.php';
init(__FILE__, '/~shannah/lesson_plans');
require_once 'Dataface/Application.php';
Right? Anyway, i tried before and after - no change.
Hope you have some time to comment on this. Thing is, this will be the server that will run webauction, the other one was just to test it!
Anyway, still hoping there's a way to make it work.
the directories are:
/dataface
/webauction
Would appreciate any thoughts on this. Thanks.