Lines Matching refs:session

141 ; session.gc_divisor
146 ; session.sid_bits_per_character
240 ; Refer to session.trans_sid_tags for usage.
248 ; Refer to session.trans_sid_hosts for more details.
1335 ; http://php.net/session.save-handler
1336 session.save_handler = files
1340 ; variable in order to use PHP's session functions.
1344 ; session.save_path = "N;/path"
1346 ; where N is an integer. Instead of storing all the session files in
1348 ; store the session data in those directories. This is useful if
1353 ; You can use the script in the ext/session dir for that purpose.
1355 ; use subdirectories for session storage
1360 ; session.save_path = "N;MODE;/path"
1364 ; http://php.net/session.save-path
1365 ;session.save_path = "/tmp"
1367 ; Whether to use strict session mode.
1368 ; Strict session mode does not accept an uninitialized session ID, and
1369 ; regenerates the session ID if the browser sends an uninitialized session ID.
1370 ; Strict mode protects applications from session fixation via a session adoption
1374 session.use_strict_mode = 0
1377 ; http://php.net/session.use-cookies
1378 session.use_cookies = 1
1380 ; http://php.net/session.cookie-secure
1381 ;session.cookie_secure =
1384 ; the session id. We encourage this operation as it's very helpful in combating
1385 ; session hijacking when not specifying and managing your own session id. It is
1386 ; not the be-all and end-all of session hijacking defense, but it's a good start.
1387 ; http://php.net/session.use-only-cookies
1388 session.use_only_cookies = 1
1390 ; Name of the session (used as cookie name).
1391 ; http://php.net/session.name
1392 session.name = PHPSESSID
1394 ; Initialize session on request startup.
1395 ; http://php.net/session.auto-start
1396 session.auto_start = 0
1399 ; http://php.net/session.cookie-lifetime
1400 session.cookie_lifetime = 0
1403 ; http://php.net/session.cookie-path
1404 session.cookie_path = /
1407 ; http://php.net/session.cookie-domain
1408 session.cookie_domain =
1412 ; http://php.net/session.cookie-httponly
1413 session.cookie_httponly =
1419 session.cookie_samesite =
1422 ; http://php.net/session.serialize-handler
1423 session.serialize_handler = php
1426 ; session initialization. The probability is calculated by using gc_probability/gc_divisor,
1431 ; http://php.net/session.gc-probability
1432 session.gc_probability = 1
1435 ; session initialization. The probability is calculated by using gc_probability/gc_divisor,
1441 ; http://php.net/session.gc-divisor
1442 session.gc_divisor = 1000
1446 ; http://php.net/session.gc-maxlifetime
1447 session.gc_maxlifetime = 1440
1449 ; NOTE: If you are using the subdirectory option for storing session files
1450 ; (see session.save_path above), then garbage collection does *not*
1454 ; session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
1458 ; HTTP_REFERER has to contain this substring for the session to be
1460 ; http://php.net/session.referer-check
1461 session.referer_check =
1465 ; http://php.net/session.cache-limiter
1466 session.cache_limiter = nocache
1469 ; http://php.net/session.cache-expire
1470 session.cache_expire = 180
1475 ; - User may send URL contains active session ID
1477 ; - URL that contains active session ID may be stored
1479 ; - User may access your site with the same session ID
1481 ; http://php.net/session.use-trans-sid
1482 session.use_trans_sid = 0
1484 ; Set session ID character length. This value could be between 22 to 256.
1487 ; http://php.net/session.sid-length
1491 session.sid_length = 26
1503 session.trans_sid_tags = "a=href,area=href,frame=src,form="
1509 ; of session.trans_sid_tags setting.
1516 ;session.trans_sid_hosts=""
1527 ; http://php.net/session.hash-bits-per-character
1528 session.sid_bits_per_character = 5
1534 ; http://php.net/session.upload-progress.enabled
1535 ;session.upload_progress.enabled = On
1542 ; http://php.net/session.upload-progress.cleanup
1543 ;session.upload_progress.cleanup = On
1549 ; http://php.net/session.upload-progress.prefix
1550 ;session.upload_progress.prefix = "upload_progress_"
1557 ; http://php.net/session.upload-progress.name
1558 ;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS"
1565 ; http://php.net/session.upload-progress.freq
1566 ;session.upload_progress.freq = "1%"
1572 ; http://php.net/session.upload-progress.min-freq
1573 ;session.upload_progress.min_freq = "1"
1575 ; Only write session data when session data is changed. Enabled by default.
1576 ; http://php.net/session.lazy-write
1577 ;session.lazy_write = On