How To Upgrade PHP Version In XAMPP On Windows

How To Upgrade PHP Version In XAMPP On Windows

To upgrade PHP version in xampp on windows; Through this tutorial, you will learn two ways to upgrade/update php version in xampp on windows.

How To Upgrade/Update PHP Version In XAMPP On Windows

There are two ways upgrade php version in xampp on windows; is as follows:

  • Method 1: To upgrade PHP in XAMPP by Download Latest PHP
  • Method 2: To upgrade/update PHP version in XAMPP on windows using cmd

Method 1: To upgrade PHP in XAMPP by Download Latest PHP

To upgrade PHP in XAMPP, you can follow these steps:

  1. Download the latest version of PHP that is compatible with XAMPP from the official PHP website. Make sure to download the thread-safe version of PHP for Windows if you are using XAMPP on Windows.
  2. Extract the downloaded PHP archive to a temporary folder on your computer.
  3. Stop the Apache server in XAMPP by clicking on the “Stop” button in the XAMPP Control Panel.
  4. Navigate to the XAMPP installation directory and locate the “php” folder. Rename this folder to “php_old” to keep a backup of the existing PHP installation.
  5. Copy the extracted PHP files and folders from the temporary folder to the “php” folder in XAMPP.
  6. Start the Apache server in XAMPP by clicking on the “Start” button in the XAMPP Control Panel.
  7. Open a web browser and go to “http://localhost/dashboard/phpinfo.php” to verify that the new version of PHP has been installed and is working correctly.

Method 2: To upgrade/update PHP version in XAMPP on windows using cmd

You can upgrade PHP version in XAMPP using the terminal by following these steps:

  1. Download the latest version of PHP that is compatible with XAMPP from the official PHP website. Make sure to download the thread-safe version of PHP for Windows if you are using XAMPP on Windows.
  2. Extract the downloaded PHP archive to a temporary folder on your computer.
  3. Open a terminal window and navigate to the XAMPP installation directory. On Windows, you can do this by typing the following command and pressing Enter:
    • cd C:\xampp
  4. Stop the Apache server in XAMPP by running the following command:
    • xampp\apache\bin\httpd.exe -k stop
  5. Navigate to the XAMPP “php” folder by running the following command:
    • cd php
  6. Rename the existing PHP folder to create a backup. You can do this by running the following command:
    • rename php php_old
  7. Copy the extracted PHP files and folders from the temporary folder to the XAMPP “php” folder. You can do this by running the following command:
    • xcopy C:\xampp\php /s /e
    • Note: Replace <path_to_extracted_php_files> with the actual path to the folder where you extracted the PHP files.
  8. Start the Apache server in XAMPP by running the following command:
    • xampp\apache\bin\httpd.exe -k start
  9. Open a web browser and go to “http://localhost/dashboard/phpinfo.php” to verify that the new version of PHP has been installed and is working correctly.

Note: It’s always recommended to backup your XAMPP installation before making any changes to it. Also, upgrading PHP in XAMPP may require you to update any extensions or libraries that you have installed.

Conclusion

To upgrade PHP version in xampp on windows; Through this tutorial, you will learn two ways to upgrade/update php version in xampp on windows.

Recommended PHP XAMPP & Windows Tutorials

AuthorAdmin

My name is Devendra Dode. I am a full-stack developer, entrepreneur, and owner of Tutsmake.com. I like writing tutorials and tips that can help other developers. I share tutorials of PHP, Python, Javascript, JQuery, Laravel, Livewire, Codeigniter, Node JS, Express JS, Vue JS, Angular JS, React Js, MySQL, MongoDB, REST APIs, Windows, Xampp, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL and Bootstrap from a starting stage. As well as demo example.

Leave a Reply

Your email address will not be published. Required fields are marked *