The configuration community:
Software
Description
Mainly network based optimization.
Configuration file
Description
Drupal 5.1 site-specific default configuration file.
If you make changes to this file, be sure to protect it again after making your modifications. Failure to remove write permissions to this file is a security risk.
Configuration file
Information
PHP versions 4.2.3 and lower have an undocumented feature bug that allows you to initialize a session variable in the global scope albeit register_globals is disabled. PHP 4.3.0 and later will warn you if this feature is used and if session.bug_compat_warn is also enabled. This feature bug can be disabled by disabling this directive.
Syntax
Example
Information
session.use_only_cookies specifies whether the module will only use cookies to store the session id on the client side. Enabling this setting prevents attacks involved passing session ids in URLs. This setting was added in PHP 4.3.0.
Syntax
Example
Information
session.hash_function allows you to specify the hash algorithm used to generate the session IDs. '0' means MD5 (128 bits) and '1' means SHA-1 (160 bits).
Syntax
Example
Information
session.entropy_file gives a path to an external resource (file) which will be used as an additional entropy source in the session id creation process. Examples are dev random or dev urandom which are available on many Unix systems.
Syntax
Example
Information
session.cookie_path specifies path to set in session_cookie. Defaults to . See also session_get_cookie_params() and session_set_cookie_params().
Syntax
Example
Information
session.cache_limiter specifies cache control method to use for session pages (none nocache private private_no_expire public). Defaults to nocache. See also session_cache_limiter().
Syntax
Example
Information
session.cookie_secure specifies whether cookies should only be sent over secure connections. Defaults to off. This setting was added in PHP 4.0.4. See also session_get_cookie_params() and session_set_cookie_params().
Syntax
Example
Information
session.use_trans_sid whether transparent sid support is enabled or not. Defaults to 0 (disabled).



