--- c:\php\php.ini-dist Sat May 02 11:49:55 2009 +++ C:\apps\dew-newphplinks.v.2.1.0.1b.sef\php.ini Wed May 06 15:08:59 2009 @@ -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 @@ -620,14 +620,14 @@ ;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_mysql.dll ;extension=php_mysqli.dll ;extension=php_oci8.dll ;extension=php_openssl.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(),