Jump to content

Arcuturs Website Problem


VeVeto

Recommended Posts

I am using wampserver to run my website but i keep getting error when i type in localhost in my address bar

Is it the problem with wampserver or the coding?

 

The Error

Warning: mssql_connect() [function.mssql-connect]: Unable to connect to server: localhost in C:\wamp\www\libs\dmssql.php on line 35

Cant Connect to mssql [dmssql class]

 

 

here is the config.php

##### Template Dir ###########

$template = 'default';

 

##### Server Name

$title = 'RoseCP AE';

###### Your msSQL Info ########

$hostname = "localhost";

$username = "sa";

$password = "";

# databases, that if you changed db names. if not, dont change a thing

$seven_ORA = "seven_ORA";

$sho = "SHO";

$sho_log = "SHO_LOG";

$sho_mall = "SHO_MALL";

 

And here is the dmssql.php

    ##### Template Dir ###########

    $template = 'default';

 

    ##### Server Name

    $title = 'RoseCP AE';

    ###### Your msSQL Info ########

    $hostname = "localhost";

    $username = "sa";

    $password = "";

    # databases, that if you changed db names. if not, dont change a thing

    $seven_ORA = "seven_ORA";

    $sho = "SHO";

    $sho_log = "SHO_LOG";

    $sho_mall = "SHO_MALL";

 

 

 

And here is the dmssql.php

 

Quote

 

    class dmssql {

     

     

      function dmssql($h,$u,$p,$d)

      {

          $this->host = $h;

          $this->user = $u;

          $this->pass = $p;

          $this->db = $d;

     

      }

     

      function connect() {

      $this->linkid = mssql_connect($this->host,$this->user,$this->pass) or die("Cant Connect to mssql [dmssql class]");

      if ($this->linkid)

            {

                if (mssql_select_db($this->db))

                {

                  return TRUE;

                }

                else

                {

                  $this->dbclose($this->linkid);

                  echo "Cant Select $this->db [dmssql class]";

                  return FALSE;

                }                       

          }

          else

          {

            echo "Cant Connect to mssql [dmssql class]";

            return FALSE;

          }

      }

     

      function query($q)

      {

          if ($this->connect())

          {

            $q = $this->clean($q);

            $r = mssql_query($q) or die("FATAL ERROR");

            return $r;

          }

      }

     

      function clean($string)

      {

         

          $new_data = preg_replace("[^A-Za-z0-9@.]", "", $string);

          return $new_data;

      }

      function num_rows($data)

      {

          return mssql_num_rows($data);

      }

      function qFirstRow($q)

      {

          if ($this->connect())

          {

            $ret = mssql_fetch_row($this->query($q));

           

          }

          return $ret[0];

      }

      function fetch_array($data)

      {

          return mssql_fetch_array($data);

      }

      function dbclose()

      {

          return mssql_close($this->linkid);

      }

 

     

    }

    ?>

 

 

 

Can you help me Please Guys :X

i enbaled php_mssql.dll

and i replaced

from

;extension php_mssql.dll

to

extension php_mssql.dll

 

Could you help me guys please X.x

 

HERE IS The full website code im using

http://uploading.com/files/get/8de48e5m/

Link to comment
Share on other sites

i enbaled php_mssql.dll

and i replaced

from

;extension php_mssql.dll

to

extension php_mssql.dll

 

Did you restart your web server after you enabled this?  The server you're testing this on is windows, correct?

Link to comment
Share on other sites

  • 5 weeks later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.