简体   繁体   中英

PHP Warning: PHP Startup: Unable to load dynamic library '\xampp\php\ext\php_mailparse.dll' - The specified module could not be found

I am using php7 with xampp and windows, 64-bit and try to install mailparse, without success. It throws me the next exception:

PHP Warning: PHP Startup: Unable to load dynamic library '\\xampp\\php\\ext\\php_mailparse.dll' - The specified module could not be found.

I thought I should:

  • update php.ini --> enable mailparse extension
  • download mailparse extension dll file and put it in the ext folder in xampp/php

I've tried to find a normal mailparse extension dll for windows and php7 but I didn't find any.

Make sure the mailparse extension is loaded after mbstring extension in php.ini file.

Like this:

extension=mbstring
extension=mailparse

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM