Created
March 11, 2012 08:36
-
-
Save meritt/2015618 to your computer and use it in GitHub Desktop.
Config for PHP 5.4 in development env
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [PHP] | |
| ;;;;;;;;;;;;;;;;;;;; | |
| ; Language Options ; | |
| ;;;;;;;;;;;;;;;;;;;; | |
| engine = On | |
| short_open_tag = Off | |
| asp_tags = Off | |
| precision = 14 | |
| output_buffering = 4096 | |
| ;output_handler = | |
| zlib.output_compression = Off | |
| ;zlib.output_compression_level = -1 | |
| ;zlib.output_handler = | |
| implicit_flush = Off | |
| unserialize_callback_func = | |
| serialize_precision = 17 | |
| ;open_basedir = | |
| disable_functions = | |
| disable_classes = | |
| ;ignore_user_abort = On | |
| ;realpath_cache_size = 16k | |
| ;realpath_cache_ttl = 120 | |
| zend.enable_gc = On | |
| ;zend.multibyte = Off | |
| ;zend.script_encoding = | |
| ;;;;;;;;;;;;;;;;; | |
| ; Miscellaneous ; | |
| ;;;;;;;;;;;;;;;;; | |
| expose_php = On | |
| ;;;;;;;;;;;;;;;;;;; | |
| ; Resource Limits ; | |
| ;;;;;;;;;;;;;;;;;;; | |
| max_execution_time = 30 | |
| max_input_time = 60 | |
| ;max_input_nesting_level = 64 | |
| ;max_input_vars = 1000 | |
| memory_limit = 256M | |
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| ; Error handling and logging ; | |
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| error_reporting = E_ALL | |
| display_errors = On | |
| display_startup_errors = On | |
| log_errors = Off | |
| log_errors_max_len = 1024 | |
| ignore_repeated_errors = Off | |
| ignore_repeated_source = Off | |
| report_memleaks = On | |
| ;report_zend_debug = 0 | |
| track_errors = On | |
| ;xmlrpc_errors = 0 | |
| ;xmlrpc_error_number = 0 | |
| html_errors = On | |
| ;error_log = php_errors.log | |
| ;error_log = syslog | |
| ;;;;;;;;;;;;;;;;; | |
| ; Data Handling ; | |
| ;;;;;;;;;;;;;;;;; | |
| ;arg_separator.output = "&" | |
| ;arg_separator.input = ";&" | |
| variables_order = "GPCS" | |
| request_order = "GP" | |
| register_argc_argv = Off | |
| auto_globals_jit = On | |
| ;enable_post_data_reading = Off | |
| post_max_size = 8M | |
| auto_prepend_file = | |
| auto_append_file = | |
| default_mimetype = "text/html" | |
| ;default_charset = "UTF-8" | |
| ;always_populate_raw_post_data = On | |
| ;;;;;;;;;;;;;;;;;;;;;;;;; | |
| ; Paths and Directories ; | |
| ;;;;;;;;;;;;;;;;;;;;;;;;; | |
| include_path = "." | |
| doc_root = | |
| user_dir = | |
| extension_dir = "/usr/local/php/lib/php/20100525/" | |
| enable_dl = Off | |
| ;cgi.force_redirect = 1 | |
| ;cgi.nph = 1 | |
| ;cgi.redirect_status_env = ; | |
| ;cgi.fix_pathinfo=1 | |
| ;fastcgi.impersonate = 1; | |
| ;fastcgi.logging = 0 | |
| ;cgi.rfc2616_headers = 0 | |
| ;;;;;;;;;;;;;;;; | |
| ; File Uploads ; | |
| ;;;;;;;;;;;;;;;; | |
| file_uploads = On | |
| ;upload_tmp_dir = | |
| upload_max_filesize = 8M | |
| max_file_uploads = 20 | |
| ;;;;;;;;;;;;;;;;;; | |
| ; Fopen wrappers ; | |
| ;;;;;;;;;;;;;;;;;; | |
| allow_url_fopen = Off | |
| allow_url_include = Off | |
| ;from="john@doe.com" | |
| ;user_agent="PHP" | |
| default_socket_timeout = 60 | |
| ;auto_detect_line_endings = Off | |
| ;;;;;;;;;;;;;;;;;;;;;; | |
| ; Dynamic Extensions ; | |
| ;;;;;;;;;;;;;;;;;;;;;; | |
| ;extension = apc.so | |
| ;extension = mongo.so | |
| ;extension = openssl.so | |
| ;extension = xdebug.so | |
| ;;;;;;;;;;;;;;;;;;; | |
| ; Module Settings ; | |
| ;;;;;;;;;;;;;;;;;;; | |
| [CLI Server] | |
| cli_server.color = On | |
| [Date] | |
| date.timezone = "Europe/Moscow" | |
| ;date.default_latitude = 31.7667 | |
| ;date.default_longitude = 35.2333 | |
| ;date.sunrise_zenith = 90.583333 | |
| ;date.sunset_zenith = 90.583333 | |
| [filter] | |
| ;filter.default = unsafe_raw | |
| ;filter.default_flags = | |
| [iconv] | |
| ;iconv.input_encoding = ISO-8859-1 | |
| ;iconv.internal_encoding = ISO-8859-1 | |
| ;iconv.output_encoding = ISO-8859-1 | |
| [intl] | |
| ;intl.default_locale = | |
| ;intl.error_level = E_WARNING | |
| [Pcre] | |
| ;pcre.backtrack_limit=100000 | |
| ;pcre.recursion_limit=100000 | |
| [Pdo_mysql] | |
| pdo_mysql.cache_size = 2000 | |
| pdo_mysql.default_socket = | |
| [Phar] | |
| ;phar.readonly = On | |
| ;phar.require_hash = On | |
| ;phar.cache_list = | |
| [Syslog] | |
| define_syslog_variables = Off | |
| [mail function] | |
| SMTP = localhost | |
| smtp_port = 25 | |
| ;sendmail_from = me@example.com | |
| ;sendmail_path = | |
| ;mail.force_extra_parameters = | |
| mail.add_x_header = On | |
| ;mail.log = /var/log/php-mail.log | |
| [SQL] | |
| sql.safe_mode = Off | |
| [MySQL] | |
| mysql.allow_local_infile = On | |
| mysql.allow_persistent = On | |
| mysql.cache_size = 2000 | |
| mysql.max_persistent = -1 | |
| mysql.max_links = -1 | |
| mysql.default_port = | |
| mysql.default_socket = | |
| mysql.default_host = | |
| mysql.default_user = | |
| mysql.default_password = | |
| mysql.connect_timeout = 60 | |
| mysql.trace_mode = Off | |
| [MySQLi] | |
| mysqli.max_persistent = -1 | |
| ;mysqli.allow_local_infile = On | |
| mysqli.allow_persistent = On | |
| mysqli.max_links = -1 | |
| mysqli.cache_size = 2000 | |
| mysqli.default_port = 3306 | |
| mysqli.default_socket = | |
| mysqli.default_host = | |
| mysqli.default_user = | |
| mysqli.default_pw = | |
| mysqli.reconnect = Off | |
| [mysqlnd] | |
| mysqlnd.collect_statistics = On | |
| mysqlnd.collect_memory_statistics = On | |
| ;mysqlnd.net_cmd_buffer_size = 2048 | |
| ;mysqlnd.net_read_buffer_size = 32768 | |
| [bcmath] | |
| bcmath.scale = 0 | |
| [browscap] | |
| ;browscap = extra/browscap.ini | |
| [Session] | |
| session.save_handler = files | |
| session.save_path = "N;/tmp" | |
| session.use_cookies = 1 | |
| ;session.cookie_secure = | |
| session.use_only_cookies = 1 | |
| session.name = PHPSESSID | |
| session.auto_start = 0 | |
| session.cookie_lifetime = 0 | |
| session.cookie_path = / | |
| session.cookie_domain = | |
| session.cookie_httponly = | |
| session.serialize_handler = php | |
| session.gc_probability = 1 | |
| session.gc_divisor = 1000 | |
| session.gc_maxlifetime = 1440 | |
| session.bug_compat_42 = On | |
| session.bug_compat_warn = On | |
| session.referer_check = | |
| ; session.entropy_length = 32 | |
| ; session.entropy_file = /dev/urandom | |
| session.cache_limiter = nocache | |
| session.cache_expire = 180 | |
| session.use_trans_sid = 0 | |
| session.hash_function = 0 | |
| session.hash_bits_per_character = 5 | |
| url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry" | |
| ;session.upload_progress.enabled = On | |
| ;session.upload_progress.cleanup = On | |
| ;session.upload_progress.prefix = "upload_progress_" | |
| ;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS" | |
| ;session.upload_progress.freq = "1%" | |
| ;session.upload_progress.min_freq = "1" | |
| [mbstring] | |
| ;mbstring.language = Japanese | |
| ;mbstring.internal_encoding = EUC-JP | |
| ;mbstring.http_input = auto | |
| ;mbstring.http_output = SJIS | |
| ;mbstring.encoding_translation = Off | |
| ;mbstring.detect_order = auto | |
| ;mbstring.substitute_character = none; | |
| ;mbstring.func_overload = 0 | |
| ;mbstring.strict_detection = Off | |
| ;mbstring.http_output_conv_mimetype= | |
| [gd] | |
| ;gd.jpeg_ignore_warning = 0 | |
| [exif] | |
| ;exif.encode_unicode = ISO-8859-15 | |
| ;exif.decode_unicode_motorola = UCS-2BE | |
| ;exif.decode_unicode_intel = UCS-2LE | |
| ;exif.encode_jis = | |
| ;exif.decode_jis_motorola = JIS | |
| ;exif.decode_jis_intel = JIS | |
| [soap] | |
| soap.wsdl_cache_enabled = 1 | |
| soap.wsdl_cache_dir = "/tmp" | |
| soap.wsdl_cache_ttl = 86400 | |
| soap.wsdl_cache_limit = 5 | |
| [sysvshm] | |
| ;sysvshm.init_mem = 10000 | |
| [mcrypt] | |
| ;mcrypt.algorithms_dir= | |
| ;mcrypt.modes_dir= | |
| ; Local Variables: | |
| ; tab-width: 4 | |
| ; End: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Подробнее о том как установить PHP 5.4.0 на OS X Lion 10.7.3 читайте здесь: blog.simonenko.su