Lines Matching refs:session

141 ; session.gc_divisor
146 ; session.sid_bits_per_character
245 ; Refer to session.trans_sid_tags for usage.
253 ; Refer to session.trans_sid_hosts for more details.
1343 ; http://php.net/session.save-handler
1344 session.save_handler = files
1348 ; variable in order to use PHP's session functions.
1352 ; session.save_path = "N;/path"
1354 ; where N is an integer. Instead of storing all the session files in
1356 ; store the session data in those directories. This is useful if
1361 ; You can use the script in the ext/session dir for that purpose.
1363 ; use subdirectories for session storage
1368 ; session.save_path = "N;MODE;/path"
1372 ; http://php.net/session.save-path
1373 ;session.save_path = "/tmp"
1375 ; Whether to use strict session mode.
1376 ; Strict session mode does not accept uninitialized session ID and regenerate
1377 ; session ID if browser sends uninitialized session ID. Strict mode protects
1378 ; applications from session fixation via session adoption vulnerability. It is
1381 session.use_strict_mode = 0
1384 ; http://php.net/session.use-cookies
1385 session.use_cookies = 1
1387 ; http://php.net/session.cookie-secure
1388 ;session.cookie_secure =
1391 ; the session id. We encourage this operation as it's very helpful in combating
1392 ; session hijacking when not specifying and managing your own session id. It is
1393 ; not the be-all and end-all of session hijacking defense, but it's a good start.
1394 ; http://php.net/session.use-only-cookies
1395 session.use_only_cookies = 1
1397 ; Name of the session (used as cookie name).
1398 ; http://php.net/session.name
1399 session.name = PHPSESSID
1401 ; Initialize session on request startup.
1402 ; http://php.net/session.auto-start
1403 session.auto_start = 0
1406 ; http://php.net/session.cookie-lifetime
1407 session.cookie_lifetime = 0
1410 ; http://php.net/session.cookie-path
1411 session.cookie_path = /
1414 ; http://php.net/session.cookie-domain
1415 session.cookie_domain =
1418 ; http://php.net/session.cookie-httponly
1419 session.cookie_httponly =
1422 ; http://php.net/session.serialize-handler
1423 session.serialize_handler = php
1426 ; on every session initialization. The probability is calculated by using
1427 ; gc_probability/gc_divisor. Where session.gc_probability is the numerator
1429 ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
1434 ; http://php.net/session.gc-probability
1435 session.gc_probability = 1
1438 ; session initialization. The probability is calculated by using the following equation:
1439 ; gc_probability/gc_divisor. Where session.gc_probability is the numerator and
1440 ; session.gc_divisor is the denominator in the equation. Setting this value to 1
1441 ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
1448 ; http://php.net/session.gc-divisor
1449 session.gc_divisor = 1000
1453 ; http://php.net/session.gc-maxlifetime
1454 session.gc_maxlifetime = 1440
1456 ; NOTE: If you are using the subdirectory option for storing session files
1457 ; (see session.save_path above), then garbage collection does *not*
1461 ; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
1465 ; HTTP_REFERER has to contain this substring for the session to be
1467 ; http://php.net/session.referer-check
1468 session.referer_check =
1472 ; http://php.net/session.cache-limiter
1473 session.cache_limiter = nocache
1476 ; http://php.net/session.cache-expire
1477 session.cache_expire = 180
1482 ; - User may send URL contains active session ID
1484 ; - URL that contains active session ID may be stored
1486 ; - User may access your site with the same session ID
1488 ; http://php.net/session.use-trans-sid
1489 session.use_trans_sid = 0
1491 ; Set session ID character length. This value could be between 22 to 256.
1494 ; http://php.net/session.sid-length
1498 session.sid_length = 26
1510 session.trans_sid_tags = "a=href,area=href,frame=src,form="
1516 ; of session.trans_sid_tags setting.
1523 ;session.trans_sid_hosts=""
1534 ; http://php.net/session.hash-bits-per-character
1535 session.sid_bits_per_character = 5
1541 ; http://php.net/session.upload-progress.enabled
1542 ;session.upload_progress.enabled = On
1549 ; http://php.net/session.upload-progress.cleanup
1550 ;session.upload_progress.cleanup = On
1556 ; http://php.net/session.upload-progress.prefix
1557 ;session.upload_progress.prefix = "upload_progress_"
1564 ; http://php.net/session.upload-progress.name
1565 ;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS"
1572 ; http://php.net/session.upload-progress.freq
1573 ;session.upload_progress.freq = "1%"
1579 ; http://php.net/session.upload-progress.min-freq
1580 ;session.upload_progress.min_freq = "1"
1582 ; Only write session data when session data is changed. Enabled by default.
1583 ; http://php.net/session.lazy-write
1584 ;session.lazy_write = On