--- c:\php\php.ini-dist Sat May 02 11:49:55 2009 +++ C:\apps\Joomla_1_5_10_in_Japanese\php.ini Wed May 06 10:13:39 2009 @@ -319,7 +319,7 @@ ; ; stdout (On) - Display errors to STDOUT ; -display_errors = On +display_errors = off ; Even when display_errors is on, errors that occur during PHP's startup ; sequence are not displayed. It's strongly recommended to keep @@ -475,7 +475,7 @@ ; ; Windows: "\path1;\path2" ;include_path = ".;c:\php\includes" - +;include_path = ".;C:\php\PEAR" ; 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) @@ -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 @@ -500,6 +500,7 @@ ; turn it off here AT YOUR OWN RISK ; **You CAN safely turn this off for IIS, in fact, you MUST.** ; cgi.force_redirect = 1 +cgi.force_redirect = 0 ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with ; every request. @@ -518,13 +519,14 @@ ; of zero causes PHP to behave as before. Default is 1. You should fix your scripts ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED. ; cgi.fix_pathinfo=0 +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. -; fastcgi.impersonate = 1; +fastcgi.impersonate = 1 ; Disable logging through FastCGI connection ; fastcgi.logging = 0 @@ -546,10 +548,10 @@ ; 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 +upload_max_filesize = 20M ;;;;;;;;;;;;;;;;;; @@ -607,30 +609,30 @@ ; extension folders as well as the separate PECL DLL download (PHP 5). ; Be sure to appropriately set the extension_dir directive. -;extension=php_bz2.dll -;extension=php_curl.dll +extension=php_bz2.dll +extension=php_curl.dll ;extension=php_dba.dll ;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_mcrypt.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_mysql.dll ;extension=php_mysqli.dll ;extension=php_oci8.dll -;extension=php_openssl.dll +extension=php_openssl.dll ;extension=php_pdo.dll ;extension=php_pdo_firebird.dll ;extension=php_pdo_mssql.dll @@ -649,7 +651,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 +991,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 @@ -1103,7 +1105,6 @@ ; to URLs. If you want XHTML conformity, remove the form entry. ; Note that all valid entries require a "=", even if no value follows. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset=" - [MSSQL] ; Allow or prevent persistent links. mssql.allow_persistent = On @@ -1187,34 +1188,34 @@ [mbstring] ; language for internal character representation. -;mbstring.language = Japanese +mbstring.language = neutral ; 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 = auto ; 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(),