0% found this document useful (0 votes)
43 views1 page

Upgrade PHP 7.2 to 7.3 on Windows IIS

To upgrade PHP from version 7.2 to 7.3 on a Windows system using IIS, the best option is to use the Microsoft Web Platform Installer to install PHP 7.3 which will handle many configuration steps automatically. Alternatively, download the PHP 7.3 code and unzip it to a new folder, update the IIS handler mapping, copy the php.ini file, uncomment extensions in php.ini, restart IIS, and test with a phpinfo file and applications for compatibility issues.

Uploaded by

erbabu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
43 views1 page

Upgrade PHP 7.2 to 7.3 on Windows IIS

To upgrade PHP from version 7.2 to 7.3 on a Windows system using IIS, the best option is to use the Microsoft Web Platform Installer to install PHP 7.3 which will handle many configuration steps automatically. Alternatively, download the PHP 7.3 code and unzip it to a new folder, update the IIS handler mapping, copy the php.ini file, uncomment extensions in php.ini, restart IIS, and test with a phpinfo file and applications for compatibility issues.

Uploaded by

erbabu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Windows 10 – Upgrade PHP v7.2 to v7.

In Windows based system, if you are using PHP v7.2 in IIS setup then follow the below steps for
upgrading to v7.3.

 Best option is to install PHP v7.3 using Microsoft Web Platform Installer. This is
supposed to take care of many things automatically for IIS.
 Download the PHP v7.3 code from [Link]
Thread Safe version for IIS). Unzip the contents to the PHP folder (v7.3) similar to the
current v7.2 (C:\Program Files\PHP –> 64bit version).
 Open IIS and update the handler mapping for *.php (update the entry related to the name
PHP_via_FastCGI).
 Check whether [Link] file is available under the new PHP directory (C:\Program
Files\PHP\v7.3). If not, create a copy of [Link]-production and rename it to [Link].
 For default extensions like curl, LDAP and MySQL, open [Link] and uncomment the
following lines
 Enable the extensions directory. Usually it is the ext directory under v7.3 folder.
(extension_dir = “ext”)
 Uncomment the lines related to the module [extension=curl; extension=ldap;
extension=mysqli]
 Restart IIS
 Test with the sample PHP file for phpinfo() details and make sure that the required
modules are enabled
 Test your PHP application, which was working earlier in previous version for
compatibility issues, if any.

References:

[Link]
[Link]

You might also like