5

I am trying to install Magento2 on Xampp and got some php extensions errors that are not enables. Please help me to enable these enable following php extensions.

  1. PHP Extension xsl.
  2. PHP Extension intl.
  3. PHP Extension soap.

Thanks.

Muhammad Anas
1,4673 gold badges13 silver badges33 bronze badges
asked Dec 10, 2017 at 15:10
0

2 Answers 2

10
  1. Check php.ini file. This is normally under your xampp folder (Example D:\xampp\php)

  2. Search like php_soap.dll;,php_xsl.dll,php_intl.dll each dll extension

  3. removing the first ; character, to make it looks like

extension=php_soap.dll

extension=php_xsl.dll

extension=php_intl.dll

  1. Once done restart Apache server.
answered Dec 10, 2017 at 16:23
1
  • is it works on mac os? I tried. but it's not working Commented Nov 17, 2020 at 2:19
1

Open your Php.ini file available at the location {your_installation_drive}:\xampp\php

Search for the below given extension over there.

extension=intl.dll
extension=php_soap.dll
extension=php_xsl.dll

May be available at line no 884, 906 & 911 respectively just remove the ; symbol before the extensions.

Save the php.ini file & restart the the server again

If still facing the same problem feel free to revert

Thank you!

answered Dec 13, 2017 at 17:55

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.