Re: [PHP-DB] Fatal Error - Undefined function mysqli_connect

2011-09-04 Thread Lester Caine

Ben wrote:

My server was upgraded to PHP 5.3.8 and MySQL 5.1.58 today and, since, I am
getting a 500 error on any script requiring a DB connection.

Upgraded from what?
Sounds like the mysqli extension is no longer getting loaded. There will either 
be an error saying why, or it is still commented out in the php.ini.


--
Lester Caine - G8HFL
-
Contact - http://lsces.co.uk/wiki/?page=contact
L.S.Caine Electronic Services - http://lsces.co.uk
EnquirySolve - http://enquirysolve.com/
Model Engineers Digital Workshop - http://medw.co.uk//
Firebird - http://www.firebirdsql.org/index.php

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP-DB] Fatal Error - Undefined function mysqli_connect

2011-09-04 Thread Ben
Lester wrote:
Upgraded from what?
 Sounds like the mysqli extension is no longer getting loaded. There will
either be an error saying why, or it is still commented out in the php.ini.

Upgraded from PHP 4.3 and MySQL 4.1.  Was using mysql_connect, but
understand that mysqli is better/supported extension for newer versions, so
am trying to rewrite the code to use mysqli_connect.  For what it's worth,
mysqli_init() also produces Call to undefined function mysqli_init() in my
error logs.

Thanks again,

Ben Miller 



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Fatal Error - Undefined function mysqli_connect

2011-09-04 Thread Lester Caine

Ben wrote:

Upgraded from what?
  Sounds like the mysqli extension is no longer getting loaded. There will

either be an error saying why, or it is still commented out in the php.ini.

Upgraded from PHP 4.3 and MySQL 4.1.  Was using mysql_connect, but
understand that mysqli is better/supported extension for newer versions, so
am trying to rewrite the code to use mysqli_connect.  For what it's worth,
mysqli_init() also produces Call to undefined function mysqli_init() in my
error logs.


That would explain the problem ;)
Need the mysqli extension enabled instead of mysql ...

--
Lester Caine - G8HFL
-
Contact - http://lsces.co.uk/wiki/?page=contact
L.S.Caine Electronic Services - http://lsces.co.uk
EnquirySolve - http://enquirysolve.com/
Model Engineers Digital Workshop - http://medw.co.uk//
Firebird - http://www.firebirdsql.org/index.php

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php