Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Tomcat 6. I am running a php script using the JavaBridge. I get the following error when I run my code.

Fatal error: Call to undefined function mysqli_connect() in C:\Program Files\apache-tomcat-6.0.26\webapps\JavaBridge\xxxx\xxxxx.php on line 534

Please help.

share|improve this question

3 Answers

up vote 2 down vote accepted

I'm not really sure what I've done but mine is working as I read the documentation. in my case it's MySQL and I am using Tomcat 7.

  1. copy the correct VERSION of the PHP extension "php_mysql.dll" to the correspond "ext" directory, in my case it's in "C:\Program Files\Apache Software Foundation\Tomcat 7.0\webapps\aeu\WEB-INF\cgi\amd64-windows\ext"

  2. uncomment/add this line,

    extension = php_mysql.dll

in php.ini and mysql.ini file, in my case there're as C:\Program Files\Apache Software Foundation\Tomcat 7.0\webapps\aeu\WEB-INF\cgi\amd64-windows\php.ini and C:\Program Files\Apache Software Foundation\Tomcat 7.0\webapps\aeu\WEB-INF\cgi\amd64-windows\conf.d\mysql.ini

and lastly restart Tomcat. good luck.

share|improve this answer

I would do two things:

  • Make sure that location of php_mysql.dll is included in the PATH env variable.
  • Open your php.ini file, and look under the extensions. Make sure that the line for loading php_mysql.dll is not commented (make sure there isn't a ; in front of it).
share|improve this answer
@unicornaddict: I did exactly as you said. I have installed WAMP. I added C:\wamp\bin\php\php5.3.0\ext to my PATH env variable. Also the php.ini is OK. I restarted tomcat. I am still getting the same error. – Bruce Apr 27 '10 at 5:01

Probably due to some missing libmysql.dll, try to look for this file (windows find could help) and make sure it sit's on a directory belonging to you PATH. (see this topic)

share|improve this answer
@RC: I did as you said. Still the same error. – Bruce Apr 27 '10 at 5:07
Hum, try to put libmysql.dll in c:\windows\system32 and see if that's help. – RC. Apr 27 '10 at 6:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.