[PHP] specifying different port for db connections

2002-11-07 Thread heath boutwell
Attempting to access remote db (SQL Server) how do you specify the port? I've tried everything in the hostname paramater of mssql_connect but nothing seems to work. ie none of the following: MSSQL_CONNECT(192.168.10.1,2461,$username,$password) or DIE(DATABASE FAILED TO RESPOND.); or

Re: [PHP] specifying different port for db connections

2002-11-07 Thread heath boutwell
--- .: B i g D o g :. [EMAIL PROTECTED] wrote: Not a big mssql guy but if i remember correctly that should be set in your interfaces file...but a valid server name should be used and that is checked in the interfaces file... I think the interfaces file is only used if you are accessing sql

Re: [PHP] specifying different port for db connections

2002-11-07 Thread heath boutwell
--- .: B i g D o g :. [EMAIL PROTECTED] wrote: Actually the remote file is used if you are trying to connect to a remote system. Sybase uses remote files and that is how it works...i know oracle does a similar way of connecting... IMHO, i would look into the interface file and change it

Re: [PHP] specifying different port for db connections

2002-11-08 Thread heath boutwell
mssql_connect() establishes a connection to a MS SQL server. The servername argument has to be a valid servername that is defined in the 'interfaces' file. -- this is what i am referring too This is my connection string MSSQL_CONNECT(192.168.10.1 2461,$username,$password) or DIE(DATABASE

[PHP] libphp4.so not created on upgrade

2005-01-09 Thread heath boutwell
Upgrading to 4.3.10, Make, make test and make install work with no errors. Using same configure options I used to install 4.3.8: ./configure --prefix=/usr --with-apx=/usr/local/apache/bin/apxs --libdir=/usr/lib/php4 --datadir=/usr/share/php --with-sybase-ct=/usr/local/freetds

Re: [PHP] libphp4.so not created on upgrade

2005-01-11 Thread heath boutwell
--- Rasmus Lerdorf [EMAIL PROTECTED] wrote: Well, what is created? Do you get a .libs/libphp4 file with no extension? If so, you can either just rename that to .libs/libphp4.so or run libtoolize --force and re-run ./configure -Rasmus Still no libphp4.so created by make install. Here