Jump to content

PHP ERROE NEED HELP!!


evilrizen

Recommended Posts

Hey Everyone,

 

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

Is it the problem with wampserver or the coding?

 

HERE IS THE FULL WEBSITE CODE I AM USING

http://www.mediafire.com/?nietlmdxncy

 

errors:

 

Notice: A session had already been started - ignoring session_start() in C:\wamp\www\libs\rosecp_ae.php on line 20

 

Fatal error: Call to undefined function mssql_connect() in C:\wamp\www\libs\dmssql.php on line 35

 

here is the config.php file:

 

my MYSQL information is:

host: localhost

user:root

pass:root

DB:roseon

 

 

 

##### 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

 

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);

}

 

 

}

?>

 

 

Please HELP ME!!!

 

Link to comment
https://forums.phpfreaks.com/topic/146423-php-erroe-need-help/
Share on other sites

Are you connecting to MSSQL or MySQL?

 

If MSSQL: You have to anable mssql extension, as it is disabled by default in WampServer

 

Click on the WampServer icon in tray, go to PHP>PHP Extensions, then select php_mssql. Wait until server restarts

Link to comment
https://forums.phpfreaks.com/topic/146423-php-erroe-need-help/#findComment-768737
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.