• Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search

    mssql_connect() Unable to connect to server to Remote host from php hosting

    General Discussion
    2
    2
    1798
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • F
      fuzhiwara last edited by tomas_hora

      I have working mssql connecting codes and them working in my another company php host but dont work when i moved new host. All codes same i dont know why connect from new host ? In new host using cpanel and php ( asphostportal) and im looking php.ini in cpanel mssql settings looking good. my codes below under

      $usernameb ="myuser";
      $passwordb = "mypass";
      $databaseb = "mydb";
      $host ="myhostip"
      
      $connection = mssql_connect($host, $usernameb, $passwordb);
      if (!$connection) {  die('Not connected : ' . mssql_get_last_message());} 
      
      
      $db_selected = mssql_select_db($databaseb, $connection);
      if (!$db_selected) {
        die ('Can\'t use db : ' . mssql_get_last_message());
      } else{
      
      
      }
      

      And gives that error on my new hosting

      Warning: mssql_connect(): Unable to connect to server: ip here in
      

      Any idea ?

      1 Reply Last reply Reply Quote 0
      • T
        tomas_hora administrators last edited by

        You are missing ; at the end of

        $host ="myhostip"
        
        1 Reply Last reply Reply Quote 0
        • First post
          Last post