[PHP] php5-mysqli

2005-05-01 Thread NSK
hi how can I ensure that php5-mysqli is correctly loaded? the server is SuSE9.3 and I have installed the package from yast, but one app (phpmyadmin) says it cannot find the mysql extension (although other apps can query the db). which config files are responsible for loading mysqli in

Re: [PHP] php5-mysqli

2005-05-01 Thread Greg Donald
On 5/1/05, NSK [EMAIL PROTECTED] wrote: how can I ensure that php5-mysqli is correctly loaded? if( !in_array( 'mysqli', get_loaded_extensions() ) ) { if( !dl( 'mysqli.so' ) ) { echo mysqli.so extension is not loaded; } } the server is SuSE9.3 and I have installed the

Re: [PHP] php5-mysqli

2005-05-01 Thread Marek Kilimajer
NSK wrote: hi how can I ensure that php5-mysqli is correctly loaded? the server is SuSE9.3 and I have installed the package from yast, but one app (phpmyadmin) says it cannot find the mysql extension (although other apps can query the db). which config files are responsible for loading mysqli

Re: [PHP] PHP5 / MySQLi + Apache: InnoDB access problems - solved + FLUSH BROWSER CACHE advice

2004-07-05 Thread Bauke Jan Douma
OK, after three days of increasingly frustrating tinkering with configs, logs, permissions, compiling, recompiling of mysql, apache, php, and a lot of permutations and combinations of flags, options, settings and what have you, I finally found the cause of the problem as described in my posting.

[PHP] PHP5 / MySQLi + Apache: InnoDB access problems

2004-07-04 Thread BJ
L.S. I can't get PHP5 / MySQLi (improved mysql) working. Here's the setup: Linux apache-2.0.50 mozilla mysql-4.1.3 php-5.0.0RC3 (configured --with-mysqli --without-mysql) All are compiled and installed as per their respective configure files and Makefiles