'Peformance settings', 'settings' => 'Common settings', 'plainTextEditing' => 'Additional directives', 'placeAdditionalCustomizationDirectivesHere' => 'If you cannot find particular PHP parameters, add them to the field below. The directives will be included in the final PHP configuration. Use the same syntax as you use for php.ini. For example, if you want to automatically load the mSQL extension, add the line: extension=msql.so.', 'placeAdditionalCustomizationDirectivesHereAddonPlan' => 'If you cannot find particular PHP parameters, add them to the field below. These additional directives will be merged with the directives of the main service plan. Use the same syntax as you use for php.ini. For example, if you want to automatically load the mSQL extension, add the line: extension=msql.so.', 'additionalConfigurationDirectives' => 'Additional configuration directives', 'defaultValue' => 'Default', 'predefinedValue' => 'Select value', 'customValue' => 'Enter custom value', 'phpSettingDescription_memory_limit' => 'The maximum amount of memory in bytes a script is allowed to allocate. Set the value to -1 to have no memory limit (not recommended). Use shortcuts for byte values: K (kilo), M (mega), and G (giga). For example, 128M.', 'phpSettingDescription_max_execution_time' => 'The maximum time in seconds a script is allowed to run before it is terminated.', 'phpSettingDescription_max_input_time' => 'The maximum time in seconds a script is allowed to parse input data.', 'phpSettingDescription_post_max_size' => 'The maximum size in bytes of data that can be posted with the POST method. Typically, should be larger than upload_max_filesize and smaller than memory_limit. Use shortcuts for byte values: K (kilo), M (mega), and G (giga). For example, 128M.', 'phpSettingDescription_upload_max_filesize' => 'The maximum size in bytes of an uploaded file. Use shortcuts for byte values: K (kilo), M (mega), and G (giga). For example, 128M.', 'phpSettingDescription_safe_mode' => '(removed in PHP 5.4.0) Enables PHP safe mode. This mode puts a number of restrictions on scripts (say, access to file system) mainly for security reasons.', 'phpSettingDescription_safe_mode_include_dir' => '(removed in PHP 5.4.0) If PHP is in the safe mode and a script tries to access some files, files from this directory will bypass security (UID/GID) checks. The directory must also be in include_path. For example: /dir/inc', 'phpSettingDescription_safe_mode_exec_dir' => '(removed in PHP 5.4.0) If PHP is in the safe mode, scripts can execute external programs located only in this directory. For example: /dir/external', 'phpSettingDescription_include_path' => 'The list of directories where scripts look for files (similar to system\'s PATH variable). To separate directories, use a colon (:) on Linux and a semicolon (;) on Windows. For example, on Linux: .:/dir/inc:/usr/lib/php', 'phpSettingDescription_sessionsave_path' => 'The directory where PHP writes session data (files). For example: /dir/tmp', 'phpSettingDescription_mailforce_extra_parameters' => 'Additional parameters for the mail() function used to send mail. For example, to use your custom Sendmail configuration: -C /dir/conf.cf', 'phpSettingDescription_register_globals' => 'Tells whether to register the contents of the EGPCS (Environment, GET, POST, Cookie, Server) variables as global variables. When on, register_globals will inject your scripts with all sorts of variables, like request variables from HTML forms. This option is a great security risk, thus do not turn it on without necessity.', 'phpSettingDescription_open_basedir' => 'The list of directories used to limit the files that can be opened by PHP. If the file is outside the specified directories, PHP scripts will refuse to open it. To separate directories, use a colon (:) on Linux and a semicolon (;) on Windows. For example, on Linux: /dir/upload:/usr/tmp', 'phpSettingDescription_error_reporting' => 'The error reporting level.', 'phpSettingDescription_display_errors' => 'Determines whether errors should be printed to the screen as part of the output or if they should not be shown to a user.', 'phpSettingDescription_log_errors' => 'Tells whether to log errors. By default, errors are logged in the server\'s error log. Use the error_log directive to specify the path to your own log file.', );