Enable php extension for installation Magento2 on Xampp Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar ManaraMagento2 Installation: Composer PHP version errors on WindowsThe requested PHP extension ext-xsl * is missing from your systemI have intalled magento2 into xampp server and i encountered with this error when i tried to run it locallyMagento2 Install extension from multiple-extensions repositoryHow can I install Magento on Ubuntu 16.04 XAMPP with PHP version 7.1.1?PHP extension check error 2.1.5?How to install “stripe-php” library manually for stripe extension?php version requirements for Magento 1.9.1, 1.9.3 versus 2.2.0install magento2 on xamppTrying to setup magento2 , missing Extension intl. -XAMPP
Protagonist's race is hidden - should I reveal it?
Suing a Police Officer Instead of the Police Department
Check if a string is entirely made of the same substring
Office 365 Outlook has huge fonts - how to make smaller?
How would this chord from "Rocket Man" be analyzed?
Does Feeblemind produce an ongoing magical effect that can be dispelled?
Expansion//Explosion and Siren Stormtamer
Could Neutrino technically as side-effect, incentivize centralization of the bitcoin network?
What is /etc/mtab in Linux?
As an international instructor, should I openly talk about my accent?
What is it called when you ride around on your front wheel?
How would I use different systems of magic when they are capable of the same effects?
Does Mathematica have an implementation of the Poisson Binomial Distribution?
Justification for leaving new position after a short time
Can I criticise the more senior developers around me for not writing clean code?
Is it OK if I do not take the receipt in Germany?
All ASCII characters with a given bit count
What is a 'Key' in computer science?
My bank got bought out, am I now going to have to start filing tax returns in a different state?
Seek and ye shall find
How do I check if a string is entirely made of the same substring?
How to avoid introduction cliches
How can I wire a 9-position switch so that each position turns on one more LED than the one before?
Retract an already submitted recommendation letter (written for an undergrad student)
Enable php extension for installation Magento2 on Xampp
Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar ManaraMagento2 Installation: Composer PHP version errors on WindowsThe requested PHP extension ext-xsl * is missing from your systemI have intalled magento2 into xampp server and i encountered with this error when i tried to run it locallyMagento2 Install extension from multiple-extensions repositoryHow can I install Magento on Ubuntu 16.04 XAMPP with PHP version 7.1.1?PHP extension check error 2.1.5?How to install “stripe-php” library manually for stripe extension?php version requirements for Magento 1.9.1, 1.9.3 versus 2.2.0install magento2 on xamppTrying to setup magento2 , missing Extension intl. -XAMPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
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.
- PHP Extension xsl.
- PHP Extension intl.
- PHP Extension soap.
Thanks.
magento2 php-7
add a comment |
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.
- PHP Extension xsl.
- PHP Extension intl.
- PHP Extension soap.
Thanks.
magento2 php-7
add a comment |
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.
- PHP Extension xsl.
- PHP Extension intl.
- PHP Extension soap.
Thanks.
magento2 php-7
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.
- PHP Extension xsl.
- PHP Extension intl.
- PHP Extension soap.
Thanks.
magento2 php-7
magento2 php-7
edited 2 days ago
Muhammad Anas
8241322
8241322
asked Dec 10 '17 at 15:10
poojapooja
313
313
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Check
php.ini
file. This is normally under your xampp folder (ExampleD:xamppphp
)Search like
php_soap.dll;
,php_xsl.dll
,php_intl.dll
each dll extensionremoving the first ; character, to make it looks like
extension=php_soap.dll
extension=php_xsl.dll
extension=php_intl.dll
- Once done restart Apache server.
add a comment |
Open your Php.ini file available at the location your_installation_drive:xamppphp
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!
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f205223%2fenable-php-extension-for-installation-magento2-on-xampp%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Check
php.ini
file. This is normally under your xampp folder (ExampleD:xamppphp
)Search like
php_soap.dll;
,php_xsl.dll
,php_intl.dll
each dll extensionremoving the first ; character, to make it looks like
extension=php_soap.dll
extension=php_xsl.dll
extension=php_intl.dll
- Once done restart Apache server.
add a comment |
Check
php.ini
file. This is normally under your xampp folder (ExampleD:xamppphp
)Search like
php_soap.dll;
,php_xsl.dll
,php_intl.dll
each dll extensionremoving the first ; character, to make it looks like
extension=php_soap.dll
extension=php_xsl.dll
extension=php_intl.dll
- Once done restart Apache server.
add a comment |
Check
php.ini
file. This is normally under your xampp folder (ExampleD:xamppphp
)Search like
php_soap.dll;
,php_xsl.dll
,php_intl.dll
each dll extensionremoving the first ; character, to make it looks like
extension=php_soap.dll
extension=php_xsl.dll
extension=php_intl.dll
- Once done restart Apache server.
Check
php.ini
file. This is normally under your xampp folder (ExampleD:xamppphp
)Search like
php_soap.dll;
,php_xsl.dll
,php_intl.dll
each dll extensionremoving the first ; character, to make it looks like
extension=php_soap.dll
extension=php_xsl.dll
extension=php_intl.dll
- Once done restart Apache server.
answered Dec 10 '17 at 16:23
Rama Chandran MRama Chandran M
2,74181530
2,74181530
add a comment |
add a comment |
Open your Php.ini file available at the location your_installation_drive:xamppphp
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!
add a comment |
Open your Php.ini file available at the location your_installation_drive:xamppphp
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!
add a comment |
Open your Php.ini file available at the location your_installation_drive:xamppphp
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!
Open your Php.ini file available at the location your_installation_drive:xamppphp
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 '17 at 17:55
ABHISHEK TRIPATHIABHISHEK TRIPATHI
2,1921828
2,1921828
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f205223%2fenable-php-extension-for-installation-magento2-on-xampp%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown