I have installed WAMP. I am using Tomcat 6 to run my PHP scripts. I am also using JavaBridge.war and I have copied my php scripts into \webapp\JavaBridge\project. I have removed the semicolon from php.ini file before the statements

extension=php_mysqli.dll
extension=php_mysql.dll

I have added C:\wamp\bin into my PATH env variable. I have copied all dll's from C:\wamp\bin\php\php5.3.0\ext into C:\windows\system32

I am still getting this error.

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

Note - I dont get this error when I run my PHP script from Apache 2.2.11 of the WAMP package.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Did you edit the correct php.ini file?

<?php echo 'ini: ', get_cfg_var('cfg_file_path');

(executed in the tomcat6 environment) can tell you.

link|improve this answer
Here's the output I get - ini: C:\Program Files\apache-tomcat-6.0.26\webapps\JavaBridge\WEB-INF\cgi\php.ini ------ and here are the contents of the file ---- extension_dir="C:\Program Files\apache-tomcat-6.0.26\webapps\JavaBridge\WEB-INF\cgi\x86-windows\ext" include_path="C:\Program Files\apache-tomcat-6.0.26\webapps\JavaBridge\WEB-INF\pear;." – Bruce Apr 27 '10 at 6:54
I didnt edit the correct php.ini file :) – Bruce Apr 27 '10 at 6:56
feedback

Your Answer

 
or
required, but never shown

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