How to Upgrade the PHP Version in XAMPP to 8.3

Kulas

Administrator
Staff member

Downloading the Correct Version of PHP 8.3​

Firstly Download or upgrade to XAMPP 8.2.12
Then download the zip version of PHP 8.3.10 (VS16 X86 64bit thread safe) from the php.net website.

php.PNG

Next rename the existing php folder in XAMPP as php-old. Then create a new folder and name it


1732908779148.png

Unzip the contents of php-8.3.10-Win32-vs16-x64.zip that you have just downloaded into the php folder that you have just created.

1732908810083.png

Creating and Configuring the New PHP.ini​

Make a copy of php.ini-development and rename to php.ini. Specify the extensions directory in php.ini
; On windows:
extension_dir = "ext"
CHANGE TO extension_dir = "\xampp\php\ext"


1732908929297.png

Next enable mysqli and mbstring extensions in php.ini if not yet enabled by removing the semicolon (;) before the extensions. Some other extensions have also to be enabled. They are curl,intl, exif , openssl, zip in a similar manner.
The PHP upgrade is now complete and is now PHP 8.3


1732909102490.png

 
Last edited:
Back
Top