|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-11-20 18:39 UTC] mfischer@php.net
[2001-12-13 06:29 UTC] sander@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 07:00:01 2025 UTC |
"Fatal: Cannot instantiate non-existent class DB_Sql in ... common.php line 23" and the program aborts. ----common.php: include("./db_mysql.inc"); $db = new DB_Sql(); <--line 23 $db->Database = DATABASE_NAME; etc. ---- ----db_mysql.inc: class DB_Sql { /* public: connection parameters */ var $Host = ""; var $Database = ""; var $User = ""; var $Password = ""; etc. ---- ./configure --with-mysql --with-apache=../apache_1.3.19 --enable-track-vars ---- The error happens unpredictably, i.e. the application works fine for say 30 mins and then this message appears on one or more clients. Hitting Refresh allows recovery so it is a temporary failure. I am putting this here in case it relates to MySQL - could this be a result of connection problems? Or, if not, what would trigger this sort of message given that the code must be OK as it works most of the time - common.php is included in all pages. Thanks, Neil Munro.