• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/26

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

26 Cards in this Set

  • Front
  • Back
allow_url_fopen
This option enables the URL-aware fopen wrappers that enable accessing URL object like files. Default wrappers are provided for the access of remote files using the ftp or http protocol, some extensions like zlib may register additional wrappers. Default value is "1"
allow_url_include
This option allows the use of URL-aware fopen wrappers with the following functions: include(), include_once(), require(), require_once(). Default value is "0"
disable_classes
This directive allows you to disable certain classes for security reasons. It takes on a comma-delimited list of class names. disable_classes is not affected by Safe Mode. Default value is ""
disable_functions
This directive allows you to disable certain functions for security reasons. It takes on a comma-delimited list of function names. disable_functions is not affected by Safe Mode. Default value is ""
display_errors
This determines whether errors should be printed to the screen as part of the output or if they should be hidden from the user. Default value is "1"
display_startup_errors
Even when display_errors is on, errors that occur during PHP's startup sequence are not displayed. It's strongly recommended to keep display_startup_errors off, except for debugging. Default value is "0"
file_uploads
Whether or not to allow HTTP file uploads. Default value is "1"
include_path
Specifies a list of directories where the require(), include(), fopen(), file(), readfile() and file_get_contents() functions look for files. The format is like the system's PATH environment variable: a list of directories separated with a colon in Unix or semicolon in Windows. Default value is ".;/path/to/php/pear"
log_errors
Tells whether script error messages should be logged to the server's error log or error_log. This option is thus server-specific. Default value is "0"
log_errors_max_len
Set the maximum length of log_errors in bytes. In error_log information about the source is added. The default is 1024 and 0 allows to not apply any maximum length at all. Default value is "1024"
magic_quotes_gpc
Sets the magic_quotes state for GPC (Get/Post/Cookie) operations. When magic_quotes are on, all ' (single-quote), " (double quote), \ (backslash) and NUL's are escaped with a backslash automatically. Deprecated Default value is "1"
magic_quotes_runtime
If magic_quotes_runtime is enabled, most functions that return data from any sort of external source including databases and text files will have quotes escaped with a backslash. If magic_quotes_sybase is also on, a single-quote is escaped with a single-quote instead of a backslash. Deprecated Default value is "0"
max_execution_time
This sets the maximum time in seconds a script is allowed to run before it is terminated by the parser. This helps prevent poorly written scripts from tying up the server. The default setting is 30. Default value is "30"
mysql.allow_persistent
Whether to allow persistent connections to MySQL. Default value is "1"
mysql.connect_timeout
Connect timeout in seconds. On Linux this timeout is also used for waiting for the first answer from the server. Default value is "60"
post_max_size
Sets max size of post data allowed. This setting also affects file upload. To upload large files, this value must be larger than upload_max_filesize. Default value is "8M"
register_globals
Whether or not to register the EGPCS (Environment, GET, POST, Cookie, Server) variables as global variables. Default value is "0"
safe_mode
Whether to enable PHP's safe mode. If PHP is compiled with --enable-safe-mode then defaults to On, otherwise Off. Deprecated Default value is "0"
session.auto_start
session.auto_start specifies whether the session module starts a session automatically on request startup. Defaults to 0 (disabled). Default value is "0"
session.cookie_path
session.cookie_path specifies path to set in the session cookie. Defaults to /. Default value is "/"
short_open_tag
Tells PHP whether the short form (<? ?>) of PHP's open tag should be allowed. If you want to use PHP in combination with XML, you can disable this option in order to use <?xml ?> inline. Otherwise, you can print it with PHP, for example: <?php echo '<?xml version="1.0"?>'; ?>. Also, if disabled, you must use the long form of the PHP open tag (<?php ?>). Default value is "1"
upload_max_filesize
The maximum size of an uploaded file. When an integer is used, the value is measured in bytes. Default value is "2M"
max_file_uploads
The maximum number of files allowed to be uploaded simultaneously. Default value is 20
zlib.output_compression
Whether to transparently compress pages. If this option is set to "On" in php.ini or the Apache configuration, pages are compressed if the browser sends an "Accept-Encoding: gzip" or "deflate" header.  Default value is "0"
zlib.output_compression_level
Compression level used for transparent output compression. Specify a value between 0 (no compression) to 9 (most compression). The default value, -1, lets the server decide which level to use. Default value is "-1"
zlib.output_handler
You cannot specify additional output handlers if zlib.output_compression is activated here. Default value is ""