Home
last modified time | relevance | path

Searched refs:save_path (Results 1 – 25 of 71) sorted by relevance

123

/php-src/ext/session/tests/
H A Dskipif.inc2 $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 Dsession_save_path_variation2.phpt17 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 Dbug42596.phpt2 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 D016.phpt2 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 Dbug61470.phpt10 ini_set('session.save_path', __DIR__);
11 $path = ini_get('session.save_path') . '/sess_';
H A Dsession_save_path_variation5.phpt12 session.save_path=
32 ini_set("session.save_path", $directory);
H A Dsession_module_name_variation3.phpt4 session.save_path=
19 public function open($save_path, $session_name): bool {
H A Dsession_save_path_variation4.phpt10 session.save_path=
30 ini_set("session.save_path", $initdir);
H A Drfc1867_sid_invalid.phpt6 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 Dsession_save_path_basic.phpt5 session.save_path=
H A Dbug73100.phpt6 session.save_path=
H A Dsession_name_basic.phpt4 session.save_path=
H A Dsession_abort_basic.phpt8 session.save_path=
/php-src/ext/session/tests/user_session_module/
H A Dgh7787.phpt81 … Failed to write session data using user defined save handler. (session.save_path: %S, handler: My…
83 … Failed to write session data using user defined save handler. (session.save_path: %S, handler: My…
87 … Failed to write session data using user defined save handler. (session.save_path: %S, handler: wr…
89 … Failed to write session data using user defined save handler. (session.save_path: %S, handler: up…
H A Dbug60634.phpt4 session.save_path=
15 function open($save_path, $session_name): bool {
H A Dbug60634_error_5.phpt4 session.save_path=
15 function open($save_path, $session_name): bool {
H A Dsession_set_save_handler_error3.phpt4 session.save_path=
15 function open($save_path, $session_name) {
H A Dbug60634_error_2.phpt4 session.save_path=
15 function open($save_path, $session_name): bool {
H A Dbug60634_error_4.phpt4 session.save_path=
14 function open($save_path, $session_name) {
H A Dbug60634_error_1.phpt4 session.save_path=
15 function open($save_path, $session_name): bool {
H A Dbug60634_error_3.phpt4 session.save_path=
14 function open($save_path, $session_name) {
H A Dbug70133.phpt7 session.save_path=
/php-src/ext/session/
H A Dmod_user_class.c40 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 Dmod_files.c373 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-src/tests/basic/
H A Dbug20539.phpt10 session.save_path=./tests/basic/

Completed in 28 milliseconds

123