Home > Archive > PHP Language > June 2007 > mssql connect
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
|
| I'm trying to get my php on a linux box to connect with MS SQL 2000.
I've tried installing php-mssql-5.0.4-10.1.i386.rpm and it shows that it
needs the dependency of libsybdb.so.5. So I try to install
freetds-0.64-1.rh9.rf.i386.rpm and it shows that it needs the dependency
of libreadline.so.4. I check my server and it already has
libreadline.so.5. What do I need to do now? Any help would be extremely
appreciated. ;-) Maybe if someone in the Austin, Texas area can help, I
can give them a discount on a bass fishing guide trip. LOL Thanks...
| |
| Robert Iver 2007-05-31, 9:59 pm |
| You could try making a symbolic link that points from libreadline.so.5 to
libreadline.so.4.
It's not exactly an elegant solution, but it has worked for me in the past
in other areas with very little backlash. Most package upgrades are
tweaks for speed or add new funcctionality, so if anything references the
so.5 file, it will get that file as expected, if anything references so.4,
it will be forwarded to the so.5 file instead.
The command would be: ln -s libreadline.so.5 libreadline.so.4
On Thu, 31 May 2007 04:41:38 +0000, Bryan wrote:
> I'm trying to get my php on a linux box to connect with MS SQL 2000.
> I've tried installing php-mssql-5.0.4-10.1.i386.rpm and it shows that it
> needs the dependency of libsybdb.so.5. So I try to install
> freetds-0.64-1.rh9.rf.i386.rpm and it shows that it needs the dependency
> of libreadline.so.4. I check my server and it already has
> libreadline.so.5. What do I need to do now? Any help would be extremely
> appreciated. ;-) Maybe if someone in the Austin, Texas area can help, I
> can give them a discount on a bass fishing guide trip. LOL Thanks...
| |
|
|
|
|
|
|
|