|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-01-30 12:26 UTC] sniper@php.net
[2004-02-04 19:17 UTC] sniper@php.net
[2005-09-15 10:50 UTC] etienne_botha at yahoo dot com
[2006-04-05 12:44 UTC] tobozo at phpsecure dot info
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 22:00:01 2025 UTC |
Description: ------------ We are stuck with the following: We have an application running on PHP 4.3.4 that utilizes a mySQL DB with UTF8 as default charset for the tables, and runs on Apache 2.0.45. PHP is configured using the Apache2 SAPI and everything works well. We also have some PHP scripts for the CLI binary that has to access the DB, too. We use a self-written DB class, which is very basic. When trying to connect to the DB the following error occurs: ----------- File 'c:\mysql\share\charsets\?.conf' not found (Errcode: 22) Character set '#33' is not a compiled character set and is not specified in the 'c:\mysql\share\charsets\Index' file ----------- The connection is not established and the script aborts, whereas a connection with the Apache2 SAPI version works fine and works as expected, regarding UTF8. But since mySQL 4.1 the .conf files are deprecated and XML files are used instead. After consulting several forums and newsgroups we assumed this might be a bug. A research in the bug datebase did not bring any result. Any help with that issue would be greatly appreciated. Many thanks in advance, sincerely R?diger Reinhardt, GelsenData GmbH Reproduce code: --------------- // concerning the nature of this problem, I suppose the // reproduce code might be mandantory. $this->connection = mysql_connect($server, $user, $password); Expected result: ---------------- A connection to the DB server should be established. Actual result: -------------- The above error is printed and the script aborts.