How to install Microsoft's SQL Server Driver for PHP

来源:互联网 发布:怎么在淘宝上找115会员 编辑:程序博客网 时间:2024/04/29 03:55

本文转载自:http://robsphp.blogspot.com/2012/09/how-to-install-microsofts-sql-server.html



There are questions on Microsoft's SQL Server driver for PHP forum from people that cannot work out how to install the PHP driver.

PHP offers some help on choosing extensions here: http://php.net/manual/en/install.pecl.windows.php, and here:http://php.net/manual/en/install.windows.extensions.php.

It's still a bit complicated, so here are some explicit instructions which I hope can help new users of PHP.  After a while all of this will become common sense.



Instruction notes:

  1. Microsoft's PHP driver for SQL Server only runs with PHP 32-bit builds (as standard fromhttp://windows.php.net/download).
  2. These instructions are only for PHP 5.2, 5.3 or 5.4. (5.5 and 5.6 supported with custom build.)
  3. I am pretending that PHP is installed into folder C:\PHP.  Replace the term C:\PHP in the instructions with whatever folder your PHP is installed into.
  4. See orange text for PHP 5.5 and 5.6 support in 32 and 64 bits.  If you do not know whether you have 64-bit PHP 5.5/5.6, start the instructions at step 5, note the orange comment in 5.3, then return to step 1 of the instructions below.
Instructions:
  1. Download Microsoft's PHP drivers.  Open page: http://www.microsoft.com/en-us/download/details.aspx?id=20098
    1. If you have Windows Vista, Server 2008 or above, download SQLSRV30.EXE.
    2. If you have Server 2003/Windows XP or below, download SQLSRV20.EXE
    3. If you have PHP 5.5/5.6, or you have Windows XP/2003 and you want to install driver 3.0...
      1. See this post: Unofficial php_sqlsrv 3.0 and download the archive
      2. Note the text in orange in step (2.) below - you don't need to extract the 'source code' folder.  Also...
        1. If you have 64-bit PHP, you need to extract only the files in sub-folder x64 of the zip file, and can ignore everything else.
        2. If you have 32-bit PHP, you should ignore the folderx64 in the zip file.
      3. Assume for step (6.) below that you downloaded SQLSRV30.EXE
      4. Remember that PHP 5.5+ does not work on Windows XP/2003 - for this OS you can only go up to PHP 5.4.
         
  2. Extract the entire contents of the file downloaded in (1.) to your PHP extensions folder.  This is usually a sub-folder of the location where php is installed, named 'ext', e.g.C:\PHP\ext.
    Note that you can use WinRAR to open the .exe file and extract the files, if you want.

    For users of the Unofficial php_sqlsrv 3.0 zip file:
    1. If you have 64-bit PHP, please extract only the contents of folderx64 of the zip file.
    2. If you have 32-bit PHP, extract the files in the root of the zip and ignore any folders. 
        
  3. Download the SQL Server Native Client (SNAC), the PHP driver depends on it:
    1. For SQLSRV30.EXE (Windows Vista and above), go here: http://www.microsoft.com/en-us/download/details.aspx?id=29065#SNAC.  These aredirect links:
      1. SQL Server 2012 Native Client for 64 Bit Windows (x64)
      2. SQL Server 2012 Native Client for 32 Bit Windows (x86)
         
    2. For SQLSRV20.EXE (Windows XP/2003), go here: http://www.microsoft.com/en-us/download/details.aspx?id=16978#SNAC.  Here are thedirect links:
      1. SQL Server 2008r2 Native Client for 64 Bit Windows (x64)
      2. SQL Server 2008r2 Native Client for 32 Bit Windows (x86)
           
  4. Install the SQL Server Native Client downloaded from the previous step (3.) on the same computer that runs PHP.
     
  5. Find out which version of PHP you have (if you already know it, go to step 6):

    1. Open a command window (run cmd.exe)
    2. Using your PHP folder, run command: "C:\PHP\php.exe" -i | more
      'more' loads the information page by page.
    3. The top line will show PHP Version => 5.x.x...  Make a note of the version.  It will start with 5.6, 5.5, 5.4, 5.3 or 5.2.  The final (3rd) number is not important.PHP 5.5+ users can also tell if they have a 64-bit or 32-bit version of PHP by looking at the reportedArchitecturex86 = 32-bit andx64 = 64-bit.For the next steps you may need to scroll to the 2nd information page in the console window, by pressing the space bar...
    4. For version 5.6, 5.5, 5.4 and 5.3, a little further down is settingPHP Extension Build => API... It will end with either ...TS,VCn or ...NTS,VCn.  Make a note of whether it says TS or NTS.  Also make a note of whether the final part is VC11, VC9 or VC6 (VC6 is still possible with PHP 5.3 and SQLSRV20.EXE).
    5. For PHP version 5.2 only: note the setting that says "Thread Safety enabled" or "Thread Safety disabled". 
      "Thread Safety enabled" means TS,VC6
      "Thread Safety disabled" means NTS,VC6.
       
  6. Edit your php configuration file, php.ini.  Go to the end of the file and add these lines, depending on your earlier choices.  You need to know your PHP version number (5.2, 5.3, 5.4, 5.5 or 5.6), and your TS/NTS setting, and whether you have a VC11, VC9 or VC6 build, all noted from step 5. above.

    You can calculate the files you need by looking at the file name and comparing to your PHP version, and remembering whether you downloaded SQLSRV20.exe or SQLSRV30.exe.  Here are all of the combinations that are possible:

    • For the custom drivers, PHP 5.6, NTS, VC11 add lines:
      extension=php_sqlsrv_56_nts.dll
      extension=php_pdo_sqlsrv_56_nts.dll  
    • For the custom drivers, PHP 5.6, TS, VC11 add lines:
      extension=php_sqlsrv_56_ts.dll
      extension=php_pdo_sqlsrv_56_ts.dll
    • For the custom drivers, PHP 5.5, NTS, VC11 add lines:
      extension=php_sqlsrv_55_nts.dll
      extension=php_pdo_sqlsrv_55_nts.dll  
    • For the custom drivers, PHP 5.5, TS, VC11 add lines:
      extension=php_sqlsrv_55_ts.dll
      extension=php_pdo_sqlsrv_55_ts.dll
    • For SQLSRV30.EXE (or the custom drivers), PHP 5.4, NTS, VC9 add lines:
      extension=php_sqlsrv_54_nts.dll
      extension=php_pdo_sqlsrv_54_nts.dll
    • For SQLSRV30.EXE (or the custom drivers), PHP 5.4, TS, VC9 add lines:
      extension=php_sqlsrv_54_ts.dll
      extension=php_pdo_sqlsrv_54_ts.dll
    • For SQLSRV30.EXE (or the custom drivers), PHP 5.3, NTS, VC9 add lines:
      extension=php_sqlsrv_53_nts.dll
      extension=php_pdo_sqlsrv_53_nts.dll
    • For SQLSRV30.EXE (or the custom drivers), PHP 5.3, TS, VC9 add lines:
      extension=php_sqlsrv_53_ts.dll
      extension=php_pdo_sqlsrv_53_ts.dll
    • For SQLSRV20.EXE, PHP 5.3, NTS, VC9 add lines:
      extension=php_sqlsrv_53_nts_vc9.dll
      extension=php_pdo_sqlsrv_53_nts_vc9.dll
    • For SQLSRV20.EXE, PHP 5.3, NTS, VC6 add lines:
      extension=php_sqlsrv_53_nts_vc6.dll
      extension=php_pdo_sqlsrv_53_nts_vc6.dll
    • For SQLSRV20.EXE, PHP 5.3, TS, VC9 add lines:
      extension=php_sqlsrv_53_ts_vc9.dll
      extension=php_pdo_sqlsrv_53_ts_vc9.dll
    • For SQLSRV20.EXE, PHP 5.3, TS, VC6 add lines:
      extension=php_sqlsrv_53_ts_vc6.dll
      extension=php_pdo_sqlsrv_53_ts_vc6.dll
    • For SQLSRV20.EXE, PHP 5.2, NTS, VC6 add lines:
      extension=php_sqlsrv_52_nts_vc6.dll
      extension=php_pdo_sqlsrv_52_nts_vc6.dll
    • For SQLSRV20.EXE, PHP 5.2, TS, VC6 add lines:
      extension=php_sqlsrv_52_ts_vc6.dll
      extension=php_pdo_sqlsrv_52_ts_vc6.dll
  7. Restart your web server for the change to take effect.  That means stop and start IIS, Apache, or whatever you use, not the whole computer.


本文转载自:http://robsphp.blogspot.com/2012/09/how-to-install-microsofts-sql-server.html


0 0
原创粉丝点击