Paul Hickey wrote:
I have PHP compiled with mysqli.

The standard answer from the Joomla forums is that I need to have
"mysql" vice "mysqli". I was looking for a more global solution than
having to modify the code for every component, module, mambot I want to
use.

I don't understand why I'm getting "undefined function" errors.
PHP.ini has no reference to mysqli. I don't know if changing this would
enable the functions specific to PHP > 4.x.

In your configuration line (how php was configured then compiled), you have...

--with-mysqli=/usr/local/mysql/bin/mysql_config

That is why you are getting undefined function errors. Your version of php is using mysqli, not mysql. You have two options: a) Recompile php or b) Change all mysql_* functions to their counterparts in mysqli_*


--
John C. Nichel IV
Programmer/System Admin (ÜberGeek)
Dot Com Holdings of Buffalo
716.856.9675
[EMAIL PROTECTED]

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

Reply via email to