Hi i try to run sample code for sslserver with this conf
define(“PHPGRID_DBTYPE”,”mssql”); // mysql,oci8(for oracle),mssql,postgres,sybase
define(“PHPGRID_DBHOST”,”200.xxxxxx”);
define(“PHPGRID_DBUSER”,”luxxxxxx”);
define(“PHPGRID_DBPASS”,”hxxxxx”);
define(“PHPGRID_DBNAME”,”xxxxx”);
is a iis server with php
and get me the next mensagge:
You need to enable php extension ‘mssql’ first.
Can you help me
2 Answers
Latest php versions comes with “mssqlnative” extension. So you need to set this instead of mssql.
If you still see extension notice, you need to install it: http://www.phpgrid.org/faqs/#74
Your Answer