مشکل تو Mssql سرورتون هست
راه حل رو
اینجا توضیح دادند
This error occurs when script incorrectly identifies PHP version on the server. To fix it you need to change code to force it use appropriate XML syntax for your PHP version. It is done by editing /core_functions/xml_parser.php file. In it find -
Code:
//different result for PHP4 and PHP5 if (strstr($phpv,"5.") && $phpv[0] == '5') $this->selectResult[ $lastIndex ]->SetInnerXml("<".$tag.$newInnerXml.$tag.">"); else $this->selectResult[ $lastIndex ]->SetInnerXml($newInnerXml.$tag.">");
and change to -
Code:
//different result for PHP4 and PHP5 $this->selectResult[ $lastIndex ]->SetInnerXml("<".$tag.$newInnerXml.$tag.">");
or
Code:
//different result for PHP4 and PHP5 $this->selectResult[ $lastIndex ]->SetInnerXml($newInnerXml.$tag.">");