Lines Matching refs:session

141 ; session.gc_divisor
146 ; session.hash_bits_per_character
1357 ; http://php.net/session.save-handler
1358 session.save_handler = files
1362 ; variable in order to use PHP's session functions.
1366 ; session.save_path = "N;/path"
1368 ; where N is an integer. Instead of storing all the session files in
1370 ; store the session data in those directories. This is useful if you
1375 ; You can use the script in the ext/session dir for that purpose.
1377 ; use subdirectories for session storage
1382 ; session.save_path = "N;MODE;/path"
1386 ; http://php.net/session.save-path
1387 ;session.save_path = "/tmp"
1389 ; Whether to use strict session mode.
1390 ; Strict session mode does not accept uninitialized session ID and regenerate
1391 ; session ID if browser sends uninitialized session ID. Strict mode protects
1392 ; applications from session fixation via session adoption vulnerability. It is
1395 session.use_strict_mode = 0
1398 ; http://php.net/session.use-cookies
1399 session.use_cookies = 1
1401 ; http://php.net/session.cookie-secure
1402 ;session.cookie_secure =
1405 ; the session id. We encourage this operation as it's very helpful in combating
1406 ; session hijacking when not specifying and managing your own session id. It is
1407 ; not the end all be all of session hijacking defense, but it's a good start.
1408 ; http://php.net/session.use-only-cookies
1409 session.use_only_cookies = 1
1411 ; Name of the session (used as cookie name).
1412 ; http://php.net/session.name
1413 session.name = PHPSESSID
1415 ; Initialize session on request startup.
1416 ; http://php.net/session.auto-start
1417 session.auto_start = 0
1420 ; http://php.net/session.cookie-lifetime
1421 session.cookie_lifetime = 0
1424 ; http://php.net/session.cookie-path
1425 session.cookie_path = /
1428 ; http://php.net/session.cookie-domain
1429 session.cookie_domain =
1432 ; http://php.net/session.cookie-httponly
1433 session.cookie_httponly =
1436 ; http://php.net/session.serialize-handler
1437 session.serialize_handler = php
1440 ; on every session initialization. The probability is calculated by using
1441 ; gc_probability/gc_divisor. Where session.gc_probability is the numerator
1443 ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
1448 ; http://php.net/session.gc-probability
1449 session.gc_probability = 1
1452 ; session initialization. The probability is calculated by using the following equation:
1453 ; gc_probability/gc_divisor. Where session.gc_probability is the numerator and
1454 ; session.gc_divisor is the denominator in the equation. Setting this value to 1
1455 ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
1462 ; http://php.net/session.gc-divisor
1463 session.gc_divisor = 1000
1467 ; http://php.net/session.gc-maxlifetime
1468 session.gc_maxlifetime = 1440
1470 ; NOTE: If you are using the subdirectory option for storing session files
1471 ; (see session.save_path above), then garbage collection does *not*
1475 ; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
1479 ; HTTP_REFERER has to contain this substring for the session to be
1481 ; http://php.net/session.referer-check
1482 session.referer_check =
1485 ; http://php.net/session.entropy-length
1486 ;session.entropy_length = 32
1488 ; Specified here to create the session id.
1489 ; http://php.net/session.entropy-file
1495 ;session.entropy_file = /dev/urandom
1499 ; http://php.net/session.cache-limiter
1500 session.cache_limiter = nocache
1503 ; http://php.net/session.cache-expire
1504 session.cache_expire = 180
1509 ; - User may send URL contains active session ID
1511 ; - URL that contains active session ID may be stored
1513 ; - User may access your site with the same session ID
1515 ; http://php.net/session.use-trans-sid
1516 session.use_trans_sid = 0
1518 ; Select a hash function for use in generating session ids.
1525 ; http://php.net/session.hash-function
1526 session.hash_function = 0
1537 ; http://php.net/session.hash-bits-per-character
1538 session.hash_bits_per_character = 5
1555 ; http://php.net/session.upload-progress.enabled
1556 ;session.upload_progress.enabled = On
1563 ; http://php.net/session.upload-progress.cleanup
1564 ;session.upload_progress.cleanup = On
1570 ; http://php.net/session.upload-progress.prefix
1571 ;session.upload_progress.prefix = "upload_progress_"
1578 ; http://php.net/session.upload-progress.name
1579 ;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS"
1586 ; http://php.net/session.upload-progress.freq
1587 ;session.upload_progress.freq = "1%"
1593 ; http://php.net/session.upload-progress.min-freq
1594 ;session.upload_progress.min_freq = "1"