[PHP] MySQL problem with RedHat 8

2003-01-14 Thread Daniel Elenius
Hi!

I'm trying to connect to my mysql database using something like

 mysql_connect( 'localhost', 'root', 'thepassword' )
or die ( 'Unable to connect to server.' );

But I get the error message:
Fatal error: Call to undefined function: mysql_connect() in
/home/daniel/public_html/index.php on line 21

I have:

[root@p85 /]# rpm -qa |grep sql
php-mysql-4.2.2-8.0.5
mysql-3.23.52-3
mysql-server-3.23.52-3
mysql-devel-3.23.52-3

and:

[root@p85 /]# rpm -q php
php-4.2.2-8.0.5

Someone mentioned these two settings in php.ini, which I tried with no
success:

register_globals = On
short_open_tag = On

phpinfo() says that php was compiled with '--with-mysql=shared,/usr'

Can someone help me please?

regards,
-- 
Daniel Elenius <[EMAIL PROTECTED]>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] MySQL problem with RedHat 8

2003-01-14 Thread Daniel Elenius
Yes, mysql.so is in /usr/lib/php4. The php.ini file has this in it:

[daniel@p85 etc]$ grep mysql php.ini
;extension=php_mysql.dll
extension=mysql.so
mysql.allow_persistent = On
mysql.max_persistent = -1
mysql.max_links = -1
; Default port number for mysql_connect().  If unset, mysql_connect()
will use
; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
mysql.default_port =
mysql.default_socket =
; Default host for mysql_connect() (doesn't apply in safe mode).
mysql.default_host =
; Default user for mysql_connect() (doesn't apply in safe mode).
mysql.default_user =
; Default password for mysql_connect() (doesn't apply in safe mode).
; *Any* user with PHP access can run 'echo
cfg_get_var("mysql.default_password")
mysql.default_password =


/daniel

On Tue, 2003-01-14 at 23:17, Joseph W. Goff wrote:
> Make sure that the shared module is in the correct directory.
> Check your php.ini file to make sure but it is most likely at /usr/lib/php4
> make sure that you have mysql.so
> ----- Original Message -
> From: "Daniel Elenius" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, January 14, 2003 3:58 PM
> Subject: [PHP] MySQL problem with RedHat 8
> 
> 
> > Hi!
> >
> > I'm trying to connect to my mysql database using something like
> >
> >  mysql_connect( 'localhost', 'root', 'thepassword' )
> > or die ( 'Unable to connect to server.' );
> >
> > But I get the error message:
> > Fatal error: Call to undefined function: mysql_connect() in
> > /home/daniel/public_html/index.php on line 21
> >
> > I have:
> >
> > [root@p85 /]# rpm -qa |grep sql
> > php-mysql-4.2.2-8.0.5
> > mysql-3.23.52-3
> > mysql-server-3.23.52-3
> > mysql-devel-3.23.52-3
> >
> > and:
> >
> > [root@p85 /]# rpm -q php
> > php-4.2.2-8.0.5
> >
> > Someone mentioned these two settings in php.ini, which I tried with no
> > success:
> >
> > register_globals = On
> > short_open_tag = On
> >
> > phpinfo() says that php was compiled with '--with-mysql=shared,/usr'
> >
> > Can someone help me please?
> >
> > regards,
> > --
> > Daniel Elenius <[EMAIL PROTECTED]>
> >
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
-- 
Daniel Elenius <[EMAIL PROTECTED]>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] MySQL problem with RedHat 8

2003-01-15 Thread Daniel Elenius
Hi
Again, I already have it! (And it is the one from the distro)

[daniel@p85 daniel]$ rpm -q php-mysql
php-mysql-4.2.2-8.0.5

/daniel


On Wed, 2003-01-15 at 02:19, Larry Brown wrote:
> You need the php-mysql rpm  do rpm -q php-mysql
> Get the one from the distro
> 
> Larry S. Brown
> Dimension Networks, Inc.
> (727) 723-8388
> 
> -Original Message-
> From: Daniel Elenius [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, January 14, 2003 5:22 PM
> To: [EMAIL PROTECTED]
> Subject: Re: [PHP] MySQL problem with RedHat 8
> 
> Yes, mysql.so is in /usr/lib/php4. The php.ini file has this in it:
> 
> [daniel@p85 etc]$ grep mysql php.ini
> ;extension=php_mysql.dll
> extension=mysql.so
> mysql.allow_persistent = On
> mysql.max_persistent = -1
> mysql.max_links = -1
> ; Default port number for mysql_connect().  If unset, mysql_connect()
> will use
> ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
> mysql.default_port =
> mysql.default_socket =
> ; Default host for mysql_connect() (doesn't apply in safe mode).
> mysql.default_host =
> ; Default user for mysql_connect() (doesn't apply in safe mode).
> mysql.default_user =
> ; Default password for mysql_connect() (doesn't apply in safe mode).
> ; *Any* user with PHP access can run 'echo
> cfg_get_var("mysql.default_password")
> mysql.default_password =
> 
> 
> /daniel
> 
> On Tue, 2003-01-14 at 23:17, Joseph W. Goff wrote:
> > Make sure that the shared module is in the correct directory.
> > Check your php.ini file to make sure but it is most likely at /usr/lib/php4
> > make sure that you have mysql.so
> > - Original Message -
> > From: "Daniel Elenius" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Tuesday, January 14, 2003 3:58 PM
> > Subject: [PHP] MySQL problem with RedHat 8
> >
> >
> > > Hi!
> > >
> > > I'm trying to connect to my mysql database using something like
> > >
> > >  mysql_connect( 'localhost', 'root', 'thepassword' )
> > > or die ( 'Unable to connect to server.' );
> > >
> > > But I get the error message:
> > > Fatal error: Call to undefined function: mysql_connect() in
> > > /home/daniel/public_html/index.php on line 21
> > >
> > > I have:
> > >
> > > [root@p85 /]# rpm -qa |grep sql
> > > php-mysql-4.2.2-8.0.5
> > > mysql-3.23.52-3
> > > mysql-server-3.23.52-3
> > > mysql-devel-3.23.52-3
> > >
> > > and:
> > >
> > > [root@p85 /]# rpm -q php
> > > php-4.2.2-8.0.5
> > >
> > > Someone mentioned these two settings in php.ini, which I tried with no
> > > success:
> > >
> > > register_globals = On
> > > short_open_tag = On
> > >
> > > phpinfo() says that php was compiled with '--with-mysql=shared,/usr'
> > >
> > > Can someone help me please?
> > >
> > > regards,
> > > --
> > > Daniel Elenius <[EMAIL PROTECTED]>
> > >
> > >
> > > --
> > > PHP General Mailing List (http://www.php.net/)
> > > To unsubscribe, visit: http://www.php.net/unsub.php
> > >
> --
> Daniel Elenius <[EMAIL PROTECTED]>
> 
> 
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
-- 
Daniel Elenius <[EMAIL PROTECTED]>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php