Discuz!官方免费开源建站系统

 找回密码
 立即注册
搜索

奇怪的本机PHP5环境搭建问题

[复制链接]
icesheep 发表于 2007-8-15 16:43:02 | 显示全部楼层 |阅读模式
已经按照肚皮的去做了,还参考了网上不少文章
winxp+iiis5+php5
-------------------
比如我在浏览器输localhost\index.htm,可以显示
同一目录下的123.php就不行,会出404号错,找不到文件,代码如下
  1. <?  
  2.     echo "Success";
  3. ?>
复制代码

--------------------
我在文档那里设的index.php优先于index.htm
所以一旦把123.php改名为index.php,再输localhost就会出现找不到文件错
也就是404号错
回复

使用道具 举报

 楼主| icesheep 发表于 2007-8-15 16:47:04 | 显示全部楼层
PD208,1g内存,sp2已打
回复

使用道具 举报

 楼主| icesheep 发表于 2007-8-15 16:50:24 | 显示全部楼层
但该文件绝对存在,同一目录下的其他文件都可以用localhost\xx来访问
而且如果把该文件改名为index.php,则输localhost本身也会出此错误
  1. 找不到网页
  2. 正在查找的网页可能已被删除、重命名或暂时不可用。

  3. --------------------------------------------------------------------------------

  4. 请尝试执行下列操作:

  5. 如果是在“地址”栏中键入了网页地址,请检查其拼写是否正确。

  6. 打开 localhost 主页,然后查找与所需信息相关的链接。
  7. 单击后退按钮尝试其他链接。
  8. HTTP 错误 404 - 找不到文件
  9. Internet 信息服务


  10. --------------------------------------------------------------------------------

  11. 技术信息(用于支持人员)

  12. 详细信息:
  13. Microsoft 支持  
复制代码
回复

使用道具 举报

 楼主| icesheep 发表于 2007-8-15 16:53:02 | 显示全部楼层
筛选器中.php为绿色,箭头朝上,安装目录为C:\php5,系统在c:

[ 本帖最后由 icesheep 于 2007-8-15 16:56 编辑 ]
回复

使用道具 举报

 楼主| icesheep 发表于 2007-8-15 16:55:07 | 显示全部楼层

我的php.ini

  1. [PHP]

  2. ;;;;;;;;;;;
  3. ; WARNING ;
  4. ;;;;;;;;;;;
  5. ; This is the default settings file for new PHP installations.
  6. ; By default, PHP installs itself with a configuration suitable for
  7. ; development purposes, and *NOT* for production purposes.
  8. ; For several security-oriented considerations that should be taken
  9. ; before going online with your site, please consult php.ini-recommended
  10. ; and [url]http://php.net/manual/en/security.php.[/url]


  11. ;;;;;;;;;;;;;;;;;;;
  12. ; About php.ini   ;
  13. ;;;;;;;;;;;;;;;;;;;
  14. ; This file controls many aspects of PHP's behavior.  In order for PHP to
  15. ; read it, it must be named 'php.ini'.  PHP looks for it in the current
  16. ; working directory, in the path designated by the environment variable
  17. ; PHPRC, and in the path that was defined in compile time (in that order).
  18. ; Under Windows, the compile-time path is the Windows directory.  The
  19. ; path in which the php.ini file is looked for can be overridden using
  20. ; the -c argument in command line mode.
  21. ;
  22. ; The syntax of the file is extremely simple.  Whitespace and Lines
  23. ; beginning with a semicolon are silently ignored (as you probably guessed).
  24. ; Section headers (e.g. [Foo]) are also silently ignored, even though
  25. ; they might mean something in the future.
  26. ;
  27. ; Directives are specified using the following syntax:
  28. ; directive = value
  29. ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
  30. ;
  31. ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
  32. ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
  33. ; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo").
  34. ;
  35. ; Expressions in the INI file are limited to bitwise operators and parentheses:
  36. ; |        bitwise OR
  37. ; &        bitwise AND
  38. ; ~        bitwise NOT
  39. ; !        boolean NOT
  40. ;
  41. ; Boolean flags can be turned on using the values 1, On, True or Yes.
  42. ; They can be turned off using the values 0, Off, False or No.
  43. ;
  44. ; An empty string can be denoted by simply not writing anything after the equal
  45. ; sign, or by using the None keyword:
  46. ;
  47. ;  foo =         ; sets foo to an empty string
  48. ;  foo = none    ; sets foo to an empty string
  49. ;  foo = "none"  ; sets foo to the string 'none'
  50. ;
  51. ; If you use constants in your value, and these constants belong to a
  52. ; dynamically loaded extension (either a PHP extension or a Zend extension),
  53. ; you may only use these constants *after* the line that loads the extension.
  54. ;
  55. ;
  56. ;;;;;;;;;;;;;;;;;;;
  57. ; About this file ;
  58. ;;;;;;;;;;;;;;;;;;;
  59. ; All the values in the php.ini-dist file correspond to the builtin
  60. ; defaults (that is, if no php.ini is used, or if you delete these lines,
  61. ; the builtin defaults will be identical).


  62. ;;;;;;;;;;;;;;;;;;;;
  63. ; Language Options ;
  64. ;;;;;;;;;;;;;;;;;;;;

  65. ; Enable the PHP scripting language engine under Apache.
  66. engine = On

  67. ; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
  68. zend.ze1_compatibility_mode = Off

  69. ; Allow the <? tag.  Otherwise, only <?php and <script> tags are recognized.
  70. ; NOTE: Using short tags should be avoided when developing applications or
  71. ; libraries that are meant for redistribution, or deployment on PHP
  72. ; servers which are not under your control, because short tags may not
  73. ; be supported on the target server. For portable, redistributable code,
  74. ; be sure not to use short tags.
  75. short_open_tag = On

  76. ; Allow ASP-style <% %> tags.
  77. asp_tags = Off

  78. ; The number of significant digits displayed in floating point numbers.
  79. precision    =  12

  80. ; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
  81. y2k_compliance = On

  82. ; Output buffering allows you to send header lines (including cookies) even
  83. ; after you send body content, at the price of slowing PHP's output layer a
  84. ; bit.  You can enable output buffering during runtime by calling the output
  85. ; buffering functions.  You can also enable output buffering for all files by
  86. ; setting this directive to On.  If you wish to limit the size of the buffer
  87. ; to a certain size - you can use a maximum number of bytes instead of 'On', as
  88. ; a value for this directive (e.g., output_buffering=4096).
  89. output_buffering = Off

  90. ; You can redirect all of the output of your scripts to a function.  For
  91. ; example, if you set output_handler to "mb_output_handler", character
  92. ; encoding will be transparently converted to the specified encoding.
  93. ; Setting any output handler automatically turns on output buffering.
  94. ; Note: People who wrote portable scripts should not depend on this ini
  95. ;       directive. Instead, explicitly set the output handler using ob_start().
  96. ;       Using this ini directive may cause problems unless you know what script
  97. ;       is doing.
  98. ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
  99. ;       and you cannot use both "ob_gzhandler" and "zlib.output_compression".
  100. ; Note: output_handler must be empty if this is set 'On' !!!!
  101. ;       Instead you must use zlib.output_handler.
  102. ;output_handler =

  103. ; Transparent output compression using the zlib library
  104. ; Valid values for this option are 'off', 'on', or a specific buffer size
  105. ; to be used for compression (default is 4KB)
  106. ; Note: Resulting chunk size may vary due to nature of compression. PHP
  107. ;       outputs chunks that are few hundreds bytes each as a result of
  108. ;       compression. If you prefer a larger chunk size for better
  109. ;       performance, enable output_buffering in addition.
  110. ; Note: You need to use zlib.output_handler instead of the standard
  111. ;       output_handler, or otherwise the output will be corrupted.
  112. zlib.output_compression = Off
  113. ;zlib.output_compression_level = -1

  114. ; You cannot specify additional output handlers if zlib.output_compression
  115. ; is activated here. This setting does the same as output_handler but in
  116. ; a different order.
  117. ;zlib.output_handler =

  118. ; Implicit flush tells PHP to tell the output layer to flush itself
  119. ; automatically after every output block.  This is equivalent to calling the
  120. ; PHP function flush() after each and every call to print() or echo() and each
  121. ; and every HTML block.  Turning this option on has serious performance
  122. ; implications and is generally recommended for debugging purposes only.
  123. implicit_flush = Off

  124. ; The unserialize callback function will be called (with the undefined class'
  125. ; name as parameter), if the unserializer finds an undefined class
  126. ; which should be instantiated.
  127. ; A warning appears if the specified function is not defined, or if the
  128. ; function doesn't include/implement the missing class.
  129. ; So only set this entry, if you really want to implement such a
  130. ; callback-function.
  131. unserialize_callback_func=

  132. ; When floats & doubles are serialized store serialize_precision significant
  133. ; digits after the floating point. The default value ensures that when floats
  134. ; are decoded with unserialize, the data will remain the same.
  135. serialize_precision = 100

  136. ; Whether to enable the ability to force arguments to be passed by reference
  137. ; at function call time.  This method is deprecated and is likely to be
  138. ; unsupported in future versions of PHP/Zend.  The encouraged method of
  139. ; specifying which arguments should be passed by reference is in the function
  140. ; declaration.  You're encouraged to try and turn this option Off and make
  141. ; sure your scripts work properly with it in order to ensure they will work
  142. ; with future versions of the language (you will receive a warning each time
  143. ; you use this feature, and the argument will be passed by value instead of by
  144. ; reference).
  145. allow_call_time_pass_reference = On

  146. ;
  147. ; Safe Mode
  148. ;
  149. safe_mode = Off

  150. ; By default, Safe Mode does a UID compare check when
  151. ; opening files. If you want to relax this to a GID compare,
  152. ; then turn on safe_mode_gid.
  153. safe_mode_gid = Off

  154. ; When safe_mode is on, UID/GID checks are bypassed when
  155. ; including files from this directory and its subdirectories.
  156. ; (directory must also be in include_path or full path must
  157. ; be used when including)
  158. safe_mode_include_dir =

  159. ; When safe_mode is on, only executables located in the safe_mode_exec_dir
  160. ; will be allowed to be executed via the exec family of functions.
  161. safe_mode_exec_dir =

  162. ; Setting certain environment variables may be a potential security breach.
  163. ; This directive contains a comma-delimited list of prefixes.  In Safe Mode,
  164. ; the user may only alter environment variables whose names begin with the
  165. ; prefixes supplied here.  By default, users will only be able to set
  166. ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
  167. ;
  168. ; Note:  If this directive is empty, PHP will let the user modify ANY
  169. ; environment variable!
  170. safe_mode_allowed_env_vars = PHP_

  171. ; This directive contains a comma-delimited list of environment variables that
  172. ; the end user won't be able to change using putenv().  These variables will be
  173. ; protected even if safe_mode_allowed_env_vars is set to allow to change them.
  174. safe_mode_protected_env_vars = LD_LIBRARY_PATH

  175. ; open_basedir, if set, limits all file operations to the defined directory
  176. ; and below.  This directive makes most sense if used in a per-directory
  177. ; or per-virtualhost web server configuration file. This directive is
  178. ; *NOT* affected by whether Safe Mode is turned On or Off.
  179. ;open_basedir =

  180. ; This directive allows you to disable certain functions for security reasons.
  181. ; It receives a comma-delimited list of function names. This directive is
  182. ; *NOT* affected by whether Safe Mode is turned On or Off.
  183. disable_functions =

  184. ; This directive allows you to disable certain classes for security reasons.
  185. ; It receives a comma-delimited list of class names. This directive is
  186. ; *NOT* affected by whether Safe Mode is turned On or Off.
  187. disable_classes =

  188. ; Colors for Syntax Highlighting mode.  Anything that's acceptable in
  189. ; <span style="color: ???????"> would work.
  190. ;highlight.string  = #DD0000
  191. ;highlight.comment = #FF9900
  192. ;highlight.keyword = #007700
  193. ;highlight.bg      = #FFFFFF
  194. ;highlight.default = #0000BB
  195. ;highlight.html    = #000000

  196. ; If enabled, the request will be allowed to complete even if the user aborts
  197. ; the request. Consider enabling it if executing long request, which may end up
  198. ; being interrupted by the user or a browser timing out.
  199. ; ignore_user_abort = On

  200. ; Determines the size of the realpath cache to be used by PHP. This value should
  201. ; be increased on systems where PHP opens many files to reflect the quantity of
  202. ; the file operations performed.
  203. ; realpath_cache_size=16k

  204. ; Duration of time, in seconds for which to cache realpath information for a given
  205. ; file or directory. For systems with rarely changing files, consider increasing this
  206. ; value.
  207. ; realpath_cache_ttl=120

  208. ;
  209. ; Misc
  210. ;
  211. ; Decides whether PHP may expose the fact that it is installed on the server
  212. ; (e.g. by adding its signature to the Web server header).  It is no security
  213. ; threat in any way, but it makes it possible to determine whether you use PHP
  214. ; on your server or not.
  215. expose_php = On


  216. ;;;;;;;;;;;;;;;;;;;
  217. ; Resource Limits ;
  218. ;;;;;;;;;;;;;;;;;;;

  219. max_execution_time = 30     ; Maximum execution time of each script, in seconds
  220. max_input_time = 60        ; Maximum amount of time each script may spend parsing request data
  221. memory_limit = 16M      ; Maximum amount of memory a script may consume (16MB)


  222. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  223. ; Error handling and logging ;
  224. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

  225. ; error_reporting is a bit-field.  Or each number up to get desired error
  226. ; reporting level
  227. ; E_ALL             - All errors and warnings (doesn't include E_STRICT)
  228. ; E_ERROR           - fatal run-time errors
  229. ; E_RECOVERABLE_ERROR  - almost fatal run-time errors
  230. ; E_WARNING         - run-time warnings (non-fatal errors)
  231. ; E_PARSE           - compile-time parse errors
  232. ; E_NOTICE          - run-time notices (these are warnings which often result
  233. ;                     from a bug in your code, but it's possible that it was
  234. ;                     intentional (e.g., using an uninitialized variable and
  235. ;                     relying on the fact it's automatically initialized to an
  236. ;                     empty string)
  237. ; E_STRICT          - run-time notices, enable to have PHP suggest changes
  238. ;                     to your code which will ensure the best interoperability
  239. ;                     and forward compatibility of your code
  240. ; E_CORE_ERROR      - fatal errors that occur during PHP's initial startup
  241. ; E_CORE_WARNING    - warnings (non-fatal errors) that occur during PHP's
  242. ;                     initial startup
  243. ; E_COMPILE_ERROR   - fatal compile-time errors
  244. ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
  245. ; E_USER_ERROR      - user-generated error message
  246. ; E_USER_WARNING    - user-generated warning message
  247. ; E_USER_NOTICE     - user-generated notice message
  248. ;
  249. ; Examples:
  250. ;
  251. ;   - Show all errors, except for notices and coding standards warnings
  252. ;
  253. ;error_reporting = E_ALL & ~E_NOTICE
  254. ;
  255. ;   - Show all errors, except for notices
  256. ;
  257. ;error_reporting = E_ALL & ~E_NOTICE | E_STRICT
  258. ;
  259. ;   - Show only errors
  260. ;
  261. ;error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR
  262. ;
  263. ;   - Show all errors except for notices and coding standards warnings
  264. ;
  265. error_reporting  =  E_ALL & ~E_NOTICE

  266. ; Print out errors (as a part of the output).  For production web sites,
  267. ; you're strongly encouraged to turn this feature off, and use error logging
  268. ; instead (see below).  Keeping display_errors enabled on a production web site
  269. ; may reveal security information to end users, such as file paths on your Web
  270. ; server, your database schema or other information.
  271. display_errors = On

  272. ; Even when display_errors is on, errors that occur during PHP's startup
  273. ; sequence are not displayed.  It's strongly recommended to keep
  274. ; display_startup_errors off, except for when debugging.
  275. display_startup_errors = Off

  276. ; Log errors into a log file (server-specific log, stderr, or error_log (below))
  277. ; As stated above, you're strongly advised to use error logging in place of
  278. ; error displaying on production web sites.
  279. log_errors = Off

  280. ; Set maximum length of log_errors. In error_log information about the source is
  281. ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
  282. log_errors_max_len = 1024

  283. ; Do not log repeated messages. Repeated errors must occur in same file on same
  284. ; line until ignore_repeated_source is set true.
  285. ignore_repeated_errors = Off

  286. ; Ignore source of message when ignoring repeated messages. When this setting
  287. ; is On you will not log errors with repeated messages from different files or
  288. ; source lines.
  289. ignore_repeated_source = Off

  290. ; If this parameter is set to Off, then memory leaks will not be shown (on
  291. ; stdout or in the log). This has only effect in a debug compile, and if
  292. ; error reporting includes E_WARNING in the allowed list
  293. report_memleaks = On

  294. ;report_zend_debug = 0

  295. ; Store the last error/warning message in $php_errormsg (boolean).
  296. track_errors = Off

  297. ; Disable the inclusion of HTML tags in error messages.
  298. ; Note: Never use this feature for production boxes.
  299. ;html_errors = Off

  300. ; If html_errors is set On PHP produces clickable error messages that direct
  301. ; to a page describing the error or function causing the error in detail.
  302. ; You can download a copy of the PHP manual from [url]http://www.php.net/docs.php[/url]
  303. ; and change docref_root to the base URL of your local copy including the
  304. ; leading '/'. You must also specify the file extension being used including
  305. ; the dot.
  306. ; Note: Never use this feature for production boxes.
  307. ;docref_root = "/phpmanual/"
  308. ;docref_ext = .html

  309. ; String to output before an error message.
  310. ;error_prepend_string = "<font color=ff0000>"

  311. ; String to output after an error message.
  312. ;error_append_string = "</font>"

  313. ; Log errors to specified file.
  314. ;error_log = filename

  315. ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
  316. ;error_log = syslog


  317. ;;;;;;;;;;;;;;;;;
  318. ; Data Handling ;
  319. ;;;;;;;;;;;;;;;;;
  320. ;
  321. ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3

  322. ; The separator used in PHP generated URLs to separate arguments.
  323. ; Default is "&".
  324. ;arg_separator.output = "&amp;"

  325. ; List of separator(s) used by PHP to parse input URLs into variables.
  326. ; Default is "&".
  327. ; NOTE: Every character in this directive is considered as separator!
  328. ;arg_separator.input = ";&"

  329. ; This directive describes the order in which PHP registers GET, POST, Cookie,
  330. ; Environment and Built-in variables (G, P, C, E & S respectively, often
  331. ; referred to as EGPCS or GPC).  Registration is done from left to right, newer
  332. ; values override older values.
  333. variables_order = "EGPCS"

  334. ; Whether or not to register the EGPCS variables as global variables.  You may
  335. ; want to turn this off if you don't want to clutter your scripts' global scope
  336. ; with user data.  This makes most sense when coupled with track_vars - in which
  337. ; case you can access all of the GPC variables through the $HTTP_*_VARS[],
  338. ; variables.
  339. ;
  340. ; You should do your best to write your scripts so that they do not require
  341. ; register_globals to be on;  Using form variables as globals can easily lead
  342. ; to possible security problems, if the code is not very well thought of.
  343. register_globals = Off

  344. ; Whether or not to register the old-style input arrays, HTTP_GET_VARS
  345. ; and friends.  If you're not using them, it's recommended to turn them off,
  346. ; for performance reasons.
  347. register_long_arrays = On

  348. ; This directive tells PHP whether to declare the argv&argc variables (that
  349. ; would contain the GET information).  If you don't use these variables, you
  350. ; should turn it off for increased performance.
  351. register_argc_argv = On

  352. ; When enabled, the SERVER and ENV variables are created when they're first
  353. ; used (Just In Time) instead of when the script starts. If these variables
  354. ; are not used within a script, having this directive on will result in a
  355. ; performance gain. The PHP directives register_globals, register_long_arrays,
  356. ; and register_argc_argv must be disabled for this directive to have any affect.
  357. auto_globals_jit = On

  358. ; Maximum size of POST data that PHP will accept.
  359. post_max_size = 8M

  360. ; Magic quotes
  361. ;

  362. ; Magic quotes for incoming GET/POST/Cookie data.
  363. magic_quotes_gpc = On

  364. ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
  365. magic_quotes_runtime = Off

  366. ; Use Sybase-style magic quotes (escape ' with '' instead of \').
  367. magic_quotes_sybase = Off

  368. ; Automatically add files before or after any PHP document.
  369. auto_prepend_file =
  370. auto_append_file =

  371. ; As of 4.0b4, PHP always outputs a character encoding by default in
  372. ; the Content-type: header.  To disable sending of the charset, simply
  373. ; set it to be empty.
  374. ;
  375. ; PHP's built-in default is text/html
  376. default_mimetype = "text/html"
  377. ;default_charset = "iso-8859-1"

  378. ; Always populate the $HTTP_RAW_POST_DATA variable.
  379. ;always_populate_raw_post_data = On


  380. ;;;;;;;;;;;;;;;;;;;;;;;;;
  381. ; Paths and Directories ;
  382. ;;;;;;;;;;;;;;;;;;;;;;;;;

  383. ; UNIX: "/path1:/path2"
  384. ;include_path = ".:/php/includes"
  385. ;
  386. ; Windows: "\path1;\path2"
  387. ;include_path = ".;c:\php\includes"

  388. ; The root of the PHP pages, used only if nonempty.
  389. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
  390. ; if you are running php as a CGI under any web server (other than IIS)
  391. ; see documentation for security issues.  The alternate is to use the
  392. ; cgi.force_redirect configuration below
  393. doc_root =

  394. ; The directory under which PHP opens the script using /~username used only
  395. ; if nonempty.
  396. user_dir =

  397. ; Directory in which the loadable extensions (modules) reside.
  398. extension_dir = "C:\PHP5\ext"

  399. ; Whether or not to enable the dl() function.  The dl() function does NOT work
  400. ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
  401. ; disabled on them.
  402. enable_dl = On

  403. ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
  404. ; most web servers.  Left undefined, PHP turns this on by default.  You can
  405. ; turn it off here AT YOUR OWN RISK
  406. ; **You CAN safely turn this off for IIS, in fact, you MUST.**
  407. ; cgi.force_redirect = 1

  408. ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
  409. ; every request.
  410. ; cgi.nph = 1

  411. ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
  412. ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
  413. ; will look for to know it is OK to continue execution.  Setting this variable MAY
  414. ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
  415. ; cgi.redirect_status_env = ;

  416. ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
  417. ; security tokens of the calling client.  This allows IIS to define the
  418. ; security context that the request runs under.  mod_fastcgi under Apache
  419. ; does not currently support this feature (03/17/2002)
  420. ; Set to 1 if running under IIS.  Default is zero.
  421. ; fastcgi.impersonate = 1;

  422. ; Disable logging through FastCGI connection
  423. ; fastcgi.log = 0

  424. ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
  425. ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
  426. ; is supported by Apache. When this option is set to 1 PHP will send
  427. ; RFC2616 compliant header.
  428. ; Default is zero.
  429. ;cgi.rfc2616_headers = 0


  430. ;;;;;;;;;;;;;;;;
  431. ; File Uploads ;
  432. ;;;;;;;;;;;;;;;;

  433. ; Whether to allow HTTP file uploads.
  434. file_uploads = On

  435. ; Temporary directory for HTTP uploaded files (will use system default if not
  436. ; specified).
  437. ;upload_tmp_dir =

  438. ; Maximum allowed size for uploaded files.
  439. upload_max_filesize = 2M


  440. ;;;;;;;;;;;;;;;;;;
  441. ; Fopen wrappers ;
  442. ;;;;;;;;;;;;;;;;;;

  443. ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
  444. allow_url_fopen = On

  445. ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
  446. allow_url_include = Off

  447. ; Define the anonymous ftp password (your email address)
  448. ;from="john@doe.com"

  449. ; Define the User-Agent string
  450. ; user_agent="PHP"

  451. ; Default timeout for socket based streams (seconds)
  452. default_socket_timeout = 60

  453. ; If your scripts have to deal with files from Macintosh systems,
  454. ; or you are running on a Mac and need to deal with files from
  455. ; unix or win32 systems, setting this flag will cause PHP to
  456. ; automatically detect the EOL character in those files so that
  457. ; fgets() and file() will work regardless of the source of the file.
  458. ; auto_detect_line_endings = Off


  459. ;;;;;;;;;;;;;;;;;;;;;;
  460. ; Dynamic Extensions ;
  461. ;;;;;;;;;;;;;;;;;;;;;;
  462. ;
  463. ; If you wish to have an extension loaded automatically, use the following
  464. ; syntax:
  465. ;
  466. ;   extension=modulename.extension
  467. ;
  468. ; For example, on Windows:
  469. ;
  470. ;   extension=msql.dll
  471. ;
  472. ; ... or under UNIX:
  473. ;
  474. ;   extension=msql.so
  475. ;
  476. ; Note that it should be the name of the module only; no directory information
  477. ; needs to go here.  Specify the location of the extension with the
  478. ; extension_dir directive above.


  479. ; Windows Extensions
  480. ; Note that ODBC support is built in, so no dll is needed for it.
  481. ; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5)
  482. ; extension folders as well as the separate PECL DLL download (PHP 5).
  483. ; Be sure to appropriately set the extension_dir directive.

  484. extension=php_mbstring.dll
  485. ;extension=php_bz2.dll
  486. ;extension=php_curl.dll
  487. ;extension=php_dba.dll
  488. ;extension=php_dbase.dll
  489. ;extension=php_exif.dll
  490. ;extension=php_fdf.dll
  491. ;extension=php_filepro.dll
  492. extension=php_gd2.dll
  493. ;extension=php_gettext.dll
  494. ;extension=php_ifx.dll
  495. ;extension=php_imap.dll
  496. ;extension=php_interbase.dll
  497. ;extension=php_ldap.dll
  498. ;extension=php_mcrypt.dll
  499. ;extension=php_mhash.dll
  500. ;extension=php_mime_magic.dll
  501. ;extension=php_ming.dll
  502. ;extension=php_mssql.dll
  503. ;extension=php_msql.dll
  504. extension=php_mysql.dll
  505. ;extension=php_oci8.dll
  506. ;extension=php_openssl.dll
  507. ;extension=php_oracle.dll
  508. ;extension=php_pgsql.dll
  509. ;extension=php_shmop.dll
  510. ;extension=php_snmp.dll
  511. ;extension=php_sockets.dll
  512. ;extension=php_sqlite.dll
  513. ;extension=php_sybase_ct.dll
  514. ;extension=php_tidy.dll
  515. ;extension=php_xmlrpc.dll
  516. ;extension=php_xsl.dll


  517. ;;;;;;;;;;;;;;;;;;;
  518. ; Module Settings ;
  519. ;;;;;;;;;;;;;;;;;;;

  520. [Date]
  521. ; Defines the default timezone used by the date functions
  522. ;date.timezone =

  523. ;date.default_latitude = 31.7667
  524. ;date.default_longitude = 35.2333

  525. ;date.sunrise_zenith = 90.583333
  526. ;date.sunset_zenith = 90.583333

  527. [filter]
  528. ;filter.default = unsafe_raw
  529. ;filter.default_flags =

  530. [iconv]
  531. ;iconv.input_encoding = ISO-8859-1
  532. ;iconv.internal_encoding = ISO-8859-1
  533. ;iconv.output_encoding = ISO-8859-1

  534. [sqlite]
  535. ;sqlite.assoc_case = 0

  536. [xmlrpc]
  537. ;xmlrpc_error_number = 0
  538. ;xmlrpc_errors = 0

  539. [Pcre]
  540. ;pcre.recursion_limit=100000
  541. ;pcre.backtrack_limit=100000

  542. [Syslog]
  543. ; Whether or not to define the various syslog variables (e.g. $LOG_PID,
  544. ; $LOG_CRON, etc.).  Turning it off is a good idea performance-wise.  In
  545. ; runtime, you can define these variables by calling define_syslog_variables().
  546. define_syslog_variables  = Off

  547. [mail function]
  548. ; For Win32 only.
  549. SMTP = localhost
  550. smtp_port = 25

  551. ; For Win32 only.
  552. ;sendmail_from = [email]me@example.com[/email]

  553. ; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
  554. ;sendmail_path =

  555. ; Force the addition of the specified parameters to be passed as extra parameters
  556. ; to the sendmail binary. These parameters will always replace the value of
  557. ; the 5th parameter to mail(), even in safe mode.
  558. ;mail.force_extra_parameters =

  559. [SQL]
  560. sql.safe_mode = Off

  561. [ODBC]
  562. ;odbc.default_db    =  Not yet implemented
  563. ;odbc.default_user  =  Not yet implemented
  564. ;odbc.default_pw    =  Not yet implemented

  565. ; Allow or prevent persistent links.
  566. odbc.allow_persistent = On

  567. ; Check that a connection is still valid before reuse.
  568. odbc.check_persistent = On

  569. ; Maximum number of persistent links.  -1 means no limit.
  570. odbc.max_persistent = -1

  571. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  572. odbc.max_links = -1

  573. ; Handling of LONG fields.  Returns number of bytes to variables.  0 means
  574. ; passthru.
  575. odbc.defaultlrl = 4096

  576. ; Handling of binary data.  0 means passthru, 1 return as is, 2 convert to char.
  577. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
  578. ; of uodbc.defaultlrl and uodbc.defaultbinmode
  579. odbc.defaultbinmode = 1

  580. [MySQL]
  581. ; Allow or prevent persistent links.
  582. mysql.allow_persistent = On

  583. ; Maximum number of persistent links.  -1 means no limit.
  584. mysql.max_persistent = -1

  585. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  586. mysql.max_links = -1

  587. ; Default port number for mysql_connect().  If unset, mysql_connect() will use
  588. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  589. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  590. ; at MYSQL_PORT.
  591. mysql.default_port =

  592. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  593. ; MySQL defaults.
  594. mysql.default_socket =

  595. ; Default host for mysql_connect() (doesn't apply in safe mode).
  596. mysql.default_host =

  597. ; Default user for mysql_connect() (doesn't apply in safe mode).
  598. mysql.default_user =

  599. ; Default password for mysql_connect() (doesn't apply in safe mode).
  600. ; Note that this is generally a *bad* idea to store passwords in this file.
  601. ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
  602. ; and reveal this password!  And of course, any users with read access to this
  603. ; file will be able to reveal the password as well.
  604. mysql.default_password =

  605. ; Maximum time (in seconds) for connect timeout. -1 means no limit
  606. mysql.connect_timeout = 60

  607. ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
  608. ; SQL-Errors will be displayed.
  609. mysql.trace_mode = Off

  610. [MySQLi]

  611. ; Maximum number of links.  -1 means no limit.
  612. mysqli.max_links = -1

  613. ; Default port number for mysqli_connect().  If unset, mysqli_connect() will use
  614. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  615. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  616. ; at MYSQL_PORT.
  617. mysqli.default_port = 3306

  618. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  619. ; MySQL defaults.
  620. mysqli.default_socket =

  621. ; Default host for mysql_connect() (doesn't apply in safe mode).
  622. mysqli.default_host =

  623. ; Default user for mysql_connect() (doesn't apply in safe mode).
  624. mysqli.default_user =

  625. ; Default password for mysqli_connect() (doesn't apply in safe mode).
  626. ; Note that this is generally a *bad* idea to store passwords in this file.
  627. ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
  628. ; and reveal this password!  And of course, any users with read access to this
  629. ; file will be able to reveal the password as well.
  630. mysqli.default_pw =

  631. ; Allow or prevent reconnect
  632. mysqli.reconnect = Off

  633. [mSQL]
  634. ; Allow or prevent persistent links.
  635. msql.allow_persistent = On

  636. ; Maximum number of persistent links.  -1 means no limit.
  637. msql.max_persistent = -1

  638. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  639. msql.max_links = -1

  640. [PostgresSQL]
  641. ; Allow or prevent persistent links.
  642. pgsql.allow_persistent = On

  643. ; Detect broken persistent links always with pg_pconnect().
  644. ; Auto reset feature requires a little overheads.
  645. pgsql.auto_reset_persistent = Off

  646. ; Maximum number of persistent links.  -1 means no limit.
  647. pgsql.max_persistent = -1

  648. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  649. pgsql.max_links = -1

  650. ; Ignore PostgreSQL backends Notice message or not.
  651. ; Notice message logging require a little overheads.
  652. pgsql.ignore_notice = 0

  653. ; Log PostgreSQL backends Noitce message or not.
  654. ; Unless pgsql.ignore_notice=0, module cannot log notice message.
  655. pgsql.log_notice = 0

  656. [Sybase]
  657. ; Allow or prevent persistent links.
  658. sybase.allow_persistent = On

  659. ; Maximum number of persistent links.  -1 means no limit.
  660. sybase.max_persistent = -1

  661. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  662. sybase.max_links = -1

  663. ;sybase.interface_file = "/usr/sybase/interfaces"

  664. ; Minimum error severity to display.
  665. sybase.min_error_severity = 10

  666. ; Minimum message severity to display.
  667. sybase.min_message_severity = 10

  668. ; Compatibility mode with old versions of PHP 3.0.
  669. ; If on, this will cause PHP to automatically assign types to results according
  670. ; to their Sybase type, instead of treating them all as strings.  This
  671. ; compatibility mode will probably not stay around forever, so try applying
  672. ; whatever necessary changes to your code, and turn it off.
  673. sybase.compatability_mode = Off

  674. [Sybase-CT]
  675. ; Allow or prevent persistent links.
  676. sybct.allow_persistent = On

  677. ; Maximum number of persistent links.  -1 means no limit.
  678. sybct.max_persistent = -1

  679. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  680. sybct.max_links = -1

  681. ; Minimum server message severity to display.
  682. sybct.min_server_severity = 10

  683. ; Minimum client message severity to display.
  684. sybct.min_client_severity = 10

  685. [bcmath]
  686. ; Number of decimal digits for all bcmath functions.
  687. bcmath.scale = 0

  688. [browscap]
  689. ;browscap = extra/browscap.ini

  690. [Informix]
  691. ; Default host for ifx_connect() (doesn't apply in safe mode).
  692. ifx.default_host =

  693. ; Default user for ifx_connect() (doesn't apply in safe mode).
  694. ifx.default_user =

  695. ; Default password for ifx_connect() (doesn't apply in safe mode).
  696. ifx.default_password =

  697. ; Allow or prevent persistent links.
  698. ifx.allow_persistent = On

  699. ; Maximum number of persistent links.  -1 means no limit.
  700. ifx.max_persistent = -1

  701. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  702. ifx.max_links = -1

  703. ; If on, select statements return the contents of a text blob instead of its id.
  704. ifx.textasvarchar = 0

  705. ; If on, select statements return the contents of a byte blob instead of its id.
  706. ifx.byteasvarchar = 0

  707. ; Trailing blanks are stripped from fixed-length char columns.  May help the
  708. ; life of Informix SE users.
  709. ifx.charasvarchar = 0

  710. ; If on, the contents of text and byte blobs are dumped to a file instead of
  711. ; keeping them in memory.
  712. ifx.blobinfile = 0

  713. ; NULL's are returned as empty strings, unless this is set to 1.  In that case,
  714. ; NULL's are returned as string 'NULL'.
  715. ifx.nullformat = 0

  716. [Session]
  717. ; Handler used to store/retrieve data.
  718. session.save_handler = files

  719. ; Argument passed to save_handler.  In the case of files, this is the path
  720. ; where data files are stored. Note: Windows users have to change this
  721. ; variable in order to use PHP's session functions.
  722. ;
  723. ; As of PHP 4.0.1, you can define the path as:
  724. ;
  725. ;     session.save_path = "N;/path"
  726. ;
  727. ; where N is an integer.  Instead of storing all the session files in
  728. ; /path, what this will do is use subdirectories N-levels deep, and
  729. ; store the session data in those directories.  This is useful if you
  730. ; or your OS have problems with lots of files in one directory, and is
  731. ; a more efficient layout for servers that handle lots of sessions.
  732. ;
  733. ; NOTE 1: PHP will not create this directory structure automatically.
  734. ;         You can use the script in the ext/session dir for that purpose.
  735. ; NOTE 2: See the section on garbage collection below if you choose to
  736. ;         use subdirectories for session storage
  737. ;
  738. ; The file storage module creates files using mode 600 by default.
  739. ; You can change that by using
  740. ;
  741. ;     session.save_path = "N;MODE;/path"
  742. ;
  743. ; where MODE is the octal representation of the mode. Note that this
  744. ; does not overwrite the process's umask.
  745. ;session.save_path = "/tmp"

  746. ; Whether to use cookies.
  747. session.use_cookies = 1

  748. ;session.cookie_secure =

  749. ; This option enables administrators to make their users invulnerable to
  750. ; attacks which involve passing session ids in URLs; defaults to 0.
  751. ; session.use_only_cookies = 1

  752. ; Name of the session (used as cookie name).
  753. session.name = PHPSESSID

  754. ; Initialize session on request startup.
  755. session.auto_start = 0

  756. ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
  757. session.cookie_lifetime = 0

  758. ; The path for which the cookie is valid.
  759. session.cookie_path = /

  760. ; The domain for which the cookie is valid.
  761. session.cookie_domain =

  762. ; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
  763. session.cookie_httponly =

  764. ; Handler used to serialize data.  php is the standard serializer of PHP.
  765. session.serialize_handler = php

  766. ; Define the probability that the 'garbage collection' process is started
  767. ; on every session initialization.
  768. ; The probability is calculated by using gc_probability/gc_divisor,
  769. ; e.g. 1/100 means there is a 1% chance that the GC process starts
  770. ; on each request.

  771. session.gc_probability = 1
  772. session.gc_divisor     = 100

  773. ; After this number of seconds, stored data will be seen as 'garbage' and
  774. ; cleaned up by the garbage collection process.
  775. session.gc_maxlifetime = 1440

  776. ; NOTE: If you are using the subdirectory option for storing session files
  777. ;       (see session.save_path above), then garbage collection does *not*
  778. ;       happen automatically.  You will need to do your own garbage
  779. ;       collection through a shell script, cron entry, or some other method.
  780. ;       For example, the following script would is the equivalent of
  781. ;       setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
  782. ;          cd /path/to/sessions; find -cmin +24 | xargs rm

  783. ; PHP 4.2 and less have an undocumented feature/bug that allows you to
  784. ; to initialize a session variable in the global scope, albeit register_globals
  785. ; is disabled.  PHP 4.3 and later will warn you, if this feature is used.
  786. ; You can disable the feature and the warning separately. At this time,
  787. ; the warning is only displayed, if bug_compat_42 is enabled.

  788. session.bug_compat_42 = 1
  789. session.bug_compat_warn = 1

  790. ; Check HTTP Referer to invalidate externally stored URLs containing ids.
  791. ; HTTP_REFERER has to contain this substring for the session to be
  792. ; considered as valid.
  793. session.referer_check =

  794. ; How many bytes to read from the file.
  795. session.entropy_length = 0

  796. ; Specified here to create the session id.
  797. session.entropy_file =

  798. ;session.entropy_length = 16

  799. ;session.entropy_file = /dev/urandom

  800. ; Set to {nocache,private,public,} to determine HTTP caching aspects
  801. ; or leave this empty to avoid sending anti-caching headers.
  802. session.cache_limiter = nocache

  803. ; Document expires after n minutes.
  804. session.cache_expire = 180

  805. ; trans sid support is disabled by default.
  806. ; Use of trans sid may risk your users security.
  807. ; Use this option with caution.
  808. ; - User may send URL contains active session ID
  809. ;   to other person via. email/irc/etc.
  810. ; - URL that contains active session ID may be stored
  811. ;   in publically accessible computer.
  812. ; - User may access your site with the same session ID
  813. ;   always using URL stored in browser's history or bookmarks.
  814. session.use_trans_sid = 0

  815. ; Select a hash function
  816. ; 0: MD5   (128 bits)
  817. ; 1: SHA-1 (160 bits)
  818. session.hash_function = 0

  819. ; Define how many bits are stored in each character when converting
  820. ; the binary hash data to something readable.
  821. ;
  822. ; 4 bits: 0-9, a-f
  823. ; 5 bits: 0-9, a-v
  824. ; 6 bits: 0-9, a-z, A-Z, "-", ","
  825. session.hash_bits_per_character = 4

  826. ; The URL rewriter will look for URLs in a defined set of HTML tags.
  827. ; form/fieldset are special; if you include them here, the rewriter will
  828. ; add a hidden <input> field with the info which is otherwise appended
  829. ; to URLs.  If you want XHTML conformity, remove the form entry.
  830. ; Note that all valid entries require a "=", even if no value follows.
  831. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset="

  832. [MSSQL]
  833. ; Allow or prevent persistent links.
  834. mssql.allow_persistent = On

  835. ; Maximum number of persistent links.  -1 means no limit.
  836. mssql.max_persistent = -1

  837. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  838. mssql.max_links = -1

  839. ; Minimum error severity to display.
  840. mssql.min_error_severity = 10

  841. ; Minimum message severity to display.
  842. mssql.min_message_severity = 10

  843. ; Compatibility mode with old versions of PHP 3.0.
  844. mssql.compatability_mode = Off

  845. ; Connect timeout
  846. ;mssql.connect_timeout = 5

  847. ; Query timeout
  848. ;mssql.timeout = 60

  849. ; Valid range 0 - 2147483647.  Default = 4096.
  850. ;mssql.textlimit = 4096

  851. ; Valid range 0 - 2147483647.  Default = 4096.
  852. ;mssql.textsize = 4096

  853. ; Limits the number of records in each batch.  0 = all records in one batch.
  854. ;mssql.batchsize = 0

  855. ; Specify how datetime and datetim4 columns are returned
  856. ; On => Returns data converted to SQL server settings
  857. ; Off => Returns values as YYYY-MM-DD hh:mm:ss
  858. ;mssql.datetimeconvert = On

  859. ; Use NT authentication when connecting to the server
  860. mssql.secure_connection = Off

  861. ; Specify max number of processes. -1 = library default
  862. ; msdlib defaults to 25
  863. ; FreeTDS defaults to 4096
  864. ;mssql.max_procs = -1

  865. ; Specify client character set.
  866. ; If empty or not set the client charset from freetds.comf is used
  867. ; This is only used when compiled with FreeTDS
  868. ;mssql.charset = "ISO-8859-1"

  869. [Assertion]
  870. ; Assert(expr); active by default.
  871. ;assert.active = On

  872. ; Issue a PHP warning for each failed assertion.
  873. ;assert.warning = On

  874. ; Don't bail out by default.
  875. ;assert.bail = Off

  876. ; User-function to be called if an assertion fails.
  877. ;assert.callback = 0

  878. ; Eval the expression with current error_reporting().  Set to true if you want
  879. ; error_reporting(0) around the eval().
  880. ;assert.quiet_eval = 0

  881. [COM]
  882. ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
  883. ;com.typelib_file =
  884. ; allow Distributed-COM calls
  885. ;com.allow_dcom = true
  886. ; autoregister constants of a components typlib on com_load()
  887. ;com.autoregister_typelib = true
  888. ; register constants casesensitive
  889. ;com.autoregister_casesensitive = false
  890. ; show warnings on duplicate constant registrations
  891. ;com.autoregister_verbose = true

  892. [mbstring]
  893. ; language for internal character representation.
  894. ;mbstring.language = Japanese

  895. ; internal/script encoding.
  896. ; Some encoding cannot work as internal encoding.
  897. ; (e.g. SJIS, BIG5, ISO-2022-*)
  898. ;mbstring.internal_encoding = EUC-JP

  899. ; http input encoding.
  900. ;mbstring.http_input = auto

  901. ; http output encoding. mb_output_handler must be
  902. ; registered as output buffer to function
  903. ;mbstring.http_output = SJIS

  904. ; enable automatic encoding translation according to
  905. ; mbstring.internal_encoding setting. Input chars are
  906. ; converted to internal encoding by setting this to On.
  907. ; Note: Do _not_ use automatic encoding translation for
  908. ;       portable libs/applications.
  909. ;mbstring.encoding_translation = Off

  910. ; automatic encoding detection order.
  911. ; auto means
  912. ;mbstring.detect_order = auto

  913. ; substitute_character used when character cannot be converted
  914. ; one from another
  915. ;mbstring.substitute_character = none;

  916. ; overload(replace) single byte functions by mbstring functions.
  917. ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
  918. ; etc. Possible values are 0,1,2,4 or combination of them.
  919. ; For example, 7 for overload everything.
  920. ; 0: No overload
  921. ; 1: Overload mail() function
  922. ; 2: Overload str*() functions
  923. ; 4: Overload ereg*() functions
  924. ;mbstring.func_overload = 0

  925. [FrontBase]
  926. ;fbsql.allow_persistent = On
  927. ;fbsql.autocommit = On
  928. ;fbsql.show_timestamp_decimals = Off
  929. ;fbsql.default_database =
  930. ;fbsql.default_database_password =
  931. ;fbsql.default_host =
  932. ;fbsql.default_password =
  933. ;fbsql.default_user = "_SYSTEM"
  934. ;fbsql.generate_warnings = Off
  935. ;fbsql.max_connections = 128
  936. ;fbsql.max_links = 128
  937. ;fbsql.max_persistent = -1
  938. ;fbsql.max_results = 128

  939. [gd]
  940. ; Tell the jpeg decode to libjpeg warnings and try to create
  941. ; a gd image. The warning will then be displayed as notices
  942. ; disabled by default
  943. ;gd.jpeg_ignore_warning = 0

  944. [exif]
  945. ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
  946. ; With mbstring support this will automatically be converted into the encoding
  947. ; given by corresponding encode setting. When empty mbstring.internal_encoding
  948. ; is used. For the decode settings you can distinguish between motorola and
  949. ; intel byte order. A decode setting cannot be empty.
  950. ;exif.encode_unicode = ISO-8859-15
  951. ;exif.decode_unicode_motorola = UCS-2BE
  952. ;exif.decode_unicode_intel    = UCS-2LE
  953. ;exif.encode_jis =
  954. ;exif.decode_jis_motorola = JIS
  955. ;exif.decode_jis_intel    = JIS

  956. [Tidy]
  957. ; The path to a default tidy configuration file to use when using tidy
  958. ;tidy.default_config = /usr/local/lib/php/default.tcfg

  959. ; Should tidy clean and repair output automatically?
  960. ; WARNING: Do not use this option if you are generating non-html content
  961. ; such as dynamic images
  962. tidy.clean_output = Off

  963. [soap]
  964. ; Enables or disables WSDL caching feature.
  965. soap.wsdl_cache_enabled=1
  966. ; Sets the directory name where SOAP extension will put cache files.
  967. soap.wsdl_cache_dir="/tmp"
  968. ; (time to live) Sets the number of second while cached file will be used
  969. ; instead of original one.
  970. soap.wsdl_cache_ttl=86400

  971. ; Local Variables:
  972. ; tab-width: 4
  973. ; End:
复制代码
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2025-11-21 21:55 , Processed in 0.094145 second(s), 14 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表