added session_save_path()
This commit is contained in:
parent
d611fa2179
commit
cc482441e7
|
@ -22,6 +22,9 @@ $Id$
|
||||||
|
|
||||||
Login page to change the preferences.
|
Login page to change the preferences.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// start session
|
||||||
|
session_save_path("../sess");
|
||||||
session_start();
|
session_start();
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
|
@ -24,6 +24,8 @@ $Id$
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// start session
|
||||||
|
session_save_path("../sess");
|
||||||
session_start();
|
session_start();
|
||||||
|
|
||||||
// check if password was entered
|
// check if password was entered
|
||||||
|
|
|
@ -24,6 +24,8 @@ $Id$
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// start session
|
||||||
|
session_save_path("../sess");
|
||||||
session_start();
|
session_start();
|
||||||
|
|
||||||
include_once ('config.php');
|
include_once ('config.php');
|
||||||
|
|
Loading…
Reference in New Issue