4

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.

1
  • 1
    You can take a look in phpinfo() to see if the module was loaded (it wasn't obviously when looking at your error) and see if your php.ini with new conf is loaded successfully. Commented Aug 18, 2016 at 8:36

1 Answer 1

8

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

Like this:

extension=mbstring
extension=mailparse
Sign up to request clarification or add additional context in comments.

3 Comments

I was headbanging trying to work it out, thank you very much.
you are my hero
You are my hero too. Thank you, Was driving me nuts!

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.