Where do you set and access run-time configuration parameters per environment for service fabric?

In order to have per environment variables for running Service Fabric locally and in the cloud this is what you must do: Add your custom config section and parameters to the Settings.xml file of the Service/Actor project (located at \PackageRoot\Config\Settings.xml from the project root). Leave the parameters blank as we will be setting these elsewhere … Read more

Fatal error: Call to undefined function sqlsrv_connect() in C:\xampp\htdocs

The MSSQL extension is not available anymore on Windows with PHP 5.3 or later. SQLSRV, an alternative driver for MS SQL is available from Microsoft: » http://www.microsoft.com/en-us/download/details.aspx?id=20098 Step by Step Download SQLSRV32.EXE (Microsoft Drivers for PHP for SQL Server) from: http://www.microsoft.com/en-us/download/details.aspx?id=20098 Choose path: C:\xampp\php\ext Uncomment or Append extension = php_sqlsrv_56_ts.dll in php.ini Restart Apache from XAMPP … Read more