Ohad Koren
Ohad Koren

Reputation: 121

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:

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

Upvotes: 4

Views: 4276

Answers (1)

masroore
masroore

Reputation: 10135

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

Like this:

extension=mbstring
extension=mailparse

Upvotes: 8

Related Questions