PHP extension “soap” must be loaded error in magento
how to resolve error PHP extension “soap” must be loaded error in magento
In thos post we will show you how to resolve Error of PHP extension soap must be loaded. Here we give a few Steps to resolve the Error of PHP extension “soap” must be loaded.
Error : PHP extension soap must be loaded in magento
Step 1 :
Open xampp server Or
xampp/php/php.ini And open php.ini File
Step 2 :
Apache / config click ok button
( if you open php.ini using xampp server )
Step 3 :
find (ctrl + f) word “soap”
and remove “;”
;extension=php_soap.dll
change this line from::
;extension=php_soap.dll
TO::
extension=php_soap.dll
Step 4 :
Save php.ini File
How to revoke 'git add' before 'git commit' ?
In this post we will give you information about How to revoke 'git add' before 'git commit' ?. Hear we will give you detail about How to revoke 'git add' before 'git commit' ?And how to use it also give you demo for it if it is necessary.
Sometimes you need to undo your git file before you git comment command. Because you made a some misteck or wrong code and you did git add using "git add ." command then you think how to undo your code before git commit command. But you can do that using git reset command, if you need to undo all file Or you may need to undo just one then you can do using git reset command, you can see bellow command.
Example:
// For Spesific filegit reset
// For all files
git reset
Hope this code and post will helped you for implement How to revoke 'git add' before 'git commit' ?. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs
Step 5 :
Restart xampp server
Here is a video to show you “how to resolve Error of PHP extension ‘soap’ must be loaded”.
PHP SOAP Extension
A PHP SOAP Extension can be used to provide and consume Web services. In other words, this PHP extension can be used by PHP developers to write their own Web Services, as well as to write clients to make use of the existing Web services.
The SOAP extension that comes with PHP 5 is an attempt to implement the Web services stack support for PHP. Unlike most other efforts to support Web services for PHP, the SOAP extension is written in C. Hence it has the advantage of speed, over the other extensions.
The SOAP extension supports the following specifications. If not whole, at least the required subset for basic Web services.
- SOAP 1.1
- SOAP 1.2
- WSDL 1.1
The SOAP extension mainly focuses on RPC style Web services. However, you can also use document literal style WSDL files with the WSDL mode of services and clients.