This is coding issue , you are getting error :
Parse error: syntax error, unexpected T_DEC in D:\hshome\xxxxxx\xxxxxxxx\forum\includes\db.php on line 63
This is because in the file db.php, it seems there is a syntax error in your code. Plesae check it:
This is the part of code you are using :
if(!$db->db_connect_id)
{
message_die(CRITICAL_ERROR, “Could not connect to the database” -->");
}
It should be :
if(!$db->db_connect_id)
{
message_die(CRITICAL_ERROR, “Could not connect to the database”);
}
It should solve this issue :).. I have updated you ticket.
Apologies for the coding error (left over from my debugging), but that is not why it cannot connect to the database. The problem still persists.
I will write a small script to test the connection directly (outside of phpBB code) and see if that works. That should indicate whether it’s in the phpBB code or something gone wrong with PHP connections to MSSQL. I’m not 100% certain it’s been since the upgrade, though it was certainly working last I checked, about 2 weeks ago.
If the test script doesn’t work, I’ll let you know.
not that we doubt you, we jut have to go by what it shows and mssql and all the parameters were showing as working. A test script helps a bit, checking it out in a few moments.
I sent you the php info output so I know you aw that claim by php as well