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 in
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
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.
T
3 matches
Mail list logo