sample-php.ini 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494
  1. [PHP]
  2. ;;;;;;;;;;;;;;;;;;;
  3. ; About this file ;
  4. ;;;;;;;;;;;;;;;;;;;
  5. ; This file controls many aspects of PHP's behavior. In order for PHP to
  6. ; read it, it must be named 'php.ini'. PHP looks for it in the current
  7. ; working directory, in the path designated by the environment variable
  8. ; PHPRC, and in the path that was defined in compile time (in that order).
  9. ; Under Windows, the compile-time path is the Windows directory. The
  10. ; path in which the php.ini file is looked for can be overriden using
  11. ; the -c argument in command line mode.
  12. ;
  13. ; The syntax of the file is extremely simple. Whitespace and Lines
  14. ; beginning with a semicolon are silently ignored (as you probably guessed).
  15. ; Section headers (e.g. [Foo]) are also silently ignored, even though
  16. ; they might mean something in the future.
  17. ;
  18. ; Directives are specified using the following syntax:
  19. ; directive = value
  20. ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
  21. ;
  22. ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
  23. ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
  24. ; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo").
  25. ;
  26. ; Expressions in the INI file are limited to bitwise operators and parentheses:
  27. ; | bitwise OR
  28. ; & bitwise AND
  29. ; ~ bitwise NOT
  30. ; ! boolean NOT
  31. ;
  32. ; Boolean flags can be turned on using the values 1, On, True or Yes.
  33. ; They can be turned off using the values 0, Off, False or No.
  34. ;
  35. ; An empty string can be denoted by simply not writing anything after the equal
  36. ; sign, or by using the None keyword:
  37. ;
  38. ; foo = ; sets foo to an empty string
  39. ; foo = none ; sets foo to an empty string
  40. ; foo = "none" ; sets foo to the string 'none'
  41. ;
  42. ; If you use constants in your value, and these constants belong to a dynamically
  43. ; loaded extension (either a PHP extension or a Zend extension), you may only
  44. ; use these constants *after* the line that loads the extension.
  45. ;
  46. ; All the values in the php.ini-dist file correspond to the builtin
  47. ; defaults (that is, if no php.ini is used, or if you delete these lines,
  48. ; the builtin defaults will be identical).
  49. ;;;;;;;;;;;;;;;;;;;;
  50. ; Language Options ;
  51. ;;;;;;;;;;;;;;;;;;;;
  52. engine = On ; Enable the PHP scripting language engine under Apache
  53. short_open_tag = On ; allow the <? tag. otherwise, only <?php and <script> tags are recognized.
  54. asp_tags = Off ; allow ASP-style <% %> tags
  55. precision = 14 ; number of significant digits displayed in floating point numbers
  56. y2k_compliance = Off ; whether to be year 2000 compliant (will cause problems with non y2k compliant browsers)
  57. output_buffering = Off ; Output buffering allows you to send header lines (including cookies)
  58. ; even after you send body content, in the price of slowing PHP's
  59. ; output layer a bit.
  60. ; You can enable output buffering by in runtime by calling the output
  61. ; buffering functions, or enable output buffering for all files
  62. ; by setting this directive to On.
  63. implicit_flush = Off ; Implicit flush tells PHP to tell the output layer to flush itself
  64. ; automatically after every output block. This is equivalent to
  65. ; calling the PHP function flush() after each and every call to print()
  66. ; or echo() and each and every HTML block.
  67. ; Turning this option on has serious performance implications, and
  68. ; is generally recommended for debugging purposes only.
  69. allow_call_time_pass_reference = On ; whether to enable the ability to force arguments to be
  70. ; passed by reference at function-call time. This method
  71. ; is deprecated, and is likely to be unsupported in future
  72. ; versions of PHP/Zend. The encouraged method of specifying
  73. ; which arguments should be passed by reference is in the
  74. ; function declaration. You're encouraged to try and
  75. ; turn this option Off, and make sure your scripts work
  76. ; properly with it, to ensure they will work with future
  77. ; versions of the language (you will receive a warning
  78. ; each time you use this feature, and the argument will
  79. ; be passed by value instead of by reference).
  80. ; Safe Mode
  81. safe_mode = Off
  82. safe_mode_exec_dir =
  83. safe_mode_allowed_env_vars = PHP_ ; Setting certain environment variables
  84. ; may be a potential security breach.
  85. ; This directive contains a comma-delimited
  86. ; list of prefixes. In Safe Mode, the
  87. ; user may only alter environment
  88. ; variables whose names begin with the
  89. ; prefixes supplied here.
  90. ; By default, users will only be able
  91. ; to set environment variables that begin
  92. ; with PHP_ (e.g. PHP_FOO=BAR).
  93. ; Note: If this directive is empty, PHP
  94. ; will let the user modify ANY environment
  95. ; variable!
  96. safe_mode_protected_env_vars = LD_LIBRARY_PATH ; This directive contains a comma-
  97. ; delimited list of environment variables,
  98. ; that the end user won't be able to
  99. ; change using putenv().
  100. ; These variables will be protected
  101. ; even if safe_mode_allowed_env_vars is
  102. ; set to allow to change them.
  103. disable_functions = ; This directive allows you to disable certain
  104. ; functions for security reasons. It receives
  105. ; a comma separated list of function names.
  106. ; This directive is *NOT* affected by whether
  107. ; Safe Mode is turned on or off.
  108. ; Colors for Syntax Highlighting mode. Anything that's acceptable in <font color=???> would work.
  109. highlight.string = #DD0000
  110. highlight.comment = #FF8000
  111. highlight.keyword = #007700
  112. highlight.bg = #FFFFFF
  113. highlight.default = #0000BB
  114. highlight.html = #000000
  115. ; Misc
  116. expose_php = On ; Decides whether PHP may expose the fact that it is installed on the
  117. ; server (e.g., by adding its signature to the Web server header).
  118. ; It is no security threat in any way, but it makes it possible
  119. ; to determine whether you use PHP on your server or not.
  120. ;;;;;;;;;;;;;;;;;;;
  121. ; Resource Limits ;
  122. ;;;;;;;;;;;;;;;;;;;
  123. max_execution_time = 30 ; Maximum execution time of each script, in seconds
  124. memory_limit = 8M ; Maximum amount of memory a script may consume (8MB)
  125. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  126. ; Error handling and logging ;
  127. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  128. ; error_reporting is a bit-field. Or each number up to get desired error reporting level
  129. ; E_ALL - All errors and warnings
  130. ; E_ERROR - fatal run-time errors
  131. ; E_WARNING - run-time warnings (non fatal errors)
  132. ; E_PARSE - compile-time parse errors
  133. ; E_NOTICE - run-time notices (these are warnings which often result from a bug in
  134. ; your code, but it's possible that it was intentional (e.g., using an
  135. ; uninitialized variable and relying on the fact it's automatically
  136. ; initialized to an empty string)
  137. ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
  138. ; E_CORE_WARNING - warnings (non fatal errors) that occur during PHP's initial startup
  139. ; E_COMPILE_ERROR - fatal compile-time errors
  140. ; E_COMPILE_WARNING - compile-time warnings (non fatal errors)
  141. ; E_USER_ERROR - user-generated error message
  142. ; E_USER_WARNING - user-generated warning message
  143. ; E_USER_NOTICE - user-generated notice message
  144. ; Examples:
  145. ; error_reporting = E_ALL & ~E_NOTICE ; show all errors, except for notices
  146. ; error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR ; show only errors
  147. error_reporting = E_ALL & ~E_NOTICE ; Show all errors except for notices
  148. display_errors = On ; Print out errors (as a part of the output)
  149. ; For production web sites, you're strongly encouraged
  150. ; to turn this feature off, and use error logging instead (see below).
  151. ; Keeping display_errors enabled on a production web site may reveal
  152. ; security information to end users, such as file paths on your Web server,
  153. ; your database schema or other information.
  154. display_startup_errors = Off ; Even when display_errors is on, errors that occur during
  155. ; PHP's startup sequence are not displayed. It's strongly
  156. ; recommended to keep display_startup_errors off, except for
  157. ; when debugging.
  158. log_errors = Off ; Log errors into a log file (server-specific log, stderr, or error_log (below))
  159. ; As stated above, you're strongly advised to use error logging in place of
  160. ; error displaying on production web sites.
  161. track_errors = Off ; Store the last error/warning message in $php_errormsg (boolean)
  162. ;error_prepend_string = "<font color=ff0000>" ; string to output before an error message
  163. ;error_append_string = "</font>" ; string to output after an error message
  164. ;error_log = filename ; log errors to specified file
  165. ;error_log = syslog ; log errors to syslog (Event Log on NT, not valid in Windows 95)
  166. warn_plus_overloading = Off ; warn if the + operator is used with strings
  167. ;;;;;;;;;;;;;;;;;
  168. ; Data Handling ;
  169. ;;;;;;;;;;;;;;;;;
  170. ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
  171. variables_order = "EGPCS" ; This directive describes the order in which PHP registers
  172. ; GET, POST, Cookie, Environment and Built-in variables (G, P,
  173. ; C, E & S respectively, often referred to as EGPCS or GPC).
  174. ; Registration is done from left to right, newer values override
  175. ; older values.
  176. register_globals = On ; Whether or not to register the EGPCS variables as global
  177. ; variables. You may want to turn this off if you don't want
  178. ; to clutter your scripts' global scope with user data. This makes
  179. ; most sense when coupled with track_vars - in which case you can
  180. ; access all of the GPC variables through the $HTTP_*_VARS[],
  181. ; variables.
  182. ; You should do your best to write your scripts so that they do
  183. ; not require register_globals to be on; Using form variables
  184. ; as globals can easily lead to possible security problems, if
  185. ; the code is not very well thought of.
  186. register_argc_argv = On ; This directive tells PHP whether to declare the argv&argc
  187. ; variables (that would contain the GET information). If you
  188. ; don't use these variables, you should turn it off for
  189. ; increased performance
  190. post_max_size = 8M ; Maximum size of POST data that PHP will accept.
  191. gpc_order = "GPC" ; This directive is deprecated. Use variables_order instead.
  192. ; Magic quotes
  193. magic_quotes_gpc = On ; magic quotes for incoming GET/POST/Cookie data
  194. magic_quotes_runtime= Off ; magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
  195. magic_quotes_sybase = Off ; Use Sybase-style magic quotes (escape ' with '' instead of \')
  196. ; automatically add files before or after any PHP document
  197. auto_prepend_file =
  198. auto_append_file =
  199. ; As of 4.0b4, PHP always outputs a character encoding by default in
  200. ; the Content-type: header. To disable sending of the charset, simply
  201. ; set it to be empty.
  202. ; PHP's built-in default is text/html
  203. default_mimetype = "text/html"
  204. ;default_charset = "iso-8859-1"
  205. ;;;;;;;;;;;;;;;;;;;;;;;;;
  206. ; Paths and Directories ;
  207. ;;;;;;;;;;;;;;;;;;;;;;;;;
  208. include_path = ; UNIX: "/path1:/path2" Windows: "\path1;\path2"
  209. doc_root = ; the root of the php pages, used only if nonempty
  210. user_dir = ; the directory under which php opens the script using /~username, used only if nonempty
  211. extension_dir = /usr/lib/php4/cgi ; directory in which the loadable extensions (modules) reside
  212. enable_dl = On ; Whether or not to enable the dl() function.
  213. ; The dl() function does NOT properly work in multithreaded
  214. ; servers, such as IIS or Zeus, and is automatically disabled
  215. ; on them.
  216. ;;;;;;;;;;;;;;;;
  217. ; File Uploads ;
  218. ;;;;;;;;;;;;;;;;
  219. file_uploads = On ; Whether to allow HTTP file uploads
  220. ;upload_tmp_dir = ; temporary directory for HTTP uploaded files (will use system default if not specified)
  221. upload_max_filesize = 2M ; Maximum allowed size for uploaded files
  222. ;;;;;;;;;;;;;;;;;;;;;;
  223. ; Dynamic Extensions ;
  224. ;;;;;;;;;;;;;;;;;;;;;;
  225. ; if you wish to have an extension loaded automaticly, use the
  226. ; following syntax: extension=modulename.extension
  227. ; for example, on windows,
  228. ; extension=msql.dll
  229. ; or under UNIX,
  230. ; extension=msql.so
  231. ; Note that it should be the name of the module only, no directory information
  232. ; needs to go here. Specify the location of the extension with the extension_dir directive above.
  233. ;Windows Extensions
  234. ;Note that MySQL and ODBC support is now built in, so no dll is needed for it.
  235. ;
  236. ;extension=php_cpdf.dll
  237. ;extension=php_cybercash.dll
  238. ;extension=php_db.dll
  239. ;extension=php_dbase.dll
  240. ;extension=php_domxml.dll
  241. ;extension=php_dotnet.dll
  242. ;extension=php_exif.dll
  243. ;extension=php_fdf.dll
  244. ;extension=php_gd.dll
  245. ;extension=php_gettext.dll
  246. ;extension=php_ifx.dll
  247. ;extension=php_imap.dll
  248. ;extension=php_interbase.dll
  249. ;extension=php_java.dll
  250. ;extension=php_ldap.dll
  251. ;extension=php_mhash.dll
  252. ;extension=php_mssql65.dll
  253. ;extension=php_mssql70.dll
  254. ;extension=php_oci8.dll
  255. ;extension=php_oracle.dll
  256. ;extension=php_pdf.dll
  257. ;extension=php_pgsql.dll
  258. ;extension=php_sablot.dll
  259. ;extension=php_swf.dll
  260. ;extension=php_sybase_ct.dll
  261. ;extension=php_zlib.dll
  262. ;;;;;;;;;;;;;;;;;;;
  263. ; Module Settings ;
  264. ;;;;;;;;;;;;;;;;;;;
  265. [Syslog]
  266. define_syslog_variables = Off ; Whether or not to define the various syslog variables,
  267. ; e.g. $LOG_PID, $LOG_CRON, etc. Turning it off is a
  268. ; good idea performance-wise. In runtime, you can define
  269. ; these variables by calling define_syslog_variables()
  270. [mail function]
  271. SMTP = localhost ;for win32 only
  272. sendmail_from = me@localhost.com ;for win32 only
  273. ;sendmail_path = ;for unix only, may supply arguments as well (default is 'sendmail -t -i')
  274. [Debugger]
  275. debugger.host = localhost
  276. debugger.port = 7869
  277. debugger.enabled = False
  278. [Logging]
  279. ; These configuration directives are used by the example logging mechanism.
  280. ; See examples/README.logging for more explanation.
  281. ;logging.method = db
  282. ;logging.directory = /path/to/log/directory
  283. [Java]
  284. ;java.class.path = .\php_java.jar
  285. ;java.home = c:\jdk
  286. ;java.library = c:\jdk\jre\bin\hotspot\jvm.dll
  287. ;java.library.path = .\
  288. [SQL]
  289. sql.safe_mode = Off
  290. [ODBC]
  291. ;uodbc.default_db = Not yet implemented
  292. ;uodbc.default_user = Not yet implemented
  293. ;uodbc.default_pw = Not yet implemented
  294. uodbc.allow_persistent = On ; allow or prevent persistent links
  295. uodbc.check_persistent = On ; check that a connection is still validbefore reuse
  296. uodbc.max_persistent = -1 ; maximum number of persistent links. -1 means no limit
  297. uodbc.max_links = -1 ; maximum number of links (persistent+non persistent). -1 means no limit
  298. uodbc.defaultlrl = 4096 ; Handling of LONG fields. Returns number of bytes to variables, 0 means passthru
  299. uodbc.defaultbinmode = 1 ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char
  300. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation of uodbc.defaultlrl
  301. ; and uodbc.defaultbinmode
  302. [MySQL]
  303. mysql.allow_persistent = On ; allow or prevent persistent link
  304. mysql.max_persistent = -1 ; maximum number of persistent links. -1 means no limit
  305. mysql.max_links = -1 ; maximum number of links (persistent+non persistent). -1 means no limit
  306. mysql.default_port = ; default port number for mysql_connect(). If unset,
  307. ; mysql_connect() will use the $MYSQL_TCP_PORT, or the mysql-tcp
  308. ; entry in /etc/services, or the compile-time defined MYSQL_PORT
  309. ; (in that order). Win32 will only look at MYSQL_PORT.
  310. mysql.default_socket = ; default socket name for local MySQL connects. If empty, uses the built-in
  311. ; MySQL defaults
  312. mysql.default_host = ; default host for mysql_connect() (doesn't apply in safe mode)
  313. mysql.default_user = ; default user for mysql_connect() (doesn't apply in safe mode)
  314. mysql.default_password = ; default password for mysql_connect() (doesn't apply in safe mode)
  315. ; Note that this is generally a *bad* idea to store passwords
  316. ; in this file. *Any* user with PHP access can run
  317. ; 'echo cfg_get_var("mysql.default_password")' and reveal that
  318. ; password! And of course, any users with read access to this
  319. ; file will be able to reveal the password as well.
  320. [mSQL]
  321. msql.allow_persistent = On ; allow or prevent persistent link
  322. msql.max_persistent = -1 ; maximum number of persistent links. -1 means no limit
  323. msql.max_links = -1 ; maximum number of links (persistent+non persistent). -1 means no limit
  324. [PostgresSQL]
  325. pgsql.allow_persistent = On ; allow or prevent persistent link
  326. pgsql.max_persistent = -1 ; maximum number of persistent links. -1 means no limit
  327. pgsql.max_links = -1 ; maximum number of links (persistent+non persistent). -1 means no limit
  328. [Sybase]
  329. sybase.allow_persistent = On ; allow or prevent persistent link
  330. sybase.max_persistent = -1 ; maximum number of persistent links. -1 means no limit
  331. sybase.max_links = -1 ; maximum number of links (persistent+non persistent). -1 means no limit
  332. ;sybase.interface_file = "/usr/sybase/interfaces"
  333. sybase.min_error_severity = 10 ; minimum error severity to display
  334. sybase.min_message_severity = 10 ; minimum message severity to display
  335. sybase.compatability_mode = Off ; compatability mode with old versions of PHP 3.0.
  336. ; If on, this will cause PHP to automatically assign types to results
  337. ; according to their Sybase type, instead of treating them all as
  338. ; strings. This compatability mode will probably not stay around
  339. ; forever, so try applying whatever necessary changes to your code,
  340. ; and turn it off.
  341. [Sybase-CT]
  342. sybct.allow_persistent = On ; allow or prevent persistent link
  343. sybct.max_persistent = -1 ; maximum number of persistent links. -1 means no limit
  344. sybct.max_links = -1 ; maximum number of links (persistent+non persistent). -1 means no limit
  345. sybct.min_server_severity = 10 ; minimum server message severity to display
  346. sybct.min_client_severity = 10 ; minimum client message severity to display
  347. [bcmath]
  348. bcmath.scale = 0 ; number of decimal digits for all bcmath functions
  349. [browscap]
  350. ;browscap = extra/browscap.ini
  351. [Informix]
  352. ifx.default_host = ; default host for ifx_connect() (doesn't apply in safe mode)
  353. ifx.default_user = ; default user for ifx_connect() (doesn't apply in safe mode)
  354. ifx.default_password = ; default password for ifx_connect() (doesn't apply in safe mode)
  355. ifx.allow_persistent = On ; allow or prevent persistent link
  356. ifx.max_persistent = -1 ; maximum number of persistent links. -1 means no limit
  357. ifx.max_links = -1 ; maximum number of links (persistent+non persistent). -1 means no limit
  358. ifx.textasvarchar = 0 ; if set on, select statements return the contents of a text blob instead of it's id
  359. ifx.byteasvarchar = 0 ; if set on, select statements return the contents of a byte blob instead of it's id
  360. ifx.charasvarchar = 0 ; trailing blanks are stripped from fixed-length char columns. May help the life
  361. ; of Informix SE users.
  362. ifx.blobinfile = 0 ; if set on, the contents of text&byte blobs are dumped to a file instead of
  363. ; keeping them in memory
  364. ifx.nullformat = 0 ; NULL's are returned as empty strings, unless this is set to 1. In that case,
  365. ; NULL's are returned as string 'NULL'.
  366. [Session]
  367. session.save_handler = files ; handler used to store/retrieve data
  368. session.save_path = /tmp ; argument passed to save_handler
  369. ; in the case of files, this is the
  370. ; path where data files are stored
  371. session.use_cookies = 1 ; whether to use cookies
  372. session.name = PHPSESSID
  373. ; name of the session
  374. ; is used as cookie name
  375. session.auto_start = 0 ; initialize session on request startup
  376. session.cookie_lifetime = 0 ; lifetime in seconds of cookie
  377. ; or if 0, until browser is restarted
  378. session.cookie_path = / ; the path the cookie is valid for
  379. session.cookie_domain = ; the domain the cookie is valid for
  380. session.serialize_handler = php ; handler used to serialize data
  381. ; php is the standard serializer of PHP
  382. session.gc_probability = 1 ; percentual probability that the
  383. ; 'garbage collection' process is started
  384. ; on every session initialization
  385. session.gc_maxlifetime = 1440 ; after this number of seconds, stored
  386. ; data will be seen as 'garbage' and
  387. ; cleaned up by the gc process
  388. session.referer_check = ; check HTTP Referer to invalidate
  389. ; externally stored URLs containing ids
  390. session.entropy_length = 0 ; how many bytes to read from the file
  391. session.entropy_file = ; specified here to create the session id
  392. ; session.entropy_length = 16
  393. ; session.entropy_file = /dev/urandom
  394. session.cache_limiter = nocache ; set to {nocache,private,public} to
  395. ; determine HTTP caching aspects
  396. session.cache_expire = 180 ; document expires after n minutes
  397. session.use_trans_sid = 1 ; use transient sid support if enabled
  398. ; by compiling with --enable-trans-sid
  399. [MSSQL]
  400. ;extension=php_mssql.dll
  401. mssql.allow_persistent = On ; allow or prevent persistent link
  402. mssql.max_persistent = -1 ; maximum number of persistent links. -1 means no limit
  403. mssql.max_links = -1 ; maximum number of links (persistent+non persistent). -1 means no limit
  404. mssql.min_error_severity = 10 ; minimum error severity to display
  405. mssql.min_message_severity = 10 ; minimum message severity to display
  406. mssql.compatability_mode = Off ; compatability mode with old versions of PHP 3.0.
  407. [Assertion]
  408. ;assert.active = On ; assert(expr); active by default
  409. ;assert.warning = On ; issue a PHP warning for each failed assertion.
  410. ;assert.bail = Off ; don't bail out by default.
  411. ;assert.callback = 0 ; user-function to be called if an assertion fails.
  412. ;assert.quiet_eval = 0 ; eval the expression with current error_reporting(). set to true if you want error_reporting(0) around the eval().
  413. [Ingres II]
  414. ingres.allow_persistent = On ; allow or prevent persistent link
  415. ingres.max_persistent = -1 ; maximum number of persistent links. (-1 means no limit)
  416. ingres.max_links = -1 ; maximum number of links, including persistents (-1 means no limit)
  417. ingres.default_database = ; default database (format : [node_id::]dbname[/srv_class]
  418. ingres.default_user = ; default user
  419. ingres.default_password = ; default password
  420. [Verisign Payflow Pro]
  421. pfpro.defaulthost = "test.signio.com" ; default Signio server
  422. pfpro.defaultport = 443 ; default port to connect to
  423. pfpro.defaulttimeout = 30 ; default timeout in seconds
  424. ; pfpro.proxyaddress = ; default proxy IP address (if required)
  425. ; pfpro.proxyport = ; default proxy port
  426. ; pfpro.proxylogon = ; default proxy logon
  427. ; pfpro.proxypassword = ; default proxy password
  428. ; Local Variables:
  429. ; tab-width: 4
  430. ; End:
  431. ;extension=gd.so
  432. ;extension=imap.so
  433. ; extension=mhash.so
  434. ;extension=mysql.so
  435. ;extension=xml.so
  436. extension_dir = /home/billaud/Essais/PHP-GPIB
  437. extension=gpib_php.so