Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to connect to a remote database server with PHP to query and return data.

So far, I have tried this:

$connection = mssql_connect('[redacted]:1433\SQLEXPRESS', '[redacted]', '[redacted]');

and

$connection = mssql_connect('[redacted]', '[redacted]', '[redacted]');

Both result in FALSE, but no error thrown. What am I missing? It doesn't even seem to attempt to connect (fails very quick).

share|improve this question

1 Answer

Usually this isn't so much about the connection code as the setup of the external DB server. First try this: $connection = mssql_connect('[redacted]\SQLEXPRESS', '[redacted]', '[redacted]'); But you are connecting to SQL Express which by default doensn't accept any incoming TCP/IP requests, so if that doesn't work out, you'll need to check the configuration (or if it's truly external, have the DBA check it) and make sure:

  • it's set up to accept TCP/IP requests,
  • that the firewall is allowing that IP and port through, and
  • that the specific IP address your request is coming in on is accepting requests
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.