Because the web server used to deploy several websites under iis, and now this project is developed using php. Originally, php+mysql+iis should be very simple and can be easily searched on the Internet. However, because the web website used to use sqlserver%e6%95%b0%e6%8d%ae%e5%ba%93/' target='_blank'>sqlserverdatabase. Now I don’t want to change the original database structure, so I use iis+ directly. SQL Server +php5.6 In this environment, I won’t talk about the twists and turns in the middle. Let’s talk about the steps when I deployed:
1. Go to the php official website to download php5.6.16 (http://windows.php .net/download), pay attention to select VC11 x86 Non Thread Safe here. Whether you are 64-bit or 32-bit, select x86, which is 32-bit, for downloading. Why is this because php5.6 does not support links to sqlserver, but Microsoft provides corresponding components, but the components on Microsoft's official website only support 32-bit. Unzip it to C:Program Files (x86), modify php.ini, if not, copy php.ini-development and change it to php.ini, modify date.timezone = "Asia/Shanghai", and add the extensions you need. Modify the environment variables to add the php root directory and php extension directory ext, download the corresponding vc11 (Visual C++ Redistributable for Visual Studio 2012 Update 4), download x86 and install it. You must also select x86 here because php is x86.
2. Turn on the cgi function of iis in the server role
3. Download PHP Manager for IIS (http://phpmanager.codeplex.com/ releases/view/69115) and install it
4. Face it in IIS Configure PHP Manager. Click "Register new PHP version", browse and select "php-cgi.exe" under the PHP installation file in the pop-up box. From here, you can check phppathinfo() to see if iis+php is successful, and then forget it. Connected to
sqlserver. 5. Go to Microsoft to download the driver for PHP connection
sqlserver(http://www.microsoft.com/en-us/download/details.aspx?id=36434), select the corresponding version and install it directly. , 6. Go to Microsoft to download Microsoft Drivers for PHP for
SQL Server(http://www.microsoft.com/en-us/download/details.aspx?id=20098) Choose the latest installation and install it into php Below the ext directory. 7. Open php.ini and add the corresponding extension=php_sqlsrv_56_nts.dll extension=php_pdo_sqlsrv_56_nts.dll extension.
Here iis7+ms
SQL Server+php5.6 is installed. The above has introduced some problems encountered when building the iis+sql server +php56 environment under Windows 2008 r2. It includes the content of sqlserver database, sqlserver, SQL Server, and Visual Studio. I hope it will be helpful to friends who are interested in PHP tutorials. .