Windows Server 2008 R2:
Installed IIS 7.5 - check "CGI" feature
Installed PHP 5.3.9 (or 5.3.10)
Installed PHP Manager for IIS (codeplex site, x86 or x64!)
Installed SQL Server 2008 R2 (enable .NET Framework Core role via Add Features .NET 3.5.1)
Installed MSSQL drivers for PHP (SQLSRV20) (SQLSRV30 doesn't work with me)
Enabled those drivers with PHP Manager for IIS (Visible in IIS Manager)
Extracted Mantis files to wwwroot
Created a Mantis Database called Mantis on SQL Server 2008 R2 with the added .sql file (rename)
Create a database user and hook it up to the database (with read/write) rights
Not needed, check out one of the newer posts in this topic to use SQL access without ODBC.
Created a System DSN entry with the 32bit ODBC console (SysWOW64 folder) called MantisDSN
Changed the database section of config_inc.php to point to the odbc entry:
# --- Database Configuration ---
$g_hostname = 'MantisDSN';
$g_db_username = 'dbuserwithmantisaccess';
$g_db_password = 'passwordofdbuserwithmantisaccess';
$g_database_name = 'mantis';
$g_db_type = 'odbc_mssql';
Empty browser cache from previous failed attempts
Browse to http://localhost/mantis (your equivalent)
