--- c:\php\php.ini-dist Sat May 02 11:49:55 2009 +++ C:\apps\beaumont\php.ini Wed May 06 19:55:37 2009 @@ -202,7 +202,7 @@ ; 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. -;open_basedir = +open_basedir = ; This directive allows you to disable certain functions for security reasons. ; It receives a comma-delimited list of function names. This directive is @@ -474,7 +474,7 @@ ;include_path = ".:/php/includes" ; ; Windows: "\path1;\path2" -;include_path = ".;c:\php\includes" +include_path = ".;C:\apps\beaumont\libs" ; The root of the PHP pages, used only if nonempty. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root @@ -488,7 +488,7 @@ user_dir = ; Directory in which the loadable extensions (modules) reside. -extension_dir = "./" +extension_dir = "c:\php\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 @@ -546,7 +546,7 @@ ; Temporary directory for HTTP uploaded files (will use system default if not ; specified). -;upload_tmp_dir = +upload_tmp_dir = "c:\tmp" ; Maximum allowed size for uploaded files. upload_max_filesize = 2M @@ -613,22 +613,22 @@ ;extension=php_dbase.dll ;extension=php_exif.dll ;extension=php_fdf.dll -;extension=php_gd2.dll +extension=php_gd2.dll ;extension=php_gettext.dll ;extension=php_gmp.dll ;extension=php_ifx.dll ;extension=php_imap.dll ;extension=php_interbase.dll ;extension=php_ldap.dll -;extension=php_mbstring.dll +extension=php_mbstring.dll ;extension=php_mcrypt.dll ;extension=php_mhash.dll ;extension=php_mime_magic.dll ;extension=php_ming.dll ;extension=php_msql.dll ;extension=php_mssql.dll -;extension=php_mysql.dll -;extension=php_mysqli.dll +extension=php_mysql.dll +extension=php_mysqli.dll ;extension=php_oci8.dll ;extension=php_openssl.dll ;extension=php_pdo.dll @@ -649,7 +649,7 @@ ;extension=php_sqlite.dll ;extension=php_sybase_ct.dll ;extension=php_tidy.dll -;extension=php_xmlrpc.dll +extension=php_xmlrpc.dll ;extension=php_xsl.dll ;extension=php_zip.dll @@ -989,7 +989,7 @@ ; ; where MODE is the octal representation of the mode. Note that this ; does not overwrite the process's umask. -;session.save_path = "/tmp" +session.save_path = "c:\tmp" ; Whether to use cookies. session.use_cookies = 1 @@ -1187,34 +1187,34 @@ [mbstring] ; language for internal character representation. -;mbstring.language = Japanese +mbstring.language = Japanese ; internal/script encoding. ; Some encoding cannot work as internal encoding. ; (e.g. SJIS, BIG5, ISO-2022-*) -;mbstring.internal_encoding = EUC-JP +mbstring.internal_encoding = UTF-8 ; http input encoding. -;mbstring.http_input = auto +mbstring.http_input = pass ; http output encoding. mb_output_handler must be ; registered as output buffer to function -;mbstring.http_output = SJIS +mbstring.http_output = pass ; 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. -;mbstring.encoding_translation = Off +mbstring.encoding_translation = Off ; automatic encoding detection order. ; auto means -;mbstring.detect_order = auto +mbstring.detect_order = auto ; substitute_character used when character cannot be converted ; one from another -;mbstring.substitute_character = none; +mbstring.substitute_character = none; ; overload(replace) single byte functions by mbstring functions. ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),