Xampp Control Panel V3.2.1 Php Version

How to update PHP version in XAMPP. Many web developers, especially beginners, have a common question: “How do I update my PHP version in XAMPP?” After receiving many questions about updating the PHP version, we decided to write a short and simple tutorial so that you can easily update the PHP version in XAMPP (Windows).

XAMPP is an easy to install Apache distribution containing MariaDB, PHP, and Perl. Just download and start the installer. XAMPP for Windows 7.3.28, 7.4.20 & 8.0.7. Xampp versi v3.2.1 arsitekture windows 32bit x64, check instalasi windows 7, windows 10 ok. Download software xampp 32bit x64. Extract file xamppwin325.6.30VC11installer.zip dan run/ install xamppwin325.6.30VC11installer.exe. Untuk mempermudah pengoperasian dan tidak tercampur dengan file drive C sebaiknya instalasi XAMPP letakkan pada.

In this tutorial we will show you how you can easily update your PHP version in XAMPP through 4 steps.

XAMPP plays an important role for web developers. It is one of the most popular stacks that developers use to build websites on their own system for free. Working in localhost is a good practice to strengthen your web development skills. It is also common among WordPress developers.

Updating the PHP version in XAMPP is very simple. All you have to do is follow these 4 simple steps.

Recommended Article: How to update PHP version in XAMPP

Step 1: Download the latest PHP version

First, download the latest version of PHP via the link below:

Make sure you download the Thread Safe Zip file depending on your version of Windows. x86 for 32-bit and x64 for 64-bit. As you can see in the image below:

In the picture above you can see that I have downloaded VC15 x64 Thread Safe because my version of Windows is 64-bit.

Xampp

Step 2: Extract the zip file and create a PHP folder

In this step, create a new folder on your Windows desktop and name it PHP. Then, extract the zip file into that new folder (ie PHP).

Step 3: Replace the new version of PHP instead of the old version

Next, go to the XAMPP folder on your computer and select the php folder. Then rename it to a name like php_5 and put the extracted new PHP folder in the XAMPP directory.

Step 4: Configure the Apache server

The next step is to configure the Apache server. To do this, you must open your XAMPP control panel. Then click on (httpd-xampp.conf) in the Apache section.

An httpd-xampp.config file will open on your page. Next, in the PHP-Module settings, delete the old lines of code as in the image below and replace the new lines of code.

Download Xampp V3.2.2

Old code:

New code:

Save the file and restart the XAMPP server. Done!

Also, see:

Dear user, we hope you would enjoy this tutorial, you can ask questions about this training in the comments section, or to solve other problems in the field of Eldernode training, refer to the Ask page section and raise your problem in it as soon as possible. Make time for other users and experts to answer your questions.

Xampp 8.0.6 For Control Panel Install Apache

Goodluck.

Download Xampp Control Panel 3.2.1

  1. Install latest xampp
  2. Check installed php version
  3. Download desired php versions
  4. In my case, I will add php5.6 version
  5. Make a folder in xampp root for php5.6 php. For example, php5_6
  6. Copy downloaded php5.6 files and folders to php5_6
  7. Open php.ini in php5_6 folder. (if php.ini not exist, rename php.ini-production to php.ini)
  8. Find and uncomment following lines
    extension_dir = “ext”

    extension=php_bz2.dll
    extension=php_curl.dll
    extension=php_fileinfo.dll
    extension=php_gd2.dll
    extension=php_gettext.dll
    ;extension=php_gmp.dll
    ;extension=php_intl.dll
    ;extension=php_imap.dll
    ;extension=php_interbase.dll
    ;extension=php_ldap.dll
    extension=php_mbstring.dll
    extension=php_exif.dll ; Must be after mbstring as it depends on it
    extension=php_mysql.dll
    extension=php_mysqli.dll
    ;extension=php_oci8_12c.dll ; Use with Oracle Database 12c Instant Client
    ;extension=php_openssl.dll
    ;extension=php_pdo_firebird.dll
    extension=php_pdo_mysql.dll
    ;extension=php_pdo_oci.dll
    ;extension=php_pdo_odbc.dll
    extension=php_pdo_pgsql.dll
    extension=php_pdo_sqlite.dll
    ;extension=php_pgsql.dll
    ;extension=php_shmop.dll

  9. Open httpd_xampp.conf and add following. Please check your xampp php path and add desired listen port. Here Listen port is 8056.
    ScriptAlias /php5_6/ “C:/xampp/php5_6/”
    <Directory “C:/xampp/php5_6”>
    AllowOverride None
    Options None
    Require all denied
    <Files “php-cgi.exe”>
    Require all granted
    </Files>
    </Directory>

    Listen 8056
    <VirtualHost *:8056>
    UnsetEnv PHPRC
    <FilesMatch “.php$”>
    php_flag engine off
    SetHandler application/x-httpd-php5_6
    Action application/x-httpd-php5_6 “/php5_6/php-cgi.exe”
    </FilesMatch>
    </VirtualHost>

  10. Check whether the port work with php versions
    http://localhost/dashboard/phpinfo.php
    http://localhost:8056/dashboard/phpinfo.php