How to Fix Unable to Load Mcrypt, Pdo, and Curl in Apache
I encountered this errors in setting up a Magento store and playing I've found the solutions and now I'm sharing it In your php.in...
https://www.czetsuyatech.com/2021/07/apache-unable-to-load-mcrypt-pdo-curl.html
I encountered this errors in setting up a Magento store and playing I've found the solutions and now I'm sharing it
In your php.ini file (could be in apache/bin or php installation folder - depending on your installation). Uncomment the following lines.
Plus libeay32.dll, ssleay32.dl and libmcrypt.dll must be located in your c:\windows\system32 directory
PHP manual: http://www.php.net/manual/en/curl.installation.php
Additional Reference: http://www.magentocommerce.com/wiki/magento_common_installation_problem_in_windows
In your php.ini file (could be in apache/bin or php installation folder - depending on your installation). Uncomment the following lines.
extension=php_mcrypt.dll
extension=php_curl.dll
extension=php_pdo.dll
Plus libeay32.dll, ssleay32.dl and libmcrypt.dll must be located in your c:\windows\system32 directory
PHP manual: http://www.php.net/manual/en/curl.installation.php
Additional Reference: http://www.magentocommerce.com/wiki/magento_common_installation_problem_in_windows
Post a Comment