Hi Sam,
Re: SSH problem
I noticed that in your last message you tried to ssh2 to the server. Try
using ssh1. While the SSH RPM that comes with FreeVSD is version 2, it was
not compiled to support SSH2. I suspect it was because of RSA issues.
Re: MySQL
I recommend installing PHP from source. RPM's just aren't flexible enough.
PHP has to many compile time options. I'm not positive, but I believe
php_info.php will tell you what compile-time options were included. I think
there is an option that may need to be set in your php.ini file also.
Take care,
Paul
At 08:08 AM 4/27/01, you wrote:
> Ok everything is going well except for the funny ssh problem. now, i
>install the php/apache/mysql skeleton you guys released. php work, mysql is
>up and working, apache works, now when i try a simple connect to the mysql
>database i get this error
>
>Fatal error: Call to undefined function: mysql_pconnect()
>
>
>and here is the simple code for testing.
>
><?php
>
> mysql_pconnect(localhost, mayesnuke, password);
> @mysql_select_db("mayesnuke") or die ("Unable to select database");
>?>
>
>its like mysql isnt compiled in php4. Any ideas??
>
>
>Sam