This is a discussion on Trying to install mysqli extension for PHP within the PHP Language forums, part of the PHP Programming Forums category; the instructions read as follows: To install the mysqli extension for PHP, use the --with-mysqli=mysql_config_path/mysql_config configuration option ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
the instructions read as follows:
To install the mysqli extension for PHP, use the --with-mysqli=mysql_config_path/mysql_config configuration option where mysql_config_path represents the location of the mysql_config program that comes with MySQL versions greater than 4.1. I do not have any idea what this means. Can someone help. TIA |
|
|||
|
On Wed, 15 Jun 2005 01:40:16 GMT, stevek <someone@somewhere.org> wrote:
>the instructions read as follows: > To install the mysqli extension for PHP, use the >--with-mysqli=mysql_config_path/mysql_config configuration option where >mysql_config_path represents the location of the mysql_config program >that comes with MySQL versions greater than 4.1. > >I do not have any idea what this means. Can someone help. On my server: andyh@server:~$ which mysql_config /usr/bin/mysql_config So, I'd use --with-mysqli=/usr/bin/mysql_config In fact, I just used --with-mysqli, since mysql_config is in a "standard" location that the configure script found automatically. -- Andy Hassall / <andy@andyh.co.uk> / <http://www.andyh.co.uk> <http://www.andyhsoftware.co.uk/space> Space: disk usage analysis tool |
|
|||
|
Thanks Andy, but it looks like your using unix/linux and I did not do
the courteous thing and state I am using NT4.0. Andy Hassall wrote: > On Wed, 15 Jun 2005 01:40:16 GMT, stevek <someone@somewhere.org> wrote: > > >>the instructions read as follows: >> To install the mysqli extension for PHP, use the >>--with-mysqli=mysql_config_path/mysql_config configuration option where >>mysql_config_path represents the location of the mysql_config program >>that comes with MySQL versions greater than 4.1. >> >>I do not have any idea what this means. Can someone help. > > > On my server: > > andyh@server:~$ which mysql_config > /usr/bin/mysql_config > > So, I'd use --with-mysqli=/usr/bin/mysql_config > > In fact, I just used --with-mysqli, since mysql_config is in a "standard" > location that the configure script found automatically. > |