[SOLVED] modifying php.ini

I have adopted davical in aur recently.
I would like to modify php.ini in my .install file to make sure the modules:
extension=gettext.so
extension=iconv.so
extension=pdo_pgsql.so
extension=pgsql.so
are all uncommented. I was thinking about doing a sed line on /etc/php/php.ini
Is this the recommended way of doing this or should I rather just add a comment after installation on what to do manually?
Last edited by awayand (2011-07-24 13:41:10)

Editing other packages' configuration files is no-go.
You should display a message in the .install script's post_install().

Similar Messages

  • [SOLVED] Php not loading mysql extensions [Merge php.ini.pacnew file].

    Hi guys.
    I have bitten the bullet and upgraded to the Apache 2.4 and PHP from testing and solved a 10 tons of post-upgrade config nightmares just to figure out that MariaDB will not work with those versions until recompiled against them. Can we please have MariaDB added to testing repo after it was compiled against the Apache and PHP from testing?
    Thanks in advance.
    Kind regards.
    Andrzej
    Last edited by AndrzejL (2014-03-02 22:53:23)

    Pierre wrote:I don't see how that is related to Apache though. Are the mosql-modules enabled in php.ini?
    Spider.007 wrote:So after 10 tons of nightmares you didn't enable the mysql.so and mysqli.so extensions in your php.ini?
    I am not an idiot guys (well maybe I am but...), I would not come here and complain about missing extensions for mysql if I didnt tripple checked they were enabled in php.ini.
    [root@icsserver andrzejl]# cat /etc/php/php.ini | grep -v ';' | grep -i mysql | grep ext
    extension=mysqli.so
    extension=mysql.so
    extension=pdo_mysql.so
    [root@icsserver andrzejl]#
    Pierre wrote: How are you using PHP?
    FPM/FastCGI  / proxying all the php requests,
    PHP is working fine from what I can see.
    And Wordpress spits out:
    "Your PHP installation appears to be missing the MySQL extension which is required by WordPress."
    Which I assumed meant that the mysqld (in this case MariaDB) should be recompiled against php to provide those extensions. Could be wrong. Wouldn't be the first time.
    Cheers.
    Andrzej
    Last edited by AndrzejL (2014-03-02 15:01:43)

  • [SOLVED] Php.ini syntax error, unexpected '&'

    Hi guys,
    I'm having a trouble setting up a local hosted LAMP, I want to enable the error reporting and display, but it's giving me this error:
    [root@albert albert]# php
    PHP: syntax error, unexpected '&' in /etc/php/php.ini on line 105
    Line 105:
    ; error_reporting
    Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED ; this is the 105
    Development Value: E_ALL
    Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
    And when I access to on localhost/phpmyadmin:
    Fatal error: Call to undefined function PMA_DBI_num_rows() in /usr/share/webapps/phpMyAdmin/libraries/navigation/Nodes/Node.class.php on line 408
    When I comment the line 105,106,107, it works as I expected, but I can't see any error output...
    Here it's the entire php.ini:
    [PHP]
    ; About php.ini ;
    ; PHP's initialization file, generally called php.ini, is responsible for
    ; configuring many of the aspects of PHP's behavior.
    ; PHP attempts to find and load this configuration from a number of locations.
    ; The following is a summary of its search order:
    ; 1. SAPI module specific location.
    ; 2. The PHPRC environment variable. (As of PHP 5.2.0)
    ; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0)
    ; 4. Current working directory (except CLI)
    ; 5. The web server's directory (for SAPI modules), or directory of PHP
    ; (otherwise in Windows)
    ; 6. The directory from the --with-config-file-path compile time option, or the
    ; Windows directory (C:\windows or C:\winnt)
    ; See the PHP docs for more specific information.
    ; http://php.net/configuration.file
    ; The syntax of the file is extremely simple. Whitespace and lines
    ; beginning with a semicolon are silently ignored (as you probably guessed).
    ; Section headers (e.g. [Foo]) are also silently ignored, even though
    ; they might mean something in the future.
    ; Directives following the section heading [PATH=/www/mysite] only
    ; apply to PHP files in the /www/mysite directory. Directives
    ; following the section heading [HOST=www.example.com] only apply to
    ; PHP files served from www.example.com. Directives set in these
    ; special sections cannot be overridden by user-defined INI files or
    ; at runtime. Currently, [PATH=] and [HOST=] sections only work under
    ; CGI/FastCGI.
    ; http://php.net/ini.sections
    ; Directives are specified using the following syntax:
    ; directive = value
    ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
    ; Directives are variables used to configure PHP or PHP extensions.
    ; There is no name validation. If PHP can't find an expected
    ; directive because it is not set or is mistyped, a default value will be used.
    ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
    ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
    ; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
    ; previously set variable or directive (e.g. ${foo})
    ; Expressions in the INI file are limited to bitwise operators and parentheses:
    ; | bitwise OR
    ; ^ bitwise XOR
    ; & bitwise AND
    ; ~ bitwise NOT
    ; ! boolean NOT
    ; Boolean flags can be turned on using the values 1, On, True or Yes.
    ; They can be turned off using the values 0, Off, False or No.
    ; An empty string can be denoted by simply not writing anything after the equal
    ; sign, or by using the None keyword:
    ; foo = ; sets foo to an empty string
    ; foo = None ; sets foo to an empty string
    ; foo = "None" ; sets foo to the string 'None'
    ; If you use constants in your value, and these constants belong to a
    ; dynamically loaded extension (either a PHP extension or a Zend extension),
    ; you may only use these constants *after* the line that loads the extension.
    ; About this file ;
    ; PHP comes packaged with two INI files. One that is recommended to be used
    ; in production environments and one that is recommended to be used in
    ; development environments.
    ; php.ini-production contains settings which hold security, performance and
    ; best practices at its core. But please be aware, these settings may break
    ; compatibility with older or less security conscience applications. We
    ; recommending using the production ini in production and testing environments.
    ; php.ini-development is very similar to its production variant, except it's
    ; much more verbose when it comes to errors. We recommending using the
    ; development version only in development environments as errors shown to
    ; application users can inadvertently leak otherwise secure information.
    ; Quick Reference ;
    ; The following are all the settings which are different in either the production
    ; or development versions of the INIs with respect to PHP's default behavior.
    ; Please see the actual settings later in the document for more details as to why
    ; we recommend these changes in PHP's behavior.
    ; display_errors
    Default Value: On
    Development Value: On
    Production Value: Off
    ; display_startup_errors
    Default Value: Off
    Development Value: On
    Production Value: Off
    ; error_reporting
    Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
    Development Value: E_ALL
    Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
    ; html_errors
    Default Value: On
    Development Value: On
    Production value: On
    ; log_errors
    Default Value: Off
    Development Value: On
    Production Value: On
    ; max_input_time
    ; Default Value: -1 (Unlimited)
    ; Development Value: 60 (60 seconds)
    ; Production Value: 60 (60 seconds)
    ; output_buffering
    ; Default Value: Off
    ; Development Value: 4096
    ; Production Value: 4096
    ; register_argc_argv
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; request_order
    ; Default Value: None
    ; Development Value: "GP"
    ; Production Value: "GP"
    ; session.bug_compat_42
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; session.bug_compat_warn
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; session.gc_divisor
    ; Default Value: 100
    ; Development Value: 1000
    ; Production Value: 1000
    ; session.hash_bits_per_character
    ; Default Value: 4
    ; Development Value: 5
    ; Production Value: 5
    ; short_open_tag
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; track_errors
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: Off
    ; url_rewriter.tags
    ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
    ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
    ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
    ; variables_order
    ; Default Value: "EGPCS"
    ; Development Value: "GPCS"
    ; Production Value: "GPCS"
    ; php.ini Options ;
    ; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
    ;user_ini.filename = ".user.ini"
    ; To disable this feature set this option to empty value
    ;user_ini.filename =
    ; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
    ;user_ini.cache_ttl = 300
    ; Language Options ;
    ; Enable the PHP scripting language engine under Apache.
    ; http://php.net/engine
    engine = On
    ; This directive determines whether or not PHP will recognize code between
    ; <? and ?> tags as PHP source which should be processed as such. It's been
    ; recommended for several years that you not use the short tag "short cut" and
    ; instead to use the full <?php and ?> tag combination. With the wide spread use
    ; of XML and use of these tags by other languages, the server can become easily
    ; confused and end up parsing the wrong code in the wrong context. But because
    ; this short cut has been a feature for such a long time, it's currently still
    ; supported for backwards compatibility, but we recommend you don't use them.
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; http://php.net/short-open-tag
    short_open_tag = Off
    ; Allow ASP-style <% %> tags.
    ; http://php.net/asp-tags
    asp_tags = Off
    ; The number of significant digits displayed in floating point numbers.
    ; http://php.net/precision
    precision = 14
    ; Output buffering is a mechanism for controlling how much output data
    ; (excluding headers and cookies) PHP should keep internally before pushing that
    ; data to the client. If your application's output exceeds this setting, PHP
    ; will send that data in chunks of roughly the size you specify.
    ; Turning on this setting and managing its maximum buffer size can yield some
    ; interesting side-effects depending on your application and web server.
    ; You may be able to send headers and cookies after you've already sent output
    ; through print or echo. You also may see performance benefits if your server is
    ; emitting less packets due to buffered output versus PHP streaming the output
    ; as it gets it. On production servers, 4096 bytes is a good setting for performance
    ; reasons.
    ; Note: Output buffering can also be controlled via Output Buffering Control
    ; functions.
    ; Possible Values:
    ; On = Enabled and buffer is unlimited. (Use with caution)
    ; Off = Disabled
    ; Integer = Enables the buffer and sets its maximum size in bytes.
    ; Note: This directive is hardcoded to Off for the CLI SAPI
    ; Default Value: Off
    ; Development Value: 4096
    ; Production Value: 4096
    ; http://php.net/output-buffering
    output_buffering = 4096
    ; You can redirect all of the output of your scripts to a function. For
    ; example, if you set output_handler to "mb_output_handler", character
    ; encoding will be transparently converted to the specified encoding.
    ; Setting any output handler automatically turns on output buffering.
    ; Note: People who wrote portable scripts should not depend on this ini
    ; directive. Instead, explicitly set the output handler using ob_start().
    ; Using this ini directive may cause problems unless you know what script
    ; is doing.
    ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
    ; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
    ; Note: output_handler must be empty if this is set 'On' !!!!
    ; Instead you must use zlib.output_handler.
    ; http://php.net/output-handler
    ;output_handler =
    ; Transparent output compression using the zlib library
    ; Valid values for this option are 'off', 'on', or a specific buffer size
    ; to be used for compression (default is 4KB)
    ; Note: Resulting chunk size may vary due to nature of compression. PHP
    ; outputs chunks that are few hundreds bytes each as a result of
    ; compression. If you prefer a larger chunk size for better
    ; performance, enable output_buffering in addition.
    ; Note: You need to use zlib.output_handler instead of the standard
    ; output_handler, or otherwise the output will be corrupted.
    ; http://php.net/zlib.output-compression
    zlib.output_compression = Off
    ; http://php.net/zlib.output-compression-level
    ;zlib.output_compression_level = -1
    ; You cannot specify additional output handlers if zlib.output_compression
    ; is activated here. This setting does the same as output_handler but in
    ; a different order.
    ; http://php.net/zlib.output-handler
    ;zlib.output_handler =
    ; Implicit flush tells PHP to tell the output layer to flush itself
    ; automatically after every output block. This is equivalent to calling the
    ; PHP function flush() after each and every call to print() or echo() and each
    ; and every HTML block. Turning this option on has serious performance
    ; implications and is generally recommended for debugging purposes only.
    ; http://php.net/implicit-flush
    ; Note: This directive is hardcoded to On for the CLI SAPI
    implicit_flush = Off
    ; The unserialize callback function will be called (with the undefined class'
    ; name as parameter), if the unserializer finds an undefined class
    ; which should be instantiated. A warning appears if the specified function is
    ; not defined, or if the function doesn't include/implement the missing class.
    ; So only set this entry, if you really want to implement such a
    ; callback-function.
    unserialize_callback_func =
    ; When floats & doubles are serialized store serialize_precision significant
    ; digits after the floating point. The default value ensures that when floats
    ; are decoded with unserialize, the data will remain the same.
    serialize_precision = 17
    ; open_basedir, if set, limits all file operations to the defined directory
    ; and below. This directive makes most sense if used in a per-directory
    ; or per-virtualhost web server configuration file. This directive is
    ; *NOT* affected by whether Safe Mode is turned On or Off.
    ; http://php.net/open-basedir
    open_basedir = /srv/http/:/home/:/tmp/:/usr/share/pear/:/usr/share/webapps/:/home/albert/Dropbox/bitday/
    ; This directive allows you to disable certain functions for security reasons.
    ; It receives a comma-delimited list of function names. This directive is
    ; *NOT* affected by whether Safe Mode is turned On or Off.
    ; http://php.net/disable-functions
    disable_functions =
    ; This directive allows you to disable certain classes for security reasons.
    ; It receives a comma-delimited list of class names. This directive is
    ; *NOT* affected by whether Safe Mode is turned On or Off.
    ; http://php.net/disable-classes
    disable_classes =
    ; Colors for Syntax Highlighting mode. Anything that's acceptable in
    ; <span style="color: ???????"> would work.
    ; http://php.net/syntax-highlighting
    ;highlight.string = #DD0000
    ;highlight.comment = #FF9900
    ;highlight.keyword = #007700
    ;highlight.default = #0000BB
    ;highlight.html = #000000
    ; If enabled, the request will be allowed to complete even if the user aborts
    ; the request. Consider enabling it if executing long requests, which may end up
    ; being interrupted by the user or a browser timing out. PHP's default behavior
    ; is to disable this feature.
    ; http://php.net/ignore-user-abort
    ;ignore_user_abort = On
    ; Determines the size of the realpath cache to be used by PHP. This value should
    ; be increased on systems where PHP opens many files to reflect the quantity of
    ; the file operations performed.
    ; http://php.net/realpath-cache-size
    ;realpath_cache_size = 16k
    ; Duration of time, in seconds for which to cache realpath information for a given
    ; file or directory. For systems with rarely changing files, consider increasing this
    ; value.
    ; http://php.net/realpath-cache-ttl
    ;realpath_cache_ttl = 120
    ; Enables or disables the circular reference collector.
    ; http://php.net/zend.enable-gc
    zend.enable_gc = On
    ; If enabled, scripts may be written in encodings that are incompatible with
    ; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such
    ; encodings. To use this feature, mbstring extension must be enabled.
    ; Default: Off
    ;zend.multibyte = Off
    ; Allows to set the default encoding for the scripts. This value will be used
    ; unless "declare(encoding=...)" directive appears at the top of the script.
    ; Only affects if zend.multibyte is set.
    ; Default: ""
    ;zend.script_encoding =
    ; Miscellaneous ;
    ; Decides whether PHP may expose the fact that it is installed on the server
    ; (e.g. by adding its signature to the Web server header). It is no security
    ; threat in any way, but it makes it possible to determine whether you use PHP
    ; on your server or not.
    ; http://php.net/expose-php
    expose_php = On
    ; Resource Limits ;
    ; Maximum execution time of each script, in seconds
    ; http://php.net/max-execution-time
    ; Note: This directive is hardcoded to 0 for the CLI SAPI
    max_execution_time = 30
    ; Maximum amount of time each script may spend parsing request data. It's a good
    ; idea to limit this time on productions servers in order to eliminate unexpectedly
    ; long running scripts.
    ; Note: This directive is hardcoded to -1 for the CLI SAPI
    ; Default Value: -1 (Unlimited)
    ; Development Value: 60 (60 seconds)
    ; Production Value: 60 (60 seconds)
    ; http://php.net/max-input-time
    max_input_time = 60
    ; Maximum input variable nesting level
    ; http://php.net/max-input-nesting-level
    ;max_input_nesting_level = 64
    ; How many GET/POST/COOKIE input variables may be accepted
    ; max_input_vars = 1000
    ; Maximum amount of memory a script may consume (128MB)
    ; http://php.net/memory-limit
    memory_limit = 128M
    ; Error handling and logging ;
    ; This directive informs PHP of which errors, warnings and notices you would like
    ; it to take action for. The recommended way of setting values for this
    ; directive is through the use of the error level constants and bitwise
    ; operators. The error level constants are below here for convenience as well as
    ; some common settings and their meanings.
    ; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
    ; those related to E_NOTICE and E_STRICT, which together cover best practices and
    ; recommended coding standards in PHP. For performance reasons, this is the
    ; recommend error reporting setting. Your production server shouldn't be wasting
    ; resources complaining about best practices and coding standards. That's what
    ; development servers and development settings are for.
    ; Note: The php.ini-development file has this setting as E_ALL. This
    ; means it pretty much reports everything which is exactly what you want during
    ; development and early testing.
    ; Error Level Constants:
    ; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0)
    ; E_ERROR - fatal run-time errors
    ; E_RECOVERABLE_ERROR - almost fatal run-time errors
    ; E_WARNING - run-time warnings (non-fatal errors)
    ; E_PARSE - compile-time parse errors
    ; E_NOTICE - run-time notices (these are warnings which often result
    ; from a bug in your code, but it's possible that it was
    ; intentional (e.g., using an uninitialized variable and
    ; relying on the fact it's automatically initialized to an
    ; empty string)
    ; E_STRICT - run-time notices, enable to have PHP suggest changes
    ; to your code which will ensure the best interoperability
    ; and forward compatibility of your code
    ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
    ; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
    ; initial startup
    ; E_COMPILE_ERROR - fatal compile-time errors
    ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
    ; E_USER_ERROR - user-generated error message
    ; E_USER_WARNING - user-generated warning message
    ; E_USER_NOTICE - user-generated notice message
    ; E_DEPRECATED - warn about code that will not work in future versions
    ; of PHP
    ; E_USER_DEPRECATED - user-generated deprecation warnings
    ; Common Values:
    ; E_ALL (Show all errors, warnings and notices including coding standards.)
    ; E_ALL & ~E_NOTICE (Show all errors, except for notices)
    ; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)
    ; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
    ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
    ; Development Value: E_ALL
    ; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
    ; http://php.net/error-reporting
    error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
    ; This directive controls whether or not and where PHP will output errors,
    ; notices and warnings too. Error output is very useful during development, but
    ; it could be very dangerous in production environments. Depending on the code
    ; which is triggering the error, sensitive information could potentially leak
    ; out of your application such as database usernames and passwords or worse.
    ; It's recommended that errors be logged on production servers rather than
    ; having the errors sent to STDOUT.
    ; Possible Values:
    ; Off = Do not display any errors
    ; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
    ; On or stdout = Display errors to STDOUT
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/display-errors
    display_errors = Off
    ; The display of errors which occur during PHP's startup sequence are handled
    ; separately from display_errors. PHP's default behavior is to suppress those
    ; errors from clients. Turning the display of startup errors on can be useful in
    ; debugging configuration problems. But, it's strongly recommended that you
    ; leave this setting off on production servers.
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/display-startup-errors
    display_startup_errors = Off
    ; Besides displaying errors, PHP can also log errors to locations such as a
    ; server-specific log, STDERR, or a location specified by the error_log
    ; directive found below. While errors should not be displayed on productions
    ; servers they should still be monitored and logging is a great way to do that.
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: On
    ; http://php.net/log-errors
    log_errors = On
    ; Set maximum length of log_errors. In error_log information about the source is
    ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
    ; http://php.net/log-errors-max-len
    log_errors_max_len = 1024
    ; Do not log repeated messages. Repeated errors must occur in same file on same
    ; line unless ignore_repeated_source is set true.
    ; http://php.net/ignore-repeated-errors
    ignore_repeated_errors = Off
    ; Ignore source of message when ignoring repeated messages. When this setting
    ; is On you will not log errors with repeated messages from different files or
    ; source lines.
    ; http://php.net/ignore-repeated-source
    ignore_repeated_source = Off
    ; If this parameter is set to Off, then memory leaks will not be shown (on
    ; stdout or in the log). This has only effect in a debug compile, and if
    ; error reporting includes E_WARNING in the allowed list
    ; http://php.net/report-memleaks
    report_memleaks = On
    ; This setting is on by default.
    ;report_zend_debug = 0
    ; Store the last error/warning message in $php_errormsg (boolean). Setting this value
    ; to On can assist in debugging and is appropriate for development servers. It should
    ; however be disabled on production servers.
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/track-errors
    track_errors = Off
    ; Turn off normal error reporting and emit XML-RPC error XML
    ; http://php.net/xmlrpc-errors
    ;xmlrpc_errors = 0
    ; An XML-RPC faultCode
    ;xmlrpc_error_number = 0
    ; When PHP displays or logs an error, it has the capability of formatting the
    ; error message as HTML for easier reading. This directive controls whether
    ; the error message is formatted as HTML or not.
    ; Note: This directive is hardcoded to Off for the CLI SAPI
    ; Default Value: On
    ; Development Value: On
    ; Production value: On
    ; http://php.net/html-errors
    html_errors = On
    ; If html_errors is set to On *and* docref_root is not empty, then PHP
    ; produces clickable error messages that direct to a page describing the error
    ; or function causing the error in detail.
    ; You can download a copy of the PHP manual from http://php.net/docs
    ; and change docref_root to the base URL of your local copy including the
    ; leading '/'. You must also specify the file extension being used including
    ; the dot. PHP's default behavior is to leave these settings empty, in which
    ; case no links to documentation are generated.
    ; Note: Never use this feature for production boxes.
    ; http://php.net/docref-root
    ; Examples
    ;docref_root = "/phpmanual/"
    ; http://php.net/docref-ext
    ;docref_ext = .html
    ; String to output before an error message. PHP's default behavior is to leave
    ; this setting blank.
    ; http://php.net/error-prepend-string
    ; Example:
    ;error_prepend_string = "<span style='color: #ff0000'>"
    ; String to output after an error message. PHP's default behavior is to leave
    ; this setting blank.
    ; http://php.net/error-append-string
    ; Example:
    ;error_append_string = "</span>"
    ; Log errors to specified file. PHP's default behavior is to leave this value
    ; empty.
    ; http://php.net/error-log
    ; Example:
    ;error_log = php_errors.log
    ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
    ;error_log = syslog
    ;windows.show_crt_warning
    ; Default value: 0
    ; Development value: 0
    ; Production value: 0
    ; Data Handling ;
    ; The separator used in PHP generated URLs to separate arguments.
    ; PHP's default setting is "&".
    ; http://php.net/arg-separator.output
    ; Example:
    ;arg_separator.output = "&amp;"
    ; List of separator(s) used by PHP to parse input URLs into variables.
    ; PHP's default setting is "&".
    ; NOTE: Every character in this directive is considered as separator!
    ; http://php.net/arg-separator.input
    ; Example:
    ;arg_separator.input = ";&"
    ; This directive determines which super global arrays are registered when PHP
    ; starts up. G,P,C,E & S are abbreviations for the following respective super
    ; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty
    ; paid for the registration of these arrays and because ENV is not as commonly
    ; used as the others, ENV is not recommended on productions servers. You
    ; can still get access to the environment variables through getenv() should you
    ; need to.
    ; Default Value: "EGPCS"
    ; Development Value: "GPCS"
    ; Production Value: "GPCS";
    ; http://php.net/variables-order
    variables_order = "GPCS"
    ; This directive determines which super global data (G,P,C,E & S) should
    ; be registered into the super global array REQUEST. If so, it also determines
    ; the order in which that data is registered. The values for this directive are
    ; specified in the same manner as the variables_order directive, EXCEPT one.
    ; Leaving this value empty will cause PHP to use the value set in the
    ; variables_order directive. It does not mean it will leave the super globals
    ; array REQUEST empty.
    ; Default Value: None
    ; Development Value: "GP"
    ; Production Value: "GP"
    ; http://php.net/request-order
    request_order = "GP"
    ; This directive determines whether PHP registers $argv & $argc each time it
    ; runs. $argv contains an array of all the arguments passed to PHP when a script
    ; is invoked. $argc contains an integer representing the number of arguments
    ; that were passed when the script was invoked. These arrays are extremely
    ; useful when running scripts from the command line. When this directive is
    ; enabled, registering these variables consumes CPU cycles and memory each time
    ; a script is executed. For performance reasons, this feature should be disabled
    ; on production servers.
    ; Note: This directive is hardcoded to On for the CLI SAPI
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; http://php.net/register-argc-argv
    register_argc_argv = Off
    ; When enabled, the ENV, REQUEST and SERVER variables are created when they're
    ; first used (Just In Time) instead of when the script starts. If these
    ; variables are not used within a script, having this directive on will result
    ; in a performance gain. The PHP directive register_argc_argv must be disabled
    ; for this directive to have any affect.
    ; http://php.net/auto-globals-jit
    auto_globals_jit = On
    ; Whether PHP will read the POST data.
    ; This option is enabled by default.
    ; Most likely, you won't want to disable this option globally. It causes $_POST
    ; and $_FILES to always be empty; the only way you will be able to read the
    ; POST data will be through the php://input stream wrapper. This can be useful
    ; to proxy requests or to process the POST data in a memory efficient fashion.
    ; http://php.net/enable-post-data-reading
    ;enable_post_data_reading = Off
    ; Maximum size of POST data that PHP will accept.
    ; Its value may be 0 to disable the limit. It is ignored if POST data reading
    ; is disabled through enable_post_data_reading.
    ; http://php.net/post-max-size
    post_max_size = 8M
    ; Automatically add files before PHP document.
    ; http://php.net/auto-prepend-file
    auto_prepend_file =
    ; Automatically add files after PHP document.
    ; http://php.net/auto-append-file
    auto_append_file =
    ; By default, PHP will output a character encoding using
    ; the Content-type: header. To disable sending of the charset, simply
    ; set it to be empty.
    ; PHP's built-in default is text/html
    ; http://php.net/default-mimetype
    default_mimetype = "text/html"
    ; PHP's default character set is set to empty.
    ; http://php.net/default-charset
    ;default_charset = "UTF-8"
    ; Always populate the $HTTP_RAW_POST_DATA variable. PHP's default behavior is
    ; to disable this feature. If post reading is disabled through
    ; enable_post_data_reading, $HTTP_RAW_POST_DATA is *NOT* populated.
    ; http://php.net/always-populate-raw-post-data
    ;always_populate_raw_post_data = On
    ; Paths and Directories ;
    ; UNIX: "/path1:/path2"
    include_path = ".:/usr/share/pear"
    ; Windows: "\path1;\path2"
    ;include_path = ".;c:\php\includes"
    ; PHP's default setting for include_path is ".;/path/to/php/pear"
    ; http://php.net/include-path
    ; The root of the PHP pages, used only if nonempty.
    ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
    ; if you are running php as a CGI under any web server (other than IIS)
    ; see documentation for security issues. The alternate is to use the
    ; cgi.force_redirect configuration below
    ; http://php.net/doc-root
    doc_root =
    ; The directory under which PHP opens the script using /~username used only
    ; if nonempty.
    ; http://php.net/user-dir
    user_dir =
    ; Directory in which the loadable extensions (modules) reside.
    ; http://php.net/extension-dir
    extension_dir = "/usr/lib/php/modules/"
    ; On windows:
    ; extension_dir = "ext"
    ; Whether or not to enable the dl() function. The dl() function does NOT work
    ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
    ; disabled on them.
    ; http://php.net/enable-dl
    enable_dl = Off
    ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
    ; most web servers. Left undefined, PHP turns this on by default. You can
    ; turn it off here AT YOUR OWN RISK
    ; **You CAN safely turn this off for IIS, in fact, you MUST.**
    ; http://php.net/cgi.force-redirect
    ;cgi.force_redirect = 1
    ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
    ; every request. PHP's default behavior is to disable this feature.
    ;cgi.nph = 1
    ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
    ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
    ; will look for to know it is OK to continue execution. Setting this variable MAY
    ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
    ; http://php.net/cgi.redirect-status-env
    ;cgi.redirect_status_env =
    ; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
    ; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
    ; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
    ; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
    ; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
    ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
    ; http://php.net/cgi.fix-pathinfo
    ;cgi.fix_pathinfo=1
    ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
    ; security tokens of the calling client. This allows IIS to define the
    ; security context that the request runs under. mod_fastcgi under Apache
    ; does not currently support this feature (03/17/2002)
    ; Set to 1 if running under IIS. Default is zero.
    ; http://php.net/fastcgi.impersonate
    ;fastcgi.impersonate = 1
    ; Disable logging through FastCGI connection. PHP's default behavior is to enable
    ; this feature.
    ;fastcgi.logging = 0
    ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
    ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
    ; is supported by Apache. When this option is set to 1 PHP will send
    ; RFC2616 compliant header.
    ; Default is zero.
    ; http://php.net/cgi.rfc2616-headers
    ;cgi.rfc2616_headers = 0
    ; File Uploads ;
    ; Whether to allow HTTP file uploads.
    ; http://php.net/file-uploads
    file_uploads = On
    ; Temporary directory for HTTP uploaded files (will use system default if not
    ; specified).
    ; http://php.net/upload-tmp-dir
    ;upload_tmp_dir =
    ; Maximum allowed size for uploaded files.
    ; http://php.net/upload-max-filesize
    upload_max_filesize = 2M
    ; Maximum number of files that can be uploaded via a single request
    max_file_uploads = 20
    ; Fopen wrappers ;
    ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
    ; http://php.net/allow-url-fopen
    allow_url_fopen = On
    ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
    ; http://php.net/allow-url-include
    allow_url_include = Off
    ; Define the anonymous ftp password (your email address). PHP's default setting
    ; for this is empty.
    ; http://php.net/from
    ;from="[email protected]"
    ; Define the User-Agent string. PHP's default setting for this is empty.
    ; http://php.net/user-agent
    ;user_agent="PHP"
    ; Default timeout for socket based streams (seconds)
    ; http://php.net/default-socket-timeout
    default_socket_timeout = 60
    ; If your scripts have to deal with files from Macintosh systems,
    ; or you are running on a Mac and need to deal with files from
    ; unix or win32 systems, setting this flag will cause PHP to
    ; automatically detect the EOL character in those files so that
    ; fgets() and file() will work regardless of the source of the file.
    ; http://php.net/auto-detect-line-endings
    ;auto_detect_line_endings = Off
    ; Dynamic Extensions ;
    ; If you wish to have an extension loaded automatically, use the following
    ; syntax:
    ; extension=modulename.extension
    ; For example, on Windows:
    ; extension=msql.dll
    ; ... or under UNIX:
    ; extension=msql.so
    ; ... or with a path:
    ; extension=/path/to/extension/msql.so
    ; If you only provide the name of the extension, PHP will look for it in its
    ; default extension directory.
    ;extension=bcmath.so
    ;extension=bz2.so
    ;extension=calendar.so
    extension=curl.so
    ;extension=dba.so
    ;extension=enchant.so
    ;extension=exif.so
    ;extension=ftp.so
    ;extension=gd.so
    extension=gettext.so
    ;extension=gmp.so
    ;extension=iconv.so
    ;extension=imap.so
    ;extension=intl.so
    ;extension=ldap.so
    ;extension=mcrypt.so
    ;extension=mssql.so
    ;extension=mysqli.so
    ;extension=mysql.so
    ;extension=odbc.so
    ;extension=openssl.so
    ;extension=pdo_mysql.so
    ;extension=pdo_odbc.so
    ;extension=pdo_pgsql.so
    ;extension=pdo_sqlite.so
    ;extension=pgsql.so
    ;extension=phar.so
    ;extension=posix.so
    ;extension=pspell.so
    ;extension=shmop.so
    ;extension=snmp.so
    ;extension=soap.so
    ;extension=sockets.so
    ;extension=sqlite3.so
    ;extension=sysvmsg.so
    ;extension=sysvsem.so
    ;extension=sysvshm.so
    ;extension=tidy.so
    ;extension=xmlrpc.so
    ;extension=xsl.so
    ;extension=zip.so
    ; Module Settings ;
    [CLI Server]
    ; Whether the CLI web server uses ANSI color coding in its terminal output.
    cli_server.color = On
    [Date]
    ; Defines the default timezone used by the date functions
    ; http://php.net/date.timezone
    ;date.timezone =
    ; http://php.net/date.default-latitude
    ;date.default_latitude = 31.7667
    ; http://php.net/date.default-longitude
    ;date.default_longitude = 35.2333
    ; http://php.net/date.sunrise-zenith
    ;date.sunrise_zenith = 90.583333
    ; http://php.net/date.sunset-zenith
    ;date.sunset_zenith = 90.583333
    [filter]
    ; http://php.net/filter.default
    ;filter.default = unsafe_raw
    ; http://php.net/filter.default-flags
    ;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 =
    ; This directive allows you to produce PHP errors when some error
    ; happens within intl functions. The value is the level of the error produced.
    ; Default is 0, which does not produce any errors.
    ;intl.error_level = E_WARNING
    [sqlite]
    ; http://php.net/sqlite.assoc-case
    ;sqlite.assoc_case = 0
    [sqlite3]
    ;sqlite3.extension_dir =
    [Pcre]
    ;PCRE library backtracking limit.
    ; http://php.net/pcre.backtrack-limit
    ;pcre.backtrack_limit=100000
    ;PCRE library recursion limit.
    ;Please note that if you set this value to a high number you may consume all
    ;the available process stack and eventually crash PHP (due to reaching the
    ;stack size limit imposed by the Operating System).
    ; http://php.net/pcre.recursion-limit
    ;pcre.recursion_limit=100000
    [Pdo]
    ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
    ; http://php.net/pdo-odbc.connection-pooling
    ;pdo_odbc.connection_pooling=strict
    ;pdo_odbc.db2_instance_name
    [Pdo_mysql]
    ; If mysqlnd is used: Number of cache slots for the internal result set cache
    ; http://php.net/pdo_mysql.cache_size
    pdo_mysql.cache_size = 2000
    ; Default socket name for local MySQL connects. If empty, uses the built-in
    ; MySQL defaults.
    ; http://php.net/pdo_mysql.default-socket
    pdo_mysql.default_socket=
    [Phar]
    ; http://php.net/phar.readonly
    ;phar.readonly = On
    ; http://php.net/phar.require-hash
    ;phar.require_hash = On
    ;phar.cache_list =
    [mail function]
    ; For Win32 only.
    ; http://php.net/smtp
    SMTP = localhost
    ; http://php.net/smtp-port
    smtp_port = 25
    ; For Win32 only.
    ; http://php.net/sendmail-from
    ;sendmail_from = [email protected]
    ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
    ; http://php.net/sendmail-path
    ;sendmail_path =
    ; Force the addition of the specified parameters to be passed as extra parameters
    ; to the sendmail binary. These parameters will always replace the value of
    ; the 5th parameter to mail(), even in safe mode.
    ;mail.force_extra_parameters =
    ; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
    mail.add_x_header = On
    ; The path to a log file that will log all mail() calls. Log entries include
    ; the full path of the script, line number, To address and headers.
    ;mail.log =
    ; Log mail to syslog (Event Log on NT, not valid in Windows 95).
    ;mail.log = syslog
    [SQL]
    ; http://php.net/sql.safe-mode
    sql.safe_mode = Off
    [ODBC]
    ; http://php.net/odbc.default-db
    ;odbc.default_db = Not yet implemented
    ; http://php.net/odbc.default-user
    ;odbc.default_user = Not yet implemented
    ; http://php.net/odbc.default-pw
    ;odbc.default_pw = Not yet implemented
    ; Controls the ODBC cursor model.
    ; Default: SQL_CURSOR_STATIC (default).
    ;odbc.default_cursortype
    ; Allow or prevent persistent links.
    ; http://php.net/odbc.allow-persistent
    odbc.allow_persistent = On
    ; Check that a connection is still valid before reuse.
    ; http://php.net/odbc.check-persistent
    odbc.check_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    ; http://php.net/odbc.max-persistent
    odbc.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    ; http://php.net/odbc.max-links
    odbc.max_links = -1
    ; Handling of LONG fields. Returns number of bytes to variables. 0 means
    ; passthru.
    ; http://php.net/odbc.defaultlrl
    odbc.defaultlrl = 4096
    ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
    ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
    ; of odbc.defaultlrl and odbc.defaultbinmode
    ; http://php.net/odbc.defaultbinmode
    odbc.defaultbinmode = 1
    ;birdstep.max_links = -1
    [Interbase]
    ; Allow or prevent persistent links.
    ibase.allow_persistent = 1
    ; Maximum number of persistent links. -1 means no limit.
    ibase.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    ibase.max_links = -1
    ; Default database name for ibase_connect().
    ;ibase.default_db =
    ; Default username for ibase_connect().
    ;ibase.default_user =
    ; Default password for ibase_connect().
    ;ibase.default_password =
    ; Default charset for ibase_connect().
    ;ibase.default_charset =
    ; Default timestamp format.
    ibase.timestampformat = "%Y-%m-%d %H:%M:%S"
    ; Default date format.
    ibase.dateformat = "%Y-%m-%d"
    ; Default time format.
    ibase.timeformat = "%H:%M:%S"
    [MySQL]
    ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
    ; http://php.net/mysql.allow_local_infile
    mysql.allow_local_infile = On
    ; Allow or prevent persistent links.
    ; http://php.net/mysql.allow-persistent
    mysql.allow_persistent = On
    ; If mysqlnd is used: Number of cache slots for the internal result set cache
    ; http://php.net/mysql.cache_size
    mysql.cache_size = 2000
    ; Maximum number of persistent links. -1 means no limit.
    ; http://php.net/mysql.max-persistent
    mysql.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    ; http://php.net/mysql.max-links
    mysql.max_links = -1
    ; Default port number for mysql_connect(). If unset, mysql_connect() will use
    ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
    ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
    ; at MYSQL_PORT.
    ; http://php.net/mysql.default-port
    mysql.default_port =
    ; Default socket name for local MySQL connects. If empty, uses the built-in
    ; MySQL defaults.
    ; http://php.net/mysql.default-socket
    mysql.default_socket =
    ; Default host for mysql_connect() (doesn't apply in safe mode).
    ; http://php.net/mysql.default-host
    mysql.default_host =
    ; Default user for mysql_connect() (doesn't apply in safe mode).
    ; http://php.net/mysql.default-user
    mysql.default_user =
    ; Default password for mysql_connect() (doesn't apply in safe mode).
    ; Note that this is generally a *bad* idea to store passwords in this file.
    ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
    ; and reveal this password! And of course, any users with read access to this
    ; file will be able to reveal the password as well.
    ; http://php.net/mysql.default-password
    mysql.default_password =
    ; Maximum time (in seconds) for connect timeout. -1 means no limit
    ; http://php.net/mysql.connect-timeout
    mysql.connect_timeout = 60
    ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
    ; SQL-Errors will be displayed.
    ; http://php.net/mysql.trace-mode
    mysql.trace_mode = Off
    [MySQLi]
    ; Maximum number of persistent links. -1 means no limit.
    ; http://php.net/mysqli.max-persistent
    mysqli.max_persistent = -1
    ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
    ; http://php.net/mysqli.allow_local_infile
    ;mysqli.allow_local_infile = On
    ; Allow or prevent persistent links.
    ; http://php.net/mysqli.allow-persistent
    mysqli.allow_persistent = On
    ; Maximum number of links. -1 means no limit.
    ; http://php.net/mysqli.max-links
    mysqli.max_links = -1
    ; If mysqlnd is used: Number of cache slots for the internal result set cache
    ; http://php.net/mysqli.cache_size
    mysqli.cache_size = 2000
    ; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
    ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
    ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
    ; at MYSQL_PORT.
    ; http://php.net/mysqli.default-port
    mysqli.default_port = 3306
    ; Default socket name for local MySQL connects. If empty, uses the built-in
    ; MySQL defaults.
    ; http://php.net/mysqli.default-socket
    mysqli.default_socket =
    ; Default host for mysql_connect() (doesn't apply in safe mode).
    ; http://php.net/mysqli.default-host
    mysqli.default_host =
    ; Default user for mysql_connect() (doesn't apply in safe mode).
    ; http://php.net/mysqli.default-user
    mysqli.default_user =
    ; Default password for mysqli_connect() (doesn't apply in safe mode).
    ; Note that this is generally a *bad* idea to store passwords in this file.
    ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
    ; and reveal this password! And of course, any users with read access to this
    ; file will be able to reveal the password as well.
    ; http://php.net/mysqli.default-pw
    mysqli.default_pw =
    ; Allow or prevent reconnect
    mysqli.reconnect = Off
    [mysqlnd]
    ; Enable / Disable collection of general statistics by mysqlnd which can be
    ; used to tune and monitor MySQL operations.
    ; http://php.net/mysqlnd.collect_statistics
    mysqlnd.collect_statistics = On
    ; Enable / Disable collection of memory usage statistics by mysqlnd which can be
    ; used to tune and monitor MySQL operations.
    ; http://php.net/mysqlnd.collect_memory_statistics
    mysqlnd.collect_memory_statistics = Off
    ; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
    ; http://php.net/mysqlnd.net_cmd_buffer_size
    ;mysqlnd.net_cmd_buffer_size = 2048
    ; Size of a pre-allocated buffer used for reading data sent by the server in
    ; bytes.
    ; http://php.net/mysqlnd.net_read_buffer_size
    ;mysqlnd.net_read_buffer_size = 32768
    [OCI8]
    ; Connection: Enables privileged connections using external
    ; credentials (OCI_SYSOPER, OCI_SYSDBA)
    ; http://php.net/oci8.privileged-connect
    ;oci8.privileged_connect = Off
    ; Connection: The maximum number of persistent OCI8 connections per
    ; process. Using -1 means no limit.
    ; http://php.net/oci8.max-persistent
    ;oci8.max_persistent = -1
    ; Connection: The maximum number of seconds a process is allowed to
    ; maintain an idle persistent connection. Using -1 means idle
    ; persistent connections will be maintained forever.
    ; http://php.net/oci8.persistent-timeout
    ;oci8.persistent_timeout = -1
    ; Connection: The number of seconds that must pass before issuing a
    ; ping during oci_pconnect() to check the connection validity. When
    ; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
    ; pings completely.
    ; http://php.net/oci8.ping-interval
    ;oci8.ping_interval = 60
    ; Connection: Set this to a user chosen connection class to be used
    ; for all pooled server requests with Oracle 11g Database Resident
    ; Connection Pooling (DRCP). To use DRCP, this value should be set to
    ; the same string for all web servers running the same application,
    ; the database pool must be configured, and the connection string must
    ; specify to use a pooled server.
    ;oci8.connection_class =
    ; High Availability: Using On lets PHP receive Fast Application
    ; Notification (FAN) events generated when a database node fails. The
    ; database must also be configured to post FAN events.
    ;oci8.events = Off
    ; Tuning: This option enables statement caching, and specifies how
    ; many statements to cache. Using 0 disables statement caching.
    ; http://php.net/oci8.statement-cache-size
    ;oci8.statement_cache_size = 20
    ; Tuning: Enables statement prefetching and sets the default number of
    ; rows that will be fetched automatically after statement execution.
    ; http://php.net/oci8.default-prefetch
    ;oci8.default_prefetch = 100
    ; Compatibility. Using On means oci_close() will not close
    ; oci_connect() and oci_new_connect() connections.
    ; http://php.net/oci8.old-oci-close-semantics
    ;oci8.old_oci_close_semantics = Off
    [PostgreSQL]
    ; Allow or prevent persistent links.
    ; http://php.net/pgsql.allow-persistent
    pgsql.allow_persistent = On
    ; Detect broken persistent links always with pg_pconnect().
    ; Auto reset feature requires a little overheads.
    ; http://php.net/pgsql.auto-reset-persistent
    pgsql.auto_reset_persistent = Off
    ; Maximum number of persistent links. -1 means no limit.
    ; http://php.net/pgsql.max-persistent
    pgsql.max_persistent = -1
    ; Maximum number of links (persistent+non persistent). -1 means no limit.
    ; http://php.net/pgsql.max-links
    pgsql.max_links = -1
    ; Ignore PostgreSQL backends Notice message or not.
    ; Notice message logging require a little overheads.
    ; http://php.net/pgsql.ignore-notice
    pgsql.ignore_notice = 0
    ; Log PostgreSQL backends Notice message or not.
    ; Unless pgsql.ignore_notice=0, module cannot log notice message.
    ; http://php.net/pgsql.log-notice
    pgsql.log_notice = 0
    [Sybase-CT]
    ; Allow or prevent persistent links.
    ; http://php.net/sybct.allow-persistent
    sybct.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    ; http://php.net/sybct.max-persistent
    sybct.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    ; http://php.net/sybct.max-links
    sybct.max_links = -1
    ; Minimum server message severity to display.
    ; http://php.net/sybct.min-server-severity
    sybct.min_server_severity = 10
    ; Minimum client message severity to display.
    ; http://php.net/sybct.min-client-severity
    sybct.min_client_severity = 10
    ; Set per-context timeout
    ; http://php.net/sybct.timeout
    ;sybct.timeout=
    ;sybct.packet_size
    ; The maximum time in seconds to wait for a connection attempt to succeed before returning failure.
    ; Default: one minute
    ;sybct.login_timeout=
    ; The name of the host you claim to be connecting from, for display by sp_who.
    ; Default: none
    ;sybct.hostname=
    ; Allows you to define how often deadlocks are to be retried. -1 means "forever".
    ; Default: 0
    ;sybct.deadlock_retry_count=
    [bcmath]
    ; Number of decimal digits for all bcmath functions.
    ; http://php.net/bcmath.scale
    bcmath.scale = 0
    [browscap]
    ; http://php.net/browscap
    ;browscap = extra/browscap.ini
    [Session]
    ; Handler used to store/retrieve data.
    ; http://php.net/session.save-handler
    session.save_handler = files
    ; Argument passed to save_handler. In the case of files, this is the path
    ; where data files are stored. Note: Windows users have to change this
    ; variable in order to use PHP's session functions.
    ; The path can be defined as:
    ; session.save_path = "N;/path"
    ; where N is an integer. Instead of storing all the session files in
    ; /path, what this will do is use subdirectories N-levels deep, and
    ; store the session data in those directories. This is useful if you
    ; or your OS have problems with lots of files in one directory, and is
    ; a more efficient layout for servers that handle lots of sessions.
    ; NOTE 1: PHP will not create this directory structure automatically.
    ; You can use the script in the ext/session dir for that purpose.
    ; NOTE 2: See the section on garbage collection below if you choose to
    ; use subdirectories for session storage
    ; The file storage module creates files using mode 600 by default.
    ; You can change that by using
    ; session.save_path = "N;MODE;/path"
    ; where MODE is the octal representation of the mode. Note that this
    ; does not overwrite the process's umask.
    ; http://php.net/session.save-path
    ;session.save_path = "/tmp"
    ; Whether to use cookies.
    ; http://php.net/session.use-cookies
    session.use_cookies = 1
    ; http://php.net/session.cookie-secure
    ;session.cookie_secure =
    ; This option forces PHP to fetch and use a cookie for storing and maintaining
    ; the session id. We encourage this operation as it's very helpful in combating
    ; session hijacking when not specifying and managing your own session id. It is
    ; not the end all be all of session hijacking defense, but it's a good start.
    ; http://php.net/session.use-only-cookies
    session.use_only_cookies = 1
    ; Name of the session (used as cookie name).
    ; http://php.net/session.name
    session.name = PHPSESSID
    ; Initialize session on request startup.
    ; http://php.net/session.auto-start
    session.auto_start = 0
    ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
    ; http://php.net/session.cookie-lifetime
    session.cookie_lifetime = 0
    ; The path for which the cookie is valid.
    ; http://php.net/session.cookie-path
    session.cookie_path = /
    ; The domain for which the cookie is valid.
    ; http://php.net/session.cookie-domain
    session.cookie_domain =
    ; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
    ; http://php.net/session.cookie-httponly
    session.cookie_httponly =
    ; Handler used to serialize data. php is the standard serializer of PHP.
    ; http://php.net/session.serialize-handler
    session.serialize_handler = php
    ; Defines the probability that the 'garbage collection' process is started
    ; on every session initialization. The probability is calculated by using
    ; gc_probability/gc_divisor. Where session.gc_probability is the numerator
    ; and gc_divisor is the denominator in the equation. Setting this value to 1
    ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
    ; the gc will run on any give request.
    ; Default Value: 1
    ; Development Value: 1
    ; Production Value: 1
    ; http://php.net/session.gc-probability
    session.gc_probability = 1
    ; Defines the probability that the 'garbage collection' process is started on every
    ; session initialization. The probability is calculated by using the following equation:
    ; gc_probability/gc_divisor. Where session.gc_probability is the numerator and
    ; session.gc_divisor is the denominator in the equation. Setting this value to 1
    ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
    ; the gc will run on any give request. Increasing this value to 1000 will give you
    ; a 0.1% chance the gc will run on any give request. For high volume production servers,
    ; this is a more efficient approach.
    ; Default Value: 100
    ; Development Value: 1000
    ; Production Value: 1000
    ; http://php.net/session.gc-divisor
    session.gc_divisor = 1000
    ; After this number of seconds, stored data will be seen as 'garbage' and
    ; cleaned up by the garbage collection process.
    ; http://php.net/session.gc-maxlifetime
    session.gc_maxlifetime = 1440
    ; NOTE: If you are using the subdirectory option for storing session files
    ; (see session.save_path above), then garbage collection does *not*
    ; happen automatically. You will need to do your own garbage
    ; collection through a shell script, cron entry, or some other method.
    ; For example, the following script would is the equivalent of
    ; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
    ; find /path/to/sessions -cmin +24 | xargs rm
    ; PHP 4.2 and less have an undocumented feature/bug that allows you to
    ; to initialize a session variable in the global scope.
    ; PHP 4.3 and later will warn you, if this feature is used.
    ; You can disable the feature and the warning separately. At this time,
    ; the warning is only displayed, if bug_compat_42 is enabled. This feature
    ; introduces some serious security problems if not handled correctly. It's
    ; recommended that you do not use this feature on production servers. But you
    ; should enable this on development servers and enable the warning as well. If you
    ; do not enable the feature on development servers, you won't be warned when it's
    ; used and debugging errors caused by this can be difficult to track down.
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/session.bug-compat-42
    session.bug_compat_42 = Off
    ; This setting controls whether or not you are warned by PHP when initializing a
    ; session value into the global space. session.bug_compat_42 must be enabled before
    ; these warnings can be issued by PHP. See the directive above for more information.
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/session.bug-compat-warn
    session.bug_compat_warn = Off
    ; Check HTTP Referer to invalidate externally stored URLs containing ids.
    ; HTTP_REFERER has to contain this substring for the session to be
    ; considered as valid.
    ; http://php.net/session.referer-check
    session.referer_check =
    ; How many bytes to read from the file.
    ; http://php.net/session.entropy-length
    ;session.entropy_length = 32
    ; Specified here to create the session id.
    ; http://php.net/session.entropy-file
    ; Defaults to /dev/urandom
    ; On systems that don't have /dev/urandom but do have /dev/arandom, this will default to /dev/arandom
    ; If neither are found at compile time, the default is no entropy file.
    ; On windows, setting the entropy_length setting will activate the
    ; Windows random source (using the CryptoAPI)
    ;session.entropy_file = /dev/urandom
    ; Set to {nocache,private,public,} to determine HTTP caching aspects
    ; or leave this empty to avoid sending anti-caching headers.
    ; http://php.net/session.cache-limiter
    session.cache_limiter = nocache
    ; Document expires after n minutes.
    ; http://php.net/session.cache-expire
    session.cache_expire = 180
    ; trans sid support is disabled by default.
    ; Use of trans sid may risk your users security.
    ; Use this option with caution.
    ; - User may send URL contains active session ID
    ; to other person via. email/irc/etc.
    ; - URL that contains active session ID may be stored
    ; in publicly accessible computer.
    ; - User may access your site with the same session ID
    ; always using URL stored in browser's history or bookmarks.
    ; http://php.net/session.use-trans-sid
    session.use_trans_sid = 0
    ; Select a hash function for use in generating session ids.
    ; Possible Values
    ; 0 (MD5 128 bits)
    ; 1 (SHA-1 160 bits)
    ; This option may also be set to the name of any hash function supported by
    ; the hash extension. A list of available hashes is returned by the hash_algos()
    ; function.
    ; http://php.net/session.hash-function
    session.hash_function = 0
    ; Define how many bits are stored in each character when converting
    ; the binary hash data to something readable.
    ; Possible values:
    ; 4 (4 bits: 0-9, a-f)
    ; 5 (5 bits: 0-9, a-v)
    ; 6 (6 bits: 0-9, a-z, A-Z, "-", ",")
    ; Default Value: 4
    ; Development Value: 5
    ; Production Value: 5
    ; http://php.net/session.hash-bits-per-character
    session.hash_bits_per_character = 5
    ; The URL rewriter will look for URLs in a defined set of HTML tags.
    ; form/fieldset are special; if you include them here, the rewriter will
    ; add a hidden <input> field with the info which is otherwise appended
    ; to URLs. If you want XHTML conformity, remove the form entry.
    ; Note that all valid entries require a "=", even if no value follows.
    ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
    ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
    ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
    ; http://php.net/url-rewriter.tags
    url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
    ; Enable upload progress tracking in $_SESSION
    ; Default Value: On
    ; Development Value: On
    ; Production Value: On
    ; http://php.net/session.upload-progress.enabled
    ;session.upload_progress.enabled = On
    ; Cleanup the progress information as soon as all POST data has been read
    ; (i.e. upload completed).
    ; Default Value: On
    ; Development Value: On
    ; Production Value: On
    ; http://php.net/session.upload-progress.cleanup
    ;session.upload_progress.cleanup = On
    ; A prefix used for the upload progress key in $_SESSION
    ; Default Value: "upload_progress_"
    ; Development Value: "upload_progress_"
    ; Production Value: "upload_progress_"
    ; http://php.net/session.upload-progress.prefix
    ;session.upload_progress.prefix = "upload_progress_"
    ; The index name (concatenated with the prefix) in $_SESSION
    ; containing the upload progress information
    ; Default Value: "PHP_SESSION_UPLOAD_PROGRESS"
    ; Development Value: "PHP_SESSION_UPLOAD_PROGRESS"
    ; Production Value: "PHP_SESSION_UPLOAD_PROGRESS"
    ; http://php.net/session.upload-progress.name
    ;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS"
    ; How frequently the upload progress should be updated.
    ; Given either in percentages (per-file), or in bytes
    ; Default Value: "1%"
    ; Development Value: "1%"
    ; Production Value: "1%"
    ; http://php.net/session.upload-progress.freq
    ;session.upload_progress.freq = "1%"
    ; The minimum delay between updates, in seconds
    ; Default Value: 1
    ; Development Value: 1
    ; Production Value: 1
    ; http://php.net/session.upload-progress.min-freq
    ;session.upload_progress.min_freq = "1"
    [MSSQL]
    ; Allow or prevent persistent links.
    mssql.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    mssql.max_persistent = -1
    ; Maximum number of links (persistent+non persistent). -1 means no limit.
    mssql.max_links = -1
    ; Minimum error severity to display.
    mssql.min_error_severity = 10
    ; Minimum message severity to display.
    mssql.min_message_severity = 10
    ; Compatibility mode with old versions of PHP 3.0.
    mssql.compatability_mode = Off
    ; Connect timeout
    ;mssql.connect_timeout = 5
    ; Query timeout
    ;mssql.timeout = 60
    ; Valid range 0 - 2147483647. Default = 4096.
    ;mssql.textlimit = 4096
    ; Valid range 0 - 2147483647. Default = 4096.
    ;mssql.textsize = 4096
    ; Limits the number of records in each batch. 0 = all records in one batch.
    ;mssql.batchsize = 0
    ; Specify how datetime and datetim4 columns are returned
    ; On => Returns data converted to SQL server settings
    ; Off => Returns values as YYYY-MM-DD hh:mm:ss
    ;mssql.datetimeconvert = On
    ; Use NT authentication when connecting to the server
    mssql.secure_connection = Off
    ; Specify max number of processes. -1 = library default
    ; msdlib defaults to 25
    ; FreeTDS defaults to 4096
    ;mssql.max_procs = -1
    ; Specify client character set.
    ; If empty or not set the client charset from freetds.conf is used
    ; This is only used when compiled with FreeTDS
    ;mssql.charset = "ISO-8859-1"
    [Assertion]
    ; Assert(expr); active by default.
    ; http://php.net/assert.active
    ;assert.active = On
    ; Issue a PHP warning for each failed assertion.
    ; http://php.net/assert.warning
    ;assert.warning = On
    ; Don't bail out by default.
    ; http://php.net/assert.bail
    ;assert.bail = Off
    ; User-function to be called if an assertion fails.
    ; http://php.net/assert.callback
    ;assert.callback = 0
    ; Eval the expression with current error_reporting(). Set to true if you want
    ; error_reporting(0) around the eval().
    ; http://php.net/assert.quiet-eval
    ;assert.quiet_eval = 0
    [COM]
    ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
    ; http://php.net/com.typelib-file
    ;com.typelib_file =
    ; allow Distributed-COM calls
    ; http://php.net/com.allow-dcom
    ;com.allow_dcom = true
    ; autoregister constants of a components typlib on com_load()
    ; http://php.net/com.autoregister-typelib
    ;com.autoregister_typelib = true
    ; register constants casesensitive
    ; http://php.net/com.autoregister-casesensitive
    ;com.autoregister_casesensitive = false
    ; show warnings on duplicate constant registrations
    ; http://php.net/com.autoregister-verbose
    ;com.autoregister_verbose = true
    ; The default character set code-page to use when passing strings to and from COM objects.
    ; Default: system ANSI code page
    ;com.code_page=
    [mbstring]
    ; language for internal character representation.
    ; http://php.net/mbstring.language
    ;mbstring.language = Japanese
    ; internal/script encoding.
    ; Some encoding cannot work as internal encoding.
    ; (e.g. SJIS, BIG5, ISO-2022-*)
    ; http://php.net/mbstring.internal-encoding
    ;mbstring.internal_encoding = EUC-JP
    ; http input encoding.
    ; http://php.net/mbstring.http-input
    ;mbstring.http_input = auto
    ; http output encoding. mb_output_handler must be
    ; registered as output buffer to function
    ; http://php.net/mbstring.http-output
    ;mbstring.http_output = SJIS
    ; enable automatic encoding translation according to
    ; mbstring.internal_encoding setting. Input chars are
    ; converted to internal encoding by setting this to On.
    ; Note: Do _not_ use automatic encoding translation for
    ; portable libs/applications.
    ; http://php.net/mbstring.encoding-translation
    ;mbstring.encoding_translation = Off
    ; automatic encoding detection order.
    ; auto means
    ; http://php.net/mbstring.detect-order
    ;mbstring.detect_order = auto
    ; substitute_character used when character cannot be converted
    ; one from another
    ; http://php.net/mbstring.substitute-character
    ;mbstring.substitute_character = none;
    ; overload(replace) single byte functions by mbstring functions.
    ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
    ; etc. Possible values are 0,1,2,4 or combination of them.
    ; For example, 7 for overload everything.
    ; 0: No overload
    ; 1: Overload mail() function
    ; 2: Overload str*() functions
    ; 4: Overload ereg*() functions
    ; http://php.net/mbstring.func-overload
    ;mbstring.func_overload = 0
    ; enable strict encoding detection.
    ;mbstring.strict_detection = Off
    ; This directive specifies the regex pattern of content types for which mb_output_handler()
    ; is activated.
    ; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
    ;mbstring.http_output_conv_mimetype=
    [gd]
    ; Tell the jpeg decode to ignore warnings and try to create
    ; a gd image. The warning will then be displayed as notices
    ; disabled by default
    ; http://php.net/gd.jpeg-ignore-warning
    ;gd.jpeg_ignore_warning = 0
    [exif]
    ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
    ; With mbstring support this will automatically be converted into the encoding
    ; given by corresponding encode setting. When empty mbstring.internal_encoding
    ; is used. For the decode settings

    Hi, everything in the "Quick Reference" section should be commented out with ;
    You should change those settings further down in the php.ini file.
    Example:
    error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
    display_errors = Off
    Last edited by adrianx (2013-07-26 12:32:02)

  • PHP Upgrade -- Missing php.ini.pacsave?

    The front page news mentions having to reconfigure php after the upgrade this evening. It says to reference the php.ini.pacsave -- but this file doesn't exist on my machine. Was it not included or does anyone have a "copy" I can see?

    * update your php.ini; see php.ini.pacnew as reference
    It's also possible that a pacnew config wasn't even generated in the case that you left your previous config untouched..  pacnews are only generated if old configs have been modified.  If there are no custom settings to preserve, pacman simply replaces the old ones.
    Last edited by tdy (2009-09-23 02:37:35)

  • [SOLVED] Apache / PHP new install - sessions not working

    Hi,
    So I've just installed Apache and PHP from extra repository using pacman, everything seems to be working fine except PHP sessions!
    I'm testing this using 2 files, file 1 stores a variable into $_SESSION, file2 tries to access it - without success.
    I've chmoded the /tmp directory to 777. I've tested storing files in /tmp via PHP - which works.
    I've gone through the php.ini and online documentation and am at a loss - somebody, anybody, any ideas??
    File1:
    session_start();
    $_SESSION['test']='hi';
    var_dump($_SESSION);
    File2:
    session_start();
    var_dump($_SESSION);
    I'm accessing both the files in the same browser (Chromium) in different tabs as localhost/file1.php,file2.php
    Thanks,
    Jeremy
    Last edited by jeremyj11 (2012-12-10 11:46:26)

    Ok after wasting hours on this - SOLVED - .. by simply clearing the contents of /tmp
    bloody computers.

  • Php.ini sendmail_path directive in Mac OS 10.4.8

    Hi,
    I am taking a PHP progamming with MySql course and am working with email forms. My book tells me to edit my php.ini file and assign the path where sendmail is installed to the sendmail_path directive.
    In an old discussion forum I found that this would be:
    sendmail_path = /usr/sbin/sendmail -t -i
    in the php.ini file.
    But does OS 10.4.8 even use Sendmail? I did not find sendmail in the sbin directory.
    What would be the correct way to configure my php.ini file to be able to work with PHP e-mail forms?
    Any information or suggestions much appreciated.
    Best,
    Shelley

    OK, I now know that Tiger uses postfix as its mailer. So how do I configure my php.ini file to use postfix to deal with php email forms?
    Shelley

  • DW CS5 with PHP: no "register_long_arrays" in php.ini

    Mr. Powers:  I bought your book, “Adobe DW CS5 with PHP: Training from the Source.” I am running MAMP Pro 1.9.6 on a Mac Pro Intel, OS 10.6.8. Following your instructions in Chapter 2, I have changed ALL the settings per Table 2.1, EXCEPT “register_long_arrays” which I cannot find (searched every permutation in BBEdit) in either of the php.ini files listed. The php info v. 5.2.17 shows:
    Configuration File (php.ini) Path: /Applications/MAMP/conf/php5.2
    Loaded Configuration File: /Library/Application Support/appsolute/MAMP Pro/conf/php.ini
    and the “PHP Core” section shows “register_long_arrays” = On.
    Why can’t I find the setting in either php.ini file? Also, I have read that this setting has been deprecated in PHP 5.3; what does that mean to my configuration?
    You recommend matching certain settings to the host’s server configuration; it would be very useful in avoiding potential problems to have a complete list of these configuration/parameter recommendations for a prospective host, don’t you think?

    Thank you, SnakEyez02. At this point, I haven't gotten far enough to understand super-globals but I'm grateful for your help. After much head-banging, I believe the solution to my problem lies on this forum [ Re: Snow Leopard, MAMP php.ini Question ]. Though Mr. Powers recommends using MAMP Pro in the book, he doesn’t mention that changes made to settings in /Library/Application Support/appsolute/MAMP Pro/conf/php.ini are NOT LOADED and not reflected in the phpinfo.php file at subsequent server startups as they would be if I were using MAMP (not PRO).  In order for the settings changes to be loaded by MAMP Pro, editing must be done through the MAMP Pro interface menu /File/Edit Template/PHP 5.2.13 php.ini.
    Having opened that template, I'm now faced with a another unforeseen question:  what to do with
    [setting]  =  MAMP_error_reporting_MAMP
    when the book says that setting should be either “= On” or “= Off.”  If you can help me with this one, you’ll make my week!

  • [SOLVED] Apache + PHP + XDEBUG profiler refuses to write any files

    I'm trying to track down some performance problems and the xdebug profiler seems like the tool to use.  Unfortunately no matter what I try xdebug simply will not write an output file.
    I've searched these forums, and stackoverflow, and tried all suggestions.  Nothing helps.  No errors in log file.
    I've made a directory, /tmp/xdebug, owned by user http and with proper permissions.
    I've configured PHP with xdebug profiling enabled.  When I browse phpinfo via the web server, I see these settings for xdebug:
    xdebug.profiler_aggregate Off Off
    xdebug.profiler_append Off Off
    xdebug.profiler_enable On On
    xdebug.profiler_enable_trigger Off Off
    xdebug.profiler_output_dir /tmp/xdebug /tmp/xdebug
    xdebug.profiler_output_name xdebug_profile.out.%t-%R xdebug_profile.out.%t-%R
    Other features of xdebug work fine.  For example, using emacs and geben I can place breakpoints, step through code, etc...
    When I run php from the command line, I get the profile files written as expected.  For example:
    dave@apollo ~ % sudo -u http php -r "echo 1;"
    1%
    dave@apollo ~ % ls -lthr /tmp/xdebug
    total 4.0K
    -rw-r--r-- 1 http http 146 Nov 25 17:49 xdebug_profile.out.1385430597-
    That shows that user http can write to the directory.  And shows that PHP is configured to dump the files.  However no matter how I request a page from apache, nothing is written.  I'm completely at a loss.  Any help is appreciated.
    Last edited by Dave Cohen (2014-02-23 18:20:10)

    Hello.
    Just encountered the same problem. After long research it turned out that here in Arch https is launched with PrivateTmp=True. This means that when such process (including any its child, and including PHP and its library XDebug) tries to open "/tmp/*", it gets redirected to "/tmp/systemd-private-??????/tmp/*", also "/var/tmp/*" redirects to "/var/tmp/systemd-private-??????/tmp/*". So any directory you create in /tmp/ will not be used.
    So the solution to this problem will be to use some path outside of /tmp, e.g. /srv/xdebug, or /var/log/xdebug, or anything. Make sure to create that directory and make it writeable for http user.
    Also check your php.ini and ensure that you either have open_basedir disabled or that it includes your profiler_output_dir.
    Last edited by MarSoft (2014-02-23 15:36:15)

  • Where is the sql file store in & Where can I find php.ini on Mac osx client

    In windows xp i can find the sql file in side the folder of MySQL and I can find php.ini in the C directory under the php's folder but in mac os Icannot find it could anyone tell me where it is and how can I find thanks.

    Hi--
    apples-Computer:/usr/local/mysql apple$ cd data
    -bash: cd: data: Permission denied
    apples-Computer:/usr/local/mysql apple$ sudo sh
    Password:
    apples-Computer:/usr/local/mysql apple$ cd data
    -bash: cd: data: Permission denied
    apples-Computer:/usr/local/mysql apple$ cd data
    -bash: cd: data: Permission denied
    apples-Computer:/usr/local/mysql apple$ chmod +rw
    data
    chmod: data: Operation not permitted
    It looks to me like you haven't gained root access in the examples above. If you follow Niel's example:
    <pre class="command">sudo sh</pre>you should get a different prompt when you actually are the root user:
    <pre class="command">sh-2.05b#</pre>because you'd be changing shells from bash to sh.
    I'd like to set the folder /mysql/data to except me
    for coppy database folder
    How can I get the permittion to access the
    /mysql/data folder
    You should be able to do anything to those files without changing permissions if you're the root user.
    But, just for your information, I never directly move the database files. If I want to move a database between computers, I always use the mysqldump command and redirect it to a file:
    <pre class="command">/usr/local/mysql/bin/mysqldump --add-drop-table -u username -p db_name > /path/to/output/file.sql</pre>That makes a single text file with all the SQL commands necessary to build your database tables and populate them with your data. If you want to restrict it to just one table from a database, you can add the table name after the db_name:
    <pre class="command">/usr/local/mysql/bin/mysqldump --add-drop-table -u username -p db_name table_name > /path/to/output/file.sql</pre>To import that file into another machine, you have to create the database first, which you could do with phpAdmin. Then, just import the tables and data like this:
    <pre class="command">/usr/local/mysql/bin/mysql -u root -p db_name < /path/to/output/file.sql</pre>That'll create all your tables and populate them with your data.
    If you copy your databases this way, you're much less likely to run into trouble with compatibility issues if you're moving between machines with different versions of MySQL.
    charlie

  • Changes to php.ini not taking effect

    I'm running Leopard 10.5.8 with the Apple-supplied versions of PHP (5.2.10) and Apache (2.2.11). Changes made to the /etc/php.ini file are not taking effect after stop/start of Apache. phpinfo() and shell command php -i confirm the 'status quo'. The php.ini file permissions are 444 with root/wheel ownership. It was copied from the php.ini.default file that came with the php distribution. Here's what I'm trying to change - seems pretty like this should be pretty basic stuff:
    include_path = ".:/usr/local/some_directory"
    // Original entry in the php.ini.default file was commented out
    // The directory '/usr/local/some_directory' exists
    // phpinfo() only shows include_path = .:
    magicquotesgpc = Off
    // Original entry in the php.ini.default value was 'On'
    // phpinfo() shows magicquotesgpc = Off
    I've been all over the php.net website and cannot identify my error. Shouldn't the changes to the php.ini file should be interpreted immediately after restarting Apache?
    Has anyone experienced a similar problem? Suggestions for fixing this malfunction would be greatly appreciated. I know I can hard code workarounds into my PHP code but that really defeats the whole purpose of even having a php.ini file....

    Was able to successfully implement these changes on a different Mac OSX 10.5.8 system. Different architecture (1st system is MBP, 2nd system is MB) although each system has all software updates installed and is up-to-date. Copied php.ini file from MB to MBP and problematic settings were corrected. Ran /developer/applications/utilities/filemerge.app to check for differences between the two php.ini files. Found one (line 305):
    Failing entry: error_reporting = E_ALL
    Working entry: error_reporting = E_ALL & ~E_NOTICE
    I took out E_NOTICE to help with debugging as per instructions from php.net/manual/en/errorfunc.configuration.php
    Go figure....

  • [SOLVED] Redis php module ?

    Hey everybody
    I tried to get phpbb and redis to work together. phpBB3 accepts a number of caches, most of them like memcache and apc has a relation to php on a package level. But redis does not seem to have that.
    So i talked with a guy on #redis and he said he had the same problem and made his own php library for redis.
    Here: https://github.com/nicolasff/phpredis
    So now the big question, can something like that be done in arch ? So you can activate a redis.so module in httpd.conf or php.ini (cant remember which one) so it just works, or a php-redis package. Im sure you can tell from his link.
    Wak
    Related reading:
    http://stackoverflow.com/questions/2001 … with-redis
    Edit: Found it in the AUR, still would be nice to have in the official repos. Now AUR are no longer a mistery for me. Thx wiki
    Last edited by DoYouSpeakWak (2012-02-23 22:56:12)

    Hey everybody
    I tried to get phpbb and redis to work together. phpBB3 accepts a number of caches, most of them like memcache and apc has a relation to php on a package level. But redis does not seem to have that.
    So i talked with a guy on #redis and he said he had the same problem and made his own php library for redis.
    Here: https://github.com/nicolasff/phpredis
    So now the big question, can something like that be done in arch ? So you can activate a redis.so module in httpd.conf or php.ini (cant remember which one) so it just works, or a php-redis package. Im sure you can tell from his link.
    Wak
    Related reading:
    http://stackoverflow.com/questions/2001 … with-redis
    Edit: Found it in the AUR, still would be nice to have in the official repos. Now AUR are no longer a mistery for me. Thx wiki
    Last edited by DoYouSpeakWak (2012-02-23 22:56:12)

  • MAMP - php.ini problem

    Going through a Lynda training in php. Lynda probably creates more questions than answers, no?
    Anyway, downloaded MAMP.
    Apache looks good. MySQL looks good. I am having trouble configuring the php.ini.
    [quote]cd /usr/local/php5/lib/ [/quote] produces "no such file or directory" in Terminal, using the base root directory. What am I doing wrong?

    cd /usr/local/php5/lib/ produces "no such file or directory" in Terminal, using the base root directory. What am I doing wrong?
    Sounds like you haven't installed PHP in the way lynda.com expects.
    There's not much more anyone can say on this without knowing what you did (or didn't do).

  • Where is php.ini loated in 10.5.7?

    I am trying to locate my php.ini file in os 10.5.7. I'd appreciate it if someone could let me know where that file is located. I need to uncomment the line "error_reporting = E_ALL" and "turn on" display_errors.
    The lynda.com tutorial I've been following says the php.ini file can be located by typing cd /usr/local/php5/lib/ in the Terminal. I have a feeling that the file is no longer located here.
    Thanks for your any help you can provide.
    Chris

    This site will get you fixed up.
    http://foundationphp.com/tutorials/php_leopard.php
    Basically you need to create a php.ini from php.ini.default located in /private/etc
    Eric

  • Where is PHP.ini Mac OS X ,  XAMPP Server

    Here is the path, where you can find PHP.ini in your macbook, if you're using XAMPP server .

    keg55 wrote:
    Go back into the App Store, login with your Apple ID then press/hold the Options/Alt key and click on the Purchases tab at the top. You should see Lion available to install. Click INSTALL and Lion will redownload. Just remember NOT to continue with the installation after it downloads.
    Very strange! This is what I get when I follow your instructions:

  • New/modified voltage.ini for MBM5 5.3.7.0 to fully support K8N Neo2 Platinum

    I have been fed up with the misread of MBM5 with Neo2 since i made the switch from Neo1
    Fixed :
    vcore fixed calibration
    +3.3v fixed (showed to low level)
    +5v calibrated
    +12v fixed ( showed to high level)
    New section to select Neo2 Platinum as the voltage configuration .
    Here's the whole voltage.ini file in the code box .
    Just save the previous one as voltage.ini.bak and paste this in a new file , restart MBM .
    Code: [Select]
    /* Voltage file for MBM                                   */
    /* Dated: 18-Jun-2004 08:41:37                            */
    /* [name] = sensorchip name -exactly- as in chipinfo.ini  */
    /*     VT = number of voltage configurations start at 0   */
    /*     Vx = where x is voltage config number              */
    /*          this holds the name of voltage config         */
    /*   VxVy = where x is the voltage config number          */
    /*          where y is the voltage number default this is */
    /*                  1 core 0                              */
    /*                  2 core 1 or 1.5 or 2.5                */
    /*                  3 3.3                                 */
    /*                  4 5                                   */
    /*                  5 12                                  */
    /*                  6 -12                                 */
    /*                  7 -5                                  */
    /*          this holds the register and calculation for   */
    /*          the voltage in question                       */
    /*          As of MBM 5.3.0.0 you can use a total of 16   */
    /*          calculation, if for example you want sensor   */
    /*          to show a voltage that MBM does not show      */
    /*          right now then add an 8th line, place your    */
    /*          code in there and set MBM voltage sensor 8    */
    /*          to MBM Fixed                                  */
    /*    255 = should always be used if a voltage is not     */
    /*          supported by this voltage config selection    */
    /*    $xx = a register from the sensor chip, any $xx      */
    /*          value in the string will be replaced with     */
    /*          the value from that register of the sensor    */
    /*          chip                                          */
    /*      B = option to use bank switch on ISA based        */
    /*          sensor chips, always use at end and always    */
    /*          followed by a bank number in hexadecimal      */
    /*      | = needed on dual sensor chips, always use it,   */
    /*          followed by 0 or 1 for the 1st or 2nd sensor  */
    /*          chip found                                    */
    /*      - = a calculation with a negative number is only  */
    /*          possible if that number is between ( )        */
    /*          example:  $12*(-0.4) will work                */
    /*                    $12*-0.4 will NOT work              */
    /*     // = remarks, don't use anything else              */
    /*      . = in ALL calculation use a dot as the decimal   */
    /*          symbol, even if it's not your normal decimal  */
    /*          symbol.                                       */
    /* if you feel you have a new voltage configuration for   */
    /* your board then feel free to send it to support at     */
    /* [email protected]                                    */
    [None]
    VT=0
    V0=None
    V0V1=255
    V0V2=255
    V0V3=255
    V0V4=255
    V0V5=255
    V0V6=255
    V0V7=255
    [National LM78]
    VT=2
    V0=LM78 Standard
    V0V1=$20*0.016
    V0V2=$21*0.016
    V0V3=$22*0.016
    V0V4=$23*0.016*1.68
    V0V5=$24*0.016*3.8
    V0V6=$25*(-0.016)*3.47
    V0V7=$26*(-0.016)*1.5
    V1=LM78 Epox
    V1V1=$20*0.016
    V1V2=$21*0.016
    V1V3=$22*0.016
    V1V4=$23*0.016*1.68
    V1V5=$24*0.016*4
    V1V6=$25*(-0.016)*4
    V1V7=$26*(-0.016)*1.666
    V2=LM78 Tekram
    V2V1=$20*0.016
    V2V2=$21*0.016
    V2V3=$22*0.016
    V2V4=$23*0.016*1.68
    V2V5=$24*0.016*3.8
    V2V6=$25*(-0.016)*3.94
    V2V7=$26*(-0.016)*1.5
    [National LM78j]
    VT=2
    V0=LM78j Standard
    V0V1=$20*0.016
    V0V2=$21*0.016
    V0V3=$22*0.016
    V0V4=$23*0.016*1.68
    V0V5=$24*0.016*3.8
    V0V6=$25*(-0.016)*3.47
    V0V7=$26*(-0.016)*1.5
    V1=LM78j Epox
    V1V1=$20*0.016
    V1V2=$21*0.016
    V1V3=$22*0.016
    V1V4=$23*0.016*1.68
    V1V5=$24*0.016*4
    V1V6=$25*(-0.016)*4
    V1V7=$26*(-0.016)*1.666
    V2=LM78j Tekram
    V2V1=$20*0.016
    V2V2=$21*0.016
    V2V3=$22*0.016
    V2V4=$23*0.016*1.68
    V2V5=$24*0.016*3.8
    V2V6=$25*(-0.016)*3.94
    V2V7=$26*(-0.016)*1.5
    [National LM79]
    VT=2
    V0=LM79 Standard
    V0V1=$20*0.016
    V0V2=$21*0.016
    V0V3=$22*0.016
    V0V4=$23*0.016*1.68
    V0V5=$24*0.016*3.8
    V0V6=$25*(-0.016)*3.47
    V0V7=$26*(-0.016)*1.5
    V1=LM79 Epox
    V1V1=$20*0.016
    V1V2=$21*0.016
    V1V3=$22*0.016
    V1V4=$23*0.016*1.68
    V1V5=$24*0.016*4
    V1V6=$25*(-0.016)*4
    V1V7=$26*(-0.016)*1.666
    V2=LM79 Tekram
    V2V1=$20*0.016
    V2V2=$21*0.016
    V2V3=$22*0.016
    V2V4=$23*0.016*1.68
    V2V5=$24*0.016*3.8
    V2V6=$25*(-0.016)*3.94
    V2V7=$26*(-0.016)*1.5
    [Winbond W83781D]
    VT=0
    V0=W83781D Standard
    V0V1=$20*0.016
    V0V2=$21*0.016
    V0V3=$22*0.016
    V0V4=$23*0.016*1.68
    V0V5=$24*0.016*3.8
    V0V6=$25*(-0.016)*3.47
    V0V7=$26*(-0.016)*1.5
    [Winbond W83782D]
    VT=1
    V0=W83782D Standard
    V0V1=$20*0.016
    V0V2=$21*0.016
    V0V3=$22*0.016
    V0V4=$23*0.016*1.68
    V0V5=$24*0.016*3.8
    V0V6=(($25*0.016)-3.6)*5.14+3.6
    V0V7=(($26*0.016)-3.6)*3.14+3.6
    V1=W83782D Abit BP6
    V1V1=$20*0.016
    V1V2=$21*0.016B$05
    V1V3=$22*0.016
    V1V4=$23*0.016*1.68
    V1V5=$24*0.016*3.8
    V1V6=(($25*0.016)-3.6)*5.14+3.6
    V1V7=(($26*0.016)-3.6)*3.14+3.6
    [Winbond W83783S]
    VT=3
    V0=W83783S Standard
    V0V1=$20*0.016
    V0V2=$21*0.016
    V0V3=$22*0.016
    V0V4=$23*0.016*1.68
    V0V5=$24*0.016*3.8
    V0V6=(($25*0.016)-3.6)*5.14+3.6
    V0V7=255
    V1=W83783S Soyo 7IZB+
    V1V1=$20*0.016
    V1V2=$21*0.016
    V1V3=$22*0.016
    V1V4=$23*0.016*1.68
    V1V5=$24*0.016*3.8
    V1V6=(($25*0.016)-3.6)*5.14+3.6
    V1V7=(($26*0.016)-3.6)*3.14+3.6
    V2=W83783S K7NCR18D/G
    V2V1=$20*0.016
    V2V2=$21*0.016
    V2V3=$22*0.016
    V2V4=$23*0.016*1.68
    V2V5=$24*0.016
    V2V6=$25*0.016
    V2v7=255
    V3=W83783S Tekram P6BX-A
    V3V1=$20*0.016                             
    V3V2=$21*0.016                             
    V3V3=$22*0.016                           
    V3V4=$23*0.016*1.68                             
    V3V5=$24*0.016*3.8                           
    V3V6=(($25*0.016)-3.6)*5.14+3.6                             
    V3V7=(($26*0.016)-3.6)*3.14+3.6
    [Genesys Logic GL518SM]
    VT=0
    V0=GL518SM Standard
    V0V1=($0D+2) * (2.38/128)
    V0V2=255
    V0V3=255
    V0V4=255
    V0V5=255
    V0V6=255
    V0V7=255
    [Genesys Logic GL520SM]
    VT=0
    V0=GL520SM Standard
    V0V1=($0D-0.18) * (2.43/128)
    V0V2=($14-0.18) * (2.43/128)
    V0V3=($15+3) * 2.5 * (2.43/256)
    V0V4=($13-0.18) * (2.43/128)*4.191489
    V0V5=255
    V0V6=255
    V0V7=255
    [Analog Devices ADM9240]
    VT=0
    V0=ADM9240 Standard
    V0V1=$21*0.014
    V0V2=$25*0.014
    V0V3=$22*0.0172
    V0V4=$23*0.026
    V0V5=$24*0.062
    V0V6=((($25*0.014)-(5+(5-($23*0.026)))) * 2.879-(5+(5-($23*0.026))))
    V0V7=255
    [National LM80]
    VT=2
    V0=LM80 Standard 1
    V0V1=$25*0.01392
    V0V2=255
    V0V3=$21*0.016431
    V0V4=$23*0.025050
    V0V5=$24*0.06
    V0V6=$23*0.105476 - $20*0.052105
    V0V7=255
    V1=LM80 QDI BrillianX IS
    V1V1=$23*0.014736842
    V1V2=255
    V1V3=$22*0.017366666
    V1V4=$20*0.02632653
    V1V5=$24*0.063156146
    V1V6=$25*(-0.064432432)
    V1V7=$26*(-0.027526881)
    V2=LM80 QDI BrillianX I
    V2V1=$23*0.014736842
    V2V2=255
    V2V3=$22*0.017366666
    V2V4=$20*0.02632653
    V2V5=$24*0.063156146
    V2V6=$25*(-0.070114942)
    V2V7=$26*(-0.027526881)
    [Winbond W83627HF]
    VT=11
    V0=W83627HF Standard 1
    V0V1=$20*0.016
    V0V2=$21*0.016
    V0V3=$22*0.016
    V0V4=$23*0.016*1.68
    V0V5=$24*0.016*3.8
    V0V6=(($25*0.016)-3.6)*5.14+3.6
    V0V7=(($26*0.016)-3.6)*3.14+3.6
    V1=W83627HF Standard 2
    V1V1=$20*0.016
    V1V2=$21*0.016
    V1V3=$22*0.016
    V1V4=$23*0.016*1.68
    V1V5=$24*0.016*3.8
    V1V6=(($25*0.016)-3.6)*5.14+3.6
    V1V7=255
    V2=W83627HF Standard 3
    V2V1=$20*0.016
    V2V2=$21*0.016
    V2V3=$22*0.016
    V2V4=$23*0.016*1.68
    V2V5=$24*0.016*3.8
    V2V6=$25*(-0.016)*3.47
    V2V7=$26*(-0.016)*1.5
    V3=W83627HF Standard 4
    V3V1=$20*0.016
    V3V2=$21*0.016
    V3V3=$22*0.016
    V3V4=$23*0.016*1.68
    V3V5=$24*0.016*3.8
    V3V6=$25*(-0.016)
    V3V7=$26*(-0.016)*1.5
    V4=W83627HF Standard 5
    V4V1=$20*0.016
    V4V2=$21*0.016
    V4V3=$22*0.016
    V4V4=$23*0.016*1.68
    V4V5=$24*0.016*3.8
    V4V6=$25*0.016
    V4V7=$26*0.016
    V5=W83627HF Abit BE7/ KX7
    V5V1=$20*0.016                  // core
    V5V2=$21*0.016                  // ddr
    V5V3=$22*0.016                  // 3.3
    V5V4=$23*0.016*1.68             // 5
    V5V5=$24*0.016*3.8              // 12
    V5V6=$25*0.016                  // vtt
    V5V7=$26*0.016                  // vddq
    V5V8=$51*0.016B5                // vbat
    V5V9=$50*0.016*1.515B5          // 5vsb
    V6=W83627HF Abit NF7
    V6V1=$20*0.016                  // CPU
    V6V2=$21*0.016                  // DDR
    V6V3=$22*0.016                  // +3.3V
    V6V4=$23*0.016*1.68             // +5V
    V6V5=$24*0.016*3.8              // +12V
    V6V6=(($25*0.016)-3.6)*5.14+3.6 // -12V
    V6V7=(($26*0.016)-3.6)*3.14+3.6 // -5V
    V6V8=$50*0.016*1.515B5          // +5V Stand By
    V6V9=$51*0.016B5                // +3.3V Dual
    V7=W83627HF EPoX 8RDA3+
    V7V1=$20*0.016                  // MB (Vdd)
    V7V2=$21*0.016                  // CPU
    V7V3=$22*0.016                  // RAM
    V7V4=$23*0.016*1.68             // +5V
    V7V5=$24*0.016*3.8              // +12V
    V7V6=$25*0.016                  // AGP
    V7V7=(($26*0.016)-3.6)*3.14+3.6 // -5V
    V7V8=$50*0.016*1.515B5          // +5V Stand By
    V7V9=$51*0.016B5                // +3.3V Dual
    V8=Abit IC7/IC7-G
    V8V1=$20*0.016 // core
    V8V2=$21*0.016 // ddr
    V8V3=$22*0.016 // 3.3
    V8V4=$23*0.016*1.68 // 5
    V8V5=$24*0.016*3.8 // 12
    V8V6=$25*0.016 // vtt
    V8V7=$26*0.016 // vddq
    V8V8=$51*0.016B5 // vbat
    V8V9=$50*0.016*1.515B5 // 5vsb
    V9=W83627HF Aopen MX3S-T / MX3SP-T
    V9V1=$20*0.016
    V9V2=$21*0.016
    V9V3=$22*0.016
    V9V4=$23*0.016*1.68
    V9V5=$24*0.016*3.8
    V9V6=(($25*0.016)-3.6)*5.14+3.6
    V9V7=$26*(-0.016)*1.5
    V10=W83627HF EPoX 8RDA/8RDA+
    V10V1=$20*0.016                  // NorthBridge (Vdd)
    V10V2=$21*0.016                  // CPU
    V10V3=$22*0.016                  // DDR RAM
    V10V4=$23*0.016*1.68             // +5V
    V10V5=$24*0.016*3.8              // +12V
    V10V6=(($25*0.016)-3.6)*5.14+3.6 // -12V
    V10V7=(($26*0.016)-3.6)*3.14+3.6 // -5V
    V10V8=$50*0.016*1.515B5          // +5V Stand By
    V10V9=$51*0.016B5                // +3.2 V Battery
    V11=W83627HF Standard 6
    V11V1=$20*0.016
    V11V2=$21*0.016
    V11V3=$22*0.016
    V11V4=$23*0.016*1.68
    V11V5=$24*0.016*3.8
    V11V6=(($25*0.016)-3.6)*5.14+3.6
    V11V7=(($26*0.016)-3.6)*3.14+3.6
    V11V8=$50*0.016*1.51B5         //5VSB
    V11V9=$51*0.016B5 //VBAT
    [Asus AS99127F]
    VT=2
    V0=AS99127F Standard 1
    V0V1=$20*0.016
    V0V2=$21*0.016
    V0V3=$22*0.016
    V0V4=$23*0.016*1.68
    V0V5=$24*0.016*3.8
    V0V6=($25*(-0.016))*3.97
    V0V7=($26*(-0.016))*1.503
    V1=AS99127F Standard 2
    V1V1=$20*0.016
    V1V2=$21*0.016
    V1V3=$22*0.016
    V1V4=$23*0.016*1.68
    V1V5=$24*0.016*3.8
    V1V6=(($25*0.016)-3.6)*5.14+3.6
    V1V7=(($26*0.016)-3.6)*3.14+3.6
    V2=ASUS P4S533-E
    V2V1=$20*0.016
    V2V2=255
    V2V3=$22*0.016
    V2V4=$23*0.016*1.68
    V2V5=$24*0.016*4
    V2V6=255
    V2V7=255
    [Texas Instruments THMC50]
    VT=0
    V0=THMC50 Standard
    V0V1=255
    V0V2=255
    V0V3=255
    V0V4=255
    V0V5=255
    V0V6=255
    V0V7=255
    [FairChild FMS2701]
    VT=0
    V0=FMS2701
    V0V1=255
    V0V2=255
    V0V3=255
    V0V4=255
    V0V5=255
    V0V6=255
    V0V7=255
    [Sis SiS5595]
    VT=0
    V0=Sis 5595 Standard
    V0V1=$20*0.016
    V0V2=255
    V0V3=$21*0.016
    V0V4=$23*0.016*1.68
    V0V5=$24*0.016*3.8
    V0V6=255
    V0V7=255
    [VIA Via686A]
    VT=2
    V0=VIA 686A Standard 1
    V0V1=(($22*25 + 133)/2628)*1.25
    V0V2=(($23*25 + 133)/2628)*1.25
    V0V3=(($24*25 + 133)/2628)*1.67
    V0V4=(($25*25 + 133)/2628)*2.6
    V0V5=(($26*25 + 133)/2628)*6.3
    V0V6=255
    V0V7=255
    V1=VIA 686A FIC SD-11
    V1V1=(($22*25 + 133)/2628)*1.143
    V1V2=(($23*25 + 133)/2628)*1.143
    V1V3=(($24*25 + 133)/2628)*1.67
    V1V4=(($25*25 + 133)/2628)*4
    V1V5=(($26*25 + 133)/2628)*9.6
    V1V6=255
    V1V7=255
    V2=VIA 686A Standard 2
    V2V1=(($22*25 + 133)/2628)*1.21
    V2V2=(($23*25 + 133)/2628)*1.25
    V2V3=(($24*25 + 133)/2628)*1.67
    V2V4=(($25*25 + 133)/2628)*2.6
    V2V5=(($26*25 + 133)/2628)*6.3
    V2V6=255
    V2V7=255
    [Winbond W83697HF]
    VT=13
    V0=W83697HF Standard 1
    V0V1=$20*0.016
    V0V2=$21*0.016
    V0V3=$22*0.016
    V0V4=$23*0.016*1.68
    V0V5=$24*0.016*3.8
    V0V6=(($25*0.016)-3.6)*5.14+3.6
    V0V7=(($26*0.016)-3.6)*3.14+3.6
    V1=W83697HF Standard 2
    V1V1=$20*0.016 // core
    V1V2=$22*0.016 // agp
    V1V3=$25*0.016 // 3.3
    V1V4=$23*0.016*1.68 // 5
    V1V5=$24*0.016*3.8 // 12
    V1V6=$26*0.016 // vdimm
    V1V7=255
    V2=W83697HF Standard 3
    V2V1=$20*0.016 // core
    V2V2=$26*0.016 // agp
    V2V3=$22*0.016 // 3.3
    V2V4=$23*0.016*1.68 // 5
    V2V5=$24*0.0643 // 12
    V2V6=$25*0.016 // ddr
    V2V7=255
    V3=W83697HF Standard 4
    V3V1=$20*0.016 // core
    V3V2=$22*0.016 // 1.5
    V3V3=$25*0.016 // 3.3
    V3V4=$23*0.016*1.68 // 5
    V3V5=$24*0.016*3.8 // 12
    V3V6=$26*0.016 // vdimm
    V3V7=255
    V4=W83697HF Standard 5
    V4V1=$20*0.016 // core
    V4V2=$25*0.016 // agp
    V4V3=$22*0.016 // 3.3
    V4V4=$23*0.016*1.68 // 5
    V4V5=$24*0.016*3.8 // 12
    V4V6=$26*0.016 // vdimm
    V4V7=255
    V5=ABIT KX7 333
    V5V1=$20*0.016
    V5V2=$21*0.016
    V5V3=$22*0.016
    V5V4=$23*0.016*1.68
    V5V5=$24*0.016*3.8
    V5V6=($25*(-0.016)*5.14)+5.91
    V5V7=($26*(-0.016)*3.14)+2.94
    V6=AsRock K7VT2
    V6V1=$20*0.016
    V6V2=$21*0.016
    V6V3=$22*0.016
    V6V4=$23*0.016*1.68
    V6V5=$24*0.016*3.8
    V6V6=$25*(-0.016)*3.78          //V -12.00
    V6V7=$26*(-0.016)*1.575         //V -5.00
    V7=AsRock K7S8X
    V7V1=$20*0.0164 // core
    V7V2=255
    V7V3=$22*0.0163 // 3.3
    V7V4=$23*0.0164*1.68 // 5
    V7V5=$24*0.0163*4 // 12
    V7V6=255
    V7V7=255
    V8=Abit AT7 MAX
    V8V1=$20*0.016 //VCORE
    V8V2=$22*0.016 //VIO
    V8V3=$23*0.016*1.68 //+5V
    V8V4=$24*0.016*3.8 //+12V
    V8V5=$25*0.016 //AGP
    V8V6=$26*0.016 //DDR
    V8V7=$50*0.016*1.51B5 //5VSB
    V8V8=$51*0.016B5 //VBAT
    V9=Asus P4SDX
    V9V1=$20*0.0154
    V9V2=$21*0.016
    V9V3=$22*0.016
    V9V4=$23*0.016*1.68
    V9V5=$24*0.016*4
    V9V6=255
    V9V7=255
    V10=W83697HF Standard 6
    V10V1=$20*0.016
    V10V2=$21*0.016
    V10V3=$22*0.016
    V10V4=$23*0.016*1.68
    V10V5=$24*0.016*3.8
    V10V6=(($25*0.016)-3.6)*5.14+3.6
    V10V7=(($26*0.016)-3.6)*3.14+3.6
    V10V8=$50*0.016*1.51B5         //5VSB
    V10V9=$51*0.016B5 //VBAT
    V11=W83697HF Epox 8K3A(+)
    V11V1=$20*0.016              // Core
    V11V2=$22*0.016              // AGP
    V11V3=$26*0.016              // DIMM
    V11V4=$25*0.016              // + 3.3
    V11V5=$23*0.016*1.68         // + 5
    V11V6=$24*0.016*3.8          // +12
    V11V7=$50*0.016*1.68B5      // 5VSB
    V11V8=$51*0.016B5            // VBAT
    V12=Abit KD7
    V12V1=$20*0.016                  // Vcore
    V12V2=$22*0.016                  // Vagp
    V12V3=$25*0.016                  // +3.3
    V12V4=$23*0.016*1.68             // +5
    V12V5=$24*0.016*3.8              // +12
    V12V6=$26*0.016                  // Vdimm
    V12V7=$51*0.016B5                // Vbat
    V12V8=$50*0.016*1.515B5          // 5Vsb
    V13=Cluster Labs CPU450
    V13V1=$20*0.016 // Core
    V13V2=$26*0.016 // RAM
    V13V3=$22*0.016 // 3.3
    V13V4=$23*0.016*1.69 // 5
    V13V5=$24*0.016*3.8 // 12
    V13V6=(($25*0.016)-3.6)*5.14+3.6  // -12
    V13V7=$51*0.016B5 // Battery
    [Analog Devices ADM1025]
    VT=0
    V0=ADM1025 Standard
    V0V1=$21*0.012
    V0V2=$20*0.013
    V0V3=$22*0.0172
    V0V4=$23*0.026
    V0V5=$24*0.062
    V0V6=((($25*0.014)-(5+(5-$23*0.026)) )* 2.879-(5+(5-$23*0.026)))
    V0V7=255
    [National LM87]
    VT=1
    V0=LM87 Standard 1
    V0V1=$21*0.014
    V0V2=255
    V0V3=$22*0.017366666
    V0V4=$23*0.016*1.632
    V0V5=$24*0.016*3.9
    V0V6=255
    V0V7=255
    V1=LM87 Standard 2
    V1V1=$21*0.014
    V1V2=$25*0.014
    V1V3=$22*0.017366666
    V1V4=$23*0.016*1.632
    V1V5=$24*0.016*3.9
    V1V6=255
    V1V7=255
    [VIA Via686B]
    VT=3
    V0=VIA 686B Standard
    V0V1=(($22*25 + 133)/2628)*1.25
    V0V2=(($23*25 + 133)/2628)*1.25
    V0V3=(($24*25 + 133)/2628)*1.67
    V0V4=(($25*25 + 133)/2628)*2.6
    V0V5=(($26*25 + 133)/2628)*6.3
    V0V6=255
    V0V7=255
    V1=VIA 686B ABIT VP6
    V1V1=(($22*25 + 133)/2628)*1.24
    V1V2=(($23*25 + 133)/2628)*1.25
    V1V3=(($24*25 + 133)/2628)*1.665
    V1V4=(($25*25 + 133)/2628)*2.54
    V1V5=(($26*25 + 133)/2628)*6.4
    V1V6=255
    V1V7=255
    V2=VIA 686B Asus A7VL-VM
    V2V1=(($22*25 + 133)/2628)*1.88
    V2V2=255
    V2V3=(($24*25 + 133)/2628)*1.66
    V2V4=(($25*25 + 133)/2628)*2.4
    V2V5=(($26*25 + 133)/2628)*16
    V2V6=255
    V2V7=255
    V3=VIA 686B MSI K7T Turbo
    V3V1=(($22*25 + 133)/2628)*1.20
    V3V2=255
    V3V3=(($24*25 + 133)/2628)*1.67
    V3V4=(($25*25 + 133)/2628)*2.6
    V3V5=(($26*25 + 133)/2628)*6.3
    V3V6=255
    V3V7=255
    [MySon MTP008]
    VT=1
    V0=MTP008 Standard 1
    V0V1=$20*0.016 // cpu 0
    V0V2=$23*0.016 // cpu 1
    V0V3=$21*0.016 // 3.3
    V0V4=$26*0.016 // 1.5
    V0V5=$22*0.016*3.9 // 12
    V0V6=255
    V0V7=255
    V1=MTP008 Standard 2
    V1V1=$20*0.0158 // cpu 0
    V1V2=$23*0.0158 // cpu 1
    V1V3=$21*0.016 // 3.3
    V1V4=$26*0.016*1.68 // 1.5
    V1V5=$22*0.016*3.9 // 12
    V1V6=255
    V1V7=255
    [National LM87 Dual]
    VT=1
    V0=LM87 Dual Standard
    V0V1=$21*0.014|1 // cpu 0
    V0V2=$25*0.014|0 // cpu 1
    V0V3=$22*0.0017366666|0 // 3.3
    V0V4=$23*0.016*1.632|1 // 5
    V0V5=$24*0.016*3.9|1 // 12
    V0V6=$25*0.014|0 // VTT
    V0V7=255
    V1=LM87 SM PIIIDME/370DE6
    V1V1=$21*0.0136|0 // cpu 0
    V1V2=$21*0.0136|1 // cpu 1
    V1V3=$22*0.017366666|0 // 3.3
    V1V4=$23*0.016*1.632|1 // 5
    V1V5=$24*0.016*3.9|1 // 12
    V1V6=255
    V1V7=255
    [ITE8712F]
    VT=13
    V0=ITE8712F Standard 1
    V0V1=$20*0.01565
    V0V2=$21*0.016
    V0V3=$22*0.016
    V0V4=$28*0.016 // vbat
    V0V5=$24*0.016*3.8
    V0V6=(($27*0.016)-3.6)*5.14+3.6
    V0V7=255
    V1=ITE8712F Standard 2
    V1V1=$20*0.01614 // cpu 0
    V1V2=$21*0.01614 // ??
    V1V3=$22*0.01614 // 3.3
    V1V4=$23*0.01614*1.68 // 5
    V1V5=$24*0.01614*3.9 // 12
    V1V6=255
    V1V7=255
    V2=ITE8712F Standard 3
    V2V1=$25*0.01614 // cpu 0
    V2V2=$21*0.016 // cpu 1
    V2V3=$22*0.016 // 3.3
    V2V4=$24*0.016 // 5
    V2V5=$23*0.01614*3.9 // 12
    V2V6=255
    V2V7=255
    V3=ITE8712F Standard 4
    V3V1=$20*0.016 //V P4
    V3V2=$21*0.016 //V AGP
    V3V3=$22*0.016 //V +3.3
    V3V4=$23*0.027 //V +5.00
    V3V5=$24*0.06564 //V +12.00
    V3V6=$25*0.016 + 4.25*($25*0.016 - 4.096) //V -12.00
    V3V7=$26*0.016 + 2.20*($26*0.016 - 4.096) //V -5.00
    V4=GA-8PE667
    V4V1=$20*0.01653                //V VCore
    V4V2=$21*0.016                  //V 1.5 line
    V4V3=$22*0.016                  //V +3.3
    V4V4=$23*0.02684                //V +5.00
    V4V5=$24*0.06398                //V +12.00
    V4V6=255                       
    V4V7=255 
    V5=CT-7NJS
    V5V1=$20*0.016    // CPU Core
    V5V2=$21*0.016    // +2.5
    V5V3=$22*0.016    // +3.3
    V5V4=$23*0.027    // +5.00
    V5V5=$24*0.06369  // +12.00
    V5V6=(($25*0.016)+(-3.299555556))*5.142857143  // -12
    V5V7=$26*0.016    // V_DDR
    V5V8=$27*0.016    // V_AGP
    V5V9=$28*0.016    // Battery
    V6=GA-8IK1100
    V6V1=$20*0.01565 // core
    V6V2=$23*0.016 // 2.5
    V6V3=$22*0.016 // 3.3
    V6V4=$24*0.016*1.68 // 5
    V6V5=$21*0.06564 // 12
    V6V6=$25*0,016 // 1.5
    V6V7=$27*0.016    // V_AGP
    V7=Shuttle SB61G
    V7V1=$20*0.016    // CPU Core
    V7V2=$21*0.016    // +2.5
    V7V3=$22*0.016    // +3.3
    V7V4=$23*0.027    // +5.00
    V7V5=$24*0.06369  // +12.00
    V7V6=(($25*0.016)+(-3.299555556))*5.142857143  // -12
    V7V7=$26*0.016    // V_DDR
    V7V8=$27*0.026    // +5VSB
    V7V9=$28*0.016    // Battery
    V8=GA-8IPE1000Pro
    V8V1=$20*0.01653                //V VCore
    V8V2=$21*0.016                  //V 2.5 line
    V8V3=$22*0.016                  //V +3.3
    V8V4=$23*0.032                  //V +5.00
    V8V5=$24*0.064                  //V +12.00
    V8V6=$28*0.016 //V Battery                       
    V8V7=255
    V9=GA-8KNXP
    V9V1=$20*0.016 // VCore CPU
    V9V2=$21*0.01565 // VMem DRAM
    V9V3=$22*0.016 // +3.3V
    V9V4=$23*0.032 // +5.00V
    V9V5=$24*0.064 // +12.00V
    V9V6=(($25*0.016)-3.6)*5.72 // -12V
    V9V7=(($26*0.016)-3.6)*2.33 // -5V
    V10=Gigabyte GA-7N400-L
    V10V1=$20*0.016    // V_core
    V10V2=$21*0.016    // ram
    V10V3=$22*0.016    // 3.3
    V10V4=$23*0.016*2.00  // 5
    V10V5=$24*0.016*4.00  // 12
    V10V6=$25*0.016    // AGP
    V10V7=$26*0.016 + 2.20*($26*0.016 - 4.096)  // -5V?
    V11=Asus A7V8X-X
    V11V1=$20*0.016            // Vcore
    V11V2=255
    V11V3=$22*0.016            // +3.3
    V11V4=$23*0.0265          // +5.00
    V11V5=$24*0.0654          // +12.00
    V11V6=255
    V11V7=255
    V12=GA-8PE667 Ultra
    V12V1=$20*0.01653                //V VCore
    V12V2=$21*0.016                  //V 1.5 line
    V12V3=$22*0.016                  //V +3.3
    V12V4=$23*0.02684 + .7           //V +5.00
    V12V5=$24*0.06398                //V +12.00
    V12V6=255
    V12V7=255
    V13=Elitegroup N2U400-A
    V13V1=$20*0.016    // CPU Core by MBM
    V13V2=$21*0.016    // Core 1 by MBM
    V13V3=($22+500)/185    // +3.3V by Bulli; min. 2.7V ($=0), max. 4V ($=255)
    V13V4=($23+400)/100 // +5V by Bulli; min. 4V ($=0), max. 6,5V ($=255)
    V13V5=($24+1100)/100 // +12V by Bulli; min. 11V ($=0), max. 13,5V ($=255)
    V13V6=-($25+1100)/100  // -12V by Bulli; min. -11V ($=0), max. -13,5V ($=255)
    V13V7=-($26+400)/100
    [ALi M5879]
    VT=2
    V0=ALi 5879 Standard 1
    V0V1=$22*0.0161 // cpu 0
    V0V2=255
    V0V3=$20*0.0161 // 3.3
    V0V4=$23*0.016*1.68 // 5
    V0V5=$21*0.016*3.8 // 12
    V0V6=255
    V0V7=255
    V1=Ali 5879 Standard 2
    V1V1=$22*0.0161 // cpu 0
    V1V2=255
    V1V3=$20*0.0161 // 3.3
    V1V4=$21*0.016*1.68 // 5
    V1V5=$23*0.016*3.4 // 12
    V1V6=255
    V1V7=255
    V2=Ali 5879 Standard 3
    V2V1=$22*0.0161 // cpu 0
    V2V2=255
    V2V3=$20*0.0161 // 3.3
    V2V4=$21*0.016*1.68 // 5
    V2V5=$23*0.016*3.41 // 12
    V2V6=255
    V2V7=255
    [Winbond W83L784R]
    VT=0
    V0=Winbond W83L784R Standard
    V0V1=$20*0.016
    V0V2=$21*0.016
    V0V3=$22*0.016
    V0V4=$23*0.016*1.68
    V0V5=255
    V0V6=255
    V0V7=255
    [Analog Devices ADM1024]
    VT=0
    V0=Analog Devices ADM1024 Standard
    V0V1=$21*0.014
    V0V2=$24*0.014
    V0V3=$22*0.0172
    V0V4=$23*0.026
    V0V5=$25*0.062
    V0V6=$20*0.013
    V0V7=255
    [Sis SiS5595 - rev 2.0]
    VT=1
    V0=Sis SiS5595 - rev 2.0 Standard 1
    V0V1=$20*0.016
    V0V2=255
    V0V3=$21*0.016
    V0V4=$22*0.016*1.68
    V0V5=$23*0.016*3.8
    V0V6=255
    V0V7=255
    V1=Sis SiS5595 - rev 2.0 Standard 2
    V1V1=$22*0.016
    V1V2=$23*0.016
    V1V3=$21*0.016
    V1V4=$20*0.016*1.68
    V1V5=255
    V1V6=255
    V1V7=255
    [Sis950 / ITE8705F]
    VT=13
    V0=Sis950 / ITE8705F -1
    V0V1=$20*0.01614 // cpu 0
    V0V2=$21*0.016 // 2.5
    V0V3=$22*0.016 // 3.3
    V0V4=$23*0.01614*1.68 // 5
    V0V5=$24*0.01614*4 // 12
    V0V6=$25*(-0.01614)*3.55 // -12
    V0V7=255
    V1=Sis950 / ITE8705F -2
    V1V1=$20*0.01565 // cpu 0
    V1V2=$21*0.016 // 2.5
    V1V3=$22*0.016 // 3.3
    V1V4=255
    V1V5=$24*0.01614*3.9 // 12
    V1V6=$27*(-0.01614)*3.47 // -12
    V1V7=$28*(-0.016)*1.503 // -5
    V2=Sis950 / ITE8705F -3
    V2V1=$20*0.01614 // cpu 0
    V2V2=$21*0.01614 // 2.5
    V2V3=$22*0.01614 // 3.3
    V2V4=$23*0.01614*1.68 // 5
    V2V5=$24*0.01614*3.9 // 12
    V2V6=$27*(-0.01614)*4 // -12
    V2V7=255
    V3=Sis950 / ITE8705F -4
    V3V1=$20*0.01565 // cpu 0
    V3V2=$21*0.016 // 2.5
    V3V3=$22*0.016 // 3.3
    V3V4=$23*0.016*1.68 // 5
    V3V5=$24*0.016*3.9 // 12
    V3V6=$27*(-0.016)*4.1 // -12
    V3V7=$28*(-0.016)*1.65 // -5
    V4=Sis950 / ITE8705F -5
    V4V1=$20*0.01614 // cpu 0
    V4V2=$21*0.01614 // 2.5
    V4V3=$22*0.01614 // 3.3
    V4V4=$23*0.01614*1.68 // 5
    V4V5=$24*0.01614*3.96 // 12
    V4V6=(($25*0.016)+(-3.299555556))*5.142857143
    V4V7=(($26*0.016)+(-2.792727273))*3.142857143
    V5=Sis950 / ITE8705F -6
    V5V1=$20*0.01630 // cpu 0
    V5V2=$21*0.01630 // 1.2
    V5V3=$22*0.01630 // 3.3
    V5V4=$23*0.01630*1.68 // 5
    V5V5=$24*0.01630*3.96 // 12
    V5V6=$25*0.01630 // ddr
    V5V7=$26*0.01630 // agp
    V6=Sis950 / ITE8705F -7
    V6V1=$20*0.016 // cpu 0
    V6V2=$24*0.016 // 2.5
    V6V3=$21*0.016 // 3.3
    V6V4=$22*0.016*1.68 // 5
    V6V5=$23*0.016*3.96 // 12
    V6V6=$25*0.016 // ddr
    V6V7=$26*0.016 // agp
    V7=SOYO DRAGON KT400 ULTRA PLATINUM
    V7V1=$20*0.01614 // cpu 0
    V7V2=$24*0.016 // 2.5
    V7V3=$21*0.01614  // 3.3
    V7V4=$22*0.016*1.69 // 5
    V7V5=$23*0.01614*4.02 // 12
    V7V6=$24*0.01614 // ddr
    V7V7=$25*0.01614          // agp
    V7V8=255
    V8=ECS L7S7A2
    V8V1=$20*0.01614 // cpu 0
    V8V2=255
    V8V3=$22*0.016          // ddr
    V8V4=255
    V8V5=255
    V8V6=255
    V8V7=255
    V9=GA-8SQ800ULTRA
    V9V1=$20*0.01614                        // cpu 0
    V9V2=$21*0.01614*1.300                  // 2.5
    V9V3=$22*0.01614*1.02                   // 3.3
    V9V4=$23*0.01614*1.68                   // 5
    V9V5=$24*0.01614*4.07                   // 12
    V9V6=(($25*0.016)+(-3.299555556))*5.16  //-12
    V9V7=(($26*0.016)+(-2.792727273))*3.68  //-5
    V9V8=$27*0.016                          // DDR
    V10=ECS L7S7A2
    V10V1=$20*0.01614          // cpu core
    V10V2=$21*0.016            // +2.5v (ddr)
    V10V3=$22*0.016            // +3.3v
    V10V4=$23*0.01614*1.68     // +5v
    V10V5=$24*0.01614*4        // +12v
    V10V6=$27*0.01614*1.68     // 5vsb
    V10V7=$28*0.016            // vbat
    V11=GA-8IK1100
    V11V1=$20*0.01565 // core
    V11V2=$22*0.016         // 3.3
    V11V3=$24*0.0268 // 5
    V11V4=$21*0.0736 // 12
    V11V5=$27*0.016    // V_AGP
    V12=Shuttle FX41
    V12V1=$20*0.016016 // CPU VCore 1.75 (modified)
    V12V2=$21*0.016 // VDDQ 3.3
    V12V3=$22*0.016 // 3.3
    V12V4=$23*0.016*1.68 // 5
    V12V5=$24*0.016*3.9 // 12
    V12V6=$27*(-0.016)*4.1 // -12
    V12V7=$28*(-0.016)*2.463 // -5 (modified)
    V13=SOYO KT400 DRAGON Lite
    V13V1=$20*0.01614 // CPU core
    V13V2=$24*0.01614 // DDR
    V13V3=$21*0.01614  // +3.3
    V13V4=$22*0.01614*1.663 // +5
    V13V5=$23*0.01614*3.94 // +12
    V13V6=$25*0.01614          // AGP
    [Genesys Logic GL525SM]
    VT=1
    V0=GL525SM Standard 1
    V0V1=$20+3 * (0.020078 * 1)
    V0V2=255
    V0V3=$22+3 * (0.020078 * 1)
    V0V4=$23-3 * (0.020078 * 5/3.5)
    V0V5=$24+3 * (0.020078 * (1.0+15.0/4.7))
    V0V6=$25+3 * (0.020078 * (210/28))
    V0V7=255
    V1=GL525SM Standard 2
    V1V1=$20+3 * (0.020078 * 1)
    V1V2=$21+3 * (0.019 *1)
    V1V3=$22+3 * (0.020078 * 1)
    V1V4=$23-3 * (0.020078 * 5/3.5)
    V1V5=$24+3 * (0.020078 * (1.0+15.0/4.7))
    V1V6=$25+3 * (0.020078 * (210/28))
    V1V7=255
    [Analog Devices ADM1024 Dual]
    VT=0
    V0=ADM1024 Dual Standard
    V0V1=$21*0.014|0 // core 0
    V0V2=$21*0.014|1 // core 1
    V0V3=$23*0.026|0 // 3.3
    V0V4=$20*0.026|0 // 5
    V0V5=$24*0.062|0 // 12
    V0V6=$20*0.010|1 // 1.5
    V0V7=255
    [Dallas SM DS1780]
    VT=0
    V0=Dallas DS1780 Standard
    V0V1=$21*0.014
    V0V2=$20*0.013
    V0V3=$22*0.017
    V0V4=$23*0.026
    V0V5=$24*0.0625
    V0V6=$25*0.096 - 29
    V0V7=255
    [Analog Devices ADM1025 Dual]
    VT=0
    V0=ADM1025 Dual Standard
    V0V1=$21*0.012|0 // core 0
    V0V2=$21*0.012|1 // core 1
    V0V3=$22*0.0172|0 // 3.3
    V0V4=$23*0.026|0 // 5
    V0V5=$24*0.062|0 // 12
    V0V6=((($25*0.014)-(5+(5-$23*0.026)) )* 2.879-(5+(5-$23*0.026)))
    V0V7=$20*0.013|1 // ??
    [Dallas SM DS1780 Dual]
    VT=2
    V0=Dallas DS1780 Dual Standard 1
    V0V1=$21*0.014|0 // core 0
    V0V2=$20*0.013|0 // 2.5
    V0V3=$22*0.017|0 // 3.3
    V0V4=$23*0.026|0 // 5
    V0V5=$24*0.0625|0 // 12
    V0V6=$25*0.096-29|0
    V0V7=255
    V1=Dallas DS1780 Dual Standard 2
    V1V1=$21*0.014|1 // core 0
    V1V2=$20*0.013|1 // 2.5
    V1V3=$22*0.017|1 // 3.3
    V1V4=$23*0.026|1 // 5
    V1V5=$24*0.0625|1 // 12
    V1V6=$25*0.096-29|1
    V1V7=255
    V2=Dell PWS 420
    V2V1=$21*0.014|0 // core 0
    V2V2=$20*0.013|0 // 2.5
    V2V3=$22*0.017|1 // 3.3
    V2V4=$23*0.026|0 // 5
    V2V5=$24*0.0625|0 // 12
    V2V6=255
    V2V7=255
    [Analog Devices ADM1030]
    VT=0
    V0=ADM1030 Standard
    V0V1=255
    V0V2=255
    V0V3=255
    V0V4=255
    V0V5=255
    V0V6=255
    V0V7=255
    [Analog Devices ADM1031]
    VT=0
    V0=ADM1031 Standard
    V0V1=255
    V0V2=255
    V0V3=255
    V0V4=255
    V0V5=255
    V0V6=255
    V0V7=255
    [ITE8693F]
    VT=0
    V0=ITE8693F Standard
    V0V1=$20*0.016
    V0V2=$21*0.016
    V0V3=$22*0.016
    V0V4=$23*0.016*1.28
    V0V5=$24*0.016*3.8
    V0V6=$25*(-0.016)*5.2
    V0V7=255
    [PC87366]
    VT=0
    V0=PC87366 Standard
    V0V1=255 // can't be done via ini file
    V0V2=255 // can't be done via ini file
    V0V3=255 // can't be done via ini file
    V0V4=255 // can't be done via ini file
    V0V5=255 // can't be done via ini file
    V0V6=255 // can't be done via ini file
    V0V7=255 // can't be done via ini file
    [VIA Via8231]
    VT=2
    V0=VIA8231 Standard 1
    V0V1=(($22*25 + 133)/2628)*1.25
    V0V2=(($23*25 + 133)/2628)*1.25
    V0V3=(($24*25 + 133)/2628)*1.67
    V0V4=(($25*25 + 133)/2628)*2.6
    V0V5=(($26*25 + 133)/2628)*6.3
    V0V6=(($27*25 + 133)/2628)*2.6
    V0V7=(($28*25 + 133)/2628)*6.3
    V1=VIA8231 Standard 2
    V1V1=(($24-3) * (2+10) / 10) / 95.8 // core 0
    V1V2=(($23-3) * (2+10) / 10) / 95.8 // 2.5
    V1V3=(($26-3) * (2+3) / 3) / 95.8 // 3.3
    V1V4=(($22-3) * (14+10) / 10) / 95.8 // 5
    V1V5=(($25-3) * (47+10) / 10) / 95.8 // 12
    V1V6=255
    V1V7=255
    v2=EPIA Ezra
    V2V1=(($24*25 + 133)/2628)*1.04         // core0
    V2V2=(($23*25 + 133)/2628)*1.26         // 2.5
    V2V3=(($22*25 + 133)/2628)*1.67         // 3.3
    V2V4=(($25*25 + 133)/2628)*2.4          // 5
    V2V5=(($26*25 + 133)/2628)*6            // 12
    V2V6=255
    V2V7=255
    v3=EPIA Samuel 2
    V3V1=(($24*25 + 133)/2628)*1.04         // core0
    V3V2=(($23*25 + 133)/2628)*1.26         // 2.5
    V3V3=(($22*25 + 133)/2628)*1.67         // 3.3
    V3V4=(($25*25 + 133)/2628)*2.4          // 5
    V3V5=(($26*25 + 133)/2628)*6            // 12
    V3V6=255
    V3V7=255
    [Winbond W83627HF/W83782D Combo]
    VT=1
    V0=Standard W83627HF/W83782D
    V0V1=$20*0.01614|0 // core 0
    V0V2=$20*0.01614|1 // core 1
    V0V3=$26*0.01614|1 // 3.3
    V0V4=$23*0.01614*1.68|0 // 5
    V0V5=$22*0.016*3.8|0 // 12
    V0V6=(($25*0.016)-3.6)*5.14+3.6|0 // -12
    V0V7=255
    V1=Tyan Tiger MP 2460
    V1V1=$20*0.01614|0 // core 0 (CPU 1)
    V1V2=$21*0.01614|0 // core 1 (CPU 2)
    V1V3=$22*0.01614|0 // +3.3 Volts
    V1V4=$23*0.027205|1 // +5 Volts
    V1V5=$24*0.075845|0 // +12 Volts
    V1V6=$25*(-0.38375)|0 // -12 Volts
    V1V7=255 // -5 Volts not implemented
    V1V8=$22*0.01614|1 // AGP Volts
    V1V9=$24*0.01614|1 // DDR Volts
    V1V10=$26*0.01614|1 // standby 3.3 Volts
    V1V11=$51*0.01614|1 B5 // battery Volts (on bank 5)
    [SMSC LPC47M192-NC]
    VT=1
    V0=LPC47M192 Standard
    V0V1=$21*0.012
    V0V2=$20*0.013
    V0V3=$22*0.0172
    V0V4=$23*0.026
    V0V5=$24*0.062
    V0V6=$50*0.008
    V0V7=$51*0.009
    V1=Dell Precision 650
    V1V1=$21*0.0114 // CPU voltage
    V1V2=$20*0.013 // +2.5V
    V1V3=$22*0.0171 // +3.3V
    V1V4=$23*0.026 // +5V
    V1V5=$24*0.06 // +12V
    V1V6=$50*0.0171 // SIO voltage
    V1V7=$51*0.0078 // AGP voltage
    V1V8=$25*0.0093 // +1.8V
    [Winbond W83637HF]
    VT=1
    V0=W83637HF Standard 1
    V0V1=$20*0.016
    V0V2=$21*0.016
    V0V3=$22*0.016
    V0V4=$23*0.016*1.68
    V0V5=$24*0.016*3.8
    V0V6=(($25*0.016)-3.6)*5.14+3.6
    V0V7=(($26*0.016)-3.6)*3.14+3.6
    V1=ECS Photon PF2 Lite
    V1V1=$20*0.016
    V1V2=$21*0.016
    V1V3=$22*0.016
    V1V4=$23*0.016*1.68
    V1V5=255
    V1V6=255
    V1V7=255
    [Analog Devices ADM1028]
    VT=0
    V0=not support by this device
    V0V1=255
    V0V2=255
    V0V3=255
    V0V4=255
    V0V5=255
    V0V6=255
    V0V7=255
    [Asus ASB100 (Bach)]
    VT=1
    V0=ASB100 Standard 1
    V0V1=$20*0.016
    V0V2=$21*0.016
    V0V3=$22*0.016
    V0V4=$23*0.016*1.68
    V0V5=$24*0.016*3.8
    V0V6=($25*(-0.016))*3.97
    V0V7=($26*(-0.016))*1.666
    V1=ASB100 Standard 2
    V1V1=$20*0.016
    V1V2=$21*0.016
    V1V3=$22*0.016
    V1V4=$23*0.016*1.68
    V1V5=$24*0.016*4
    V1V6=($25*(-0.016))*4
    V1V7=($26*(-0.016))*1.666
    [Analog Devices ADM1027]
    VT=0
    V0=ADM1027 Standard
    V0V1=$21*4*0.00293
    V0V2=$20*4*0.0032
    V0V3=$22*4*0.0042
    V0V4=$23*4*0.0065
    V0V5=$24*4*0.0156
    V0V6=255
    V0V7=255
    [ITE8722F]
    VT=0
    V0=ITE8722F Standard
    V0V1=$20*0.01565
    V0V2=$21*0.016
    V0V3=$22*0.016
    V0V4=$28*0.016 // vbat
    V0V5=$24*0.016*3.8
    V0V6=(($27*0.016)-3.6)*5.14+3.6
    V0V7=255
    [Asus Mozart2]
    VT=0
    V0=Mozart2 Standard
    V0V1=$20*0.016
    V0V2=255
    V0V3=$22*0.016
    V0V4=$23*0.016*1.68
    V0V5=$24*0.016*4
    V0V6=255
    V0V7=255
    [National LM85]
    VT=0
    V0=LM85 Standard
    V0V1=$21*0.01176
    V0V2=$20*0.013
    V0V3=$22*0.0172
    V0V4=$23*0.026
    V0V5=$24*0.0627
    V0V6=255
    V0V7=255
    [Winbond W83627HF/ADM1027 Combo]
    VT=1
    V0=W83627HF/ADM1027 Combo
    V0V1=$20*0.016|0                // core0
    V0V2=255
    V0V3=255
    V0V4=$23*4*0.0065|1 // +5
    V0V5=$24*4*0.0156|1 // +12
    V0V6=255
    V0V7=255
    [Winbond W83627HF/ADM1027 Combo]
    V1=Tyan 2665
    V1V1=$20*0.0.016|0              // core0
    V1V2=$21*0.01471|0         
    V1V3=$22*0.032|0             
    V1V4=$23*4*0.0065|1  // +5
    V1V5=$24*4*0.0156|1  // +12
    V1V6=255
    V1V7=255
    [Analog Devices ADM1025/1030 Combo]
    VT=0
    V0=ADM1025/1030 Combo
    V0V1=$21*0.012|1
    V0V2=$20*0.013|1
    V0V3=$22*0.0172|1
    V0V4=$23*0.026|1
    V0V5=$24*0.062|1
    V0V6=$25*0.0172|1
    V0V7=255
    [Analog Devices ADM1030 Dual]
    VT=0
    V0=ADM1030 Dual
    V0V1=255
    V0V2=255
    V0V3=255
    V0V4=255
    V0V5=255
    V0V6=255
    V0V7=255
    [WinBond W83L785TR]
    VT=0
    V0=WinBond W83L785TR
    V0V1=$20*0.044
    V0V2=$21*0.044
    V0V3=255
    V0V4=255
    V0V5=255
    V0V6=255
    V0V7=255
    [WinBond W83L785R]
    VT=0
    V0=WinBond W83L785R
    V0V1=$20*0.044
    V0V2=$21*0.044
    V0V3=255
    V0V4=255
    V0V5=255
    V0V6=255
    V0V7=255
    [Winbond W83627THF-A]
    VT=6
    V0=Winbond W83627THF-A
    V0V1=$20*0.016
    V0V2=$21*0.016
    V0V3=$22*0.016
    V0V4=$23*0.016*1.68
    V0V5=$24*0.016*4
    V0V6=255
    V0V7=255
    V1=Asus P4P800
    V1=Asus P4P800
    V1V1=$20*0.01567
    V1V2=255
    V1V3=$22*0.016
    V1V4=$23*0.016*1.68
    V1V5=$21*0.016*3.8
    V1V6=255
    V1V7=255
    V2=ASUS PC-DL
    V2V1=$20*0.00488 + 0.69 // VCORE (pin 100) (+ 1.5V)
    V2V2=$51*0.016B$05      // VBAT  (pin  74) (+ 3.0V)
    V2V3=$22*0.016          // VIN1  (pin  98) (+ 3.3V)
    V2V4=$23*0.016*1.68 

    Checked and worked fine for windows xp x64 pro version too .
    Just replace the voltage.ini
    MBM 5.3.7.0 64bits can be downloaded at http://www.planetAMD64.com

Maybe you are looking for