Searched refs:save_path (Results 1 – 25 of 75) sorted by relevance
123
/PHP-8.2/ext/session/tests/ |
H A D | skipif.inc | 2 $save_path = ini_get("session.save_path"); 3 if ($save_path) { 4 if (!file_exists($save_path)) { 5 die("skip Session save_path doesn't exist"); 8 if ($save_path && !@is_writable($save_path)) { 9 if (($p = strpos($save_path, ';')) !== false) { 10 $save_path = substr($save_path, ++$p); 12 if (!@is_writable($save_path)) { 13 die("skip session.save_path $save_path is not writable\n");
|
H A D | session_save_path_variation2.phpt | 17 ini_set("session.save_path", "/blah"); 18 var_dump(ini_get("session.save_path")); 20 var_dump(ini_get("session.save_path")); 22 var_dump(ini_get("session.save_path"));
|
H A D | bug42596.phpt | 2 Bug #42596 (session.save_path MODE option will not set "write" bit for group or world) 23 $save_path = '0;0777;'.$sessdir; 25 session_save_path($save_path);
|
H A D | 016.phpt | 2 invalid session.save_path should not cause a segfault 6 session.save_path="123;:/really\\completely:::/invalid;;,23123;213" 21 … Failed to create session data file path. Too short session ID, invalid save_path or path length e…
|
H A D | gh7787.phpt | 84 … Failed to write session data using user defined save handler. (session.save_path: , handler: MySe… 86 … Failed to write session data using user defined save handler. (session.save_path: , handler: MySe… 88 … Failed to write session data using user defined save handler. (session.save_path: , handler: writ… 90 … Failed to write session data using user defined save handler. (session.save_path: , handler: upda…
|
H A D | bug61470.phpt | 10 ini_set('session.save_path', __DIR__); 11 $path = ini_get('session.save_path') . '/sess_';
|
H A D | bug60634.phpt | 4 session.save_path= 16 function open($save_path, $session_name) {
|
H A D | session_save_path_variation5.phpt | 12 session.save_path= 31 ini_set("session.save_path", $directory);
|
H A D | session_set_save_handler_error3.phpt | 4 session.save_path= 17 function open($save_path, $session_name) {
|
H A D | bug60634_error_2.phpt | 4 session.save_path= 16 function open($save_path, $session_name) {
|
H A D | bug60634_error_5.phpt | 4 session.save_path= 16 function open($save_path, $session_name) {
|
H A D | session_module_name_variation3.phpt | 4 session.save_path= 17 function open($save_path, $session_name) {
|
H A D | bug60634_error_4.phpt | 4 session.save_path= 16 function open($save_path, $session_name) {
|
H A D | bug60634_error_3.phpt | 4 session.save_path= 16 function open($save_path, $session_name) {
|
H A D | bug60634_error_1.phpt | 4 session.save_path= 16 function open($save_path, $session_name) {
|
H A D | session_save_path_variation4.phpt | 10 session.save_path= 30 ini_set("session.save_path", $initdir);
|
H A D | rfc1867_sid_invalid.phpt | 6 session.save_path= 59 …session data (files). Please verify that the current setting of session.save_path is correct () in… 65 …session data (files). Please verify that the current setting of session.save_path is correct () in…
|
H A D | session_save_path_basic.phpt | 5 session.save_path=
|
H A D | session_module_name_variation2.phpt | 14 function open($save_path, $session_name) { }
|
H A D | bug73100.phpt | 6 session.save_path=
|
H A D | session_name_basic.phpt | 4 session.save_path=
|
H A D | bug72940.phpt | 5 session.save_path=
|
/PHP-8.2/ext/session/ |
H A D | mod_user_class.c | 40 char *save_path = NULL, *session_name = NULL; in PHP_METHOD() local 44 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "ss", &save_path, &save_path_len, &session_name, &sessi… in PHP_METHOD() 51 ret = PS(default_mod)->s_open(&PS(mod_data), save_path, session_name); in PHP_METHOD()
|
H A D | mod_files.c | 373 if (*save_path == '\0') { in PS_OPEN_FUNC() 375 save_path = php_get_temporary_directory(); in PS_OPEN_FUNC() 377 if (php_check_open_basedir(save_path)) { in PS_OPEN_FUNC() 383 last = save_path; in PS_OPEN_FUNC() 384 p = strchr(save_path, ';'); in PS_OPEN_FUNC() 410 save_path = argv[argc - 1]; in PS_OPEN_FUNC() 417 data->basedir = zend_string_init(save_path, strlen(save_path), /* persistent */ false); in PS_OPEN_FUNC()
|
/PHP-8.2/tests/basic/ |
H A D | bug20539.phpt | 10 session.save_path=./tests/basic/
|
Completed in 21 milliseconds
123