先前在查Fusionpbx的問題時,在appserv的error log看到另外一筆warning紀錄,訊息如下:
Unable to load dynamic library 'C:/AppServ\\php5\\ext\\php_exif.dll'
查看了php_exif.dll的路徑後,確認沒有問題,便上網求助。
The reason this issue occurs is pretty silly, In AppServ's php.ini, The activation of each DLL component is arranged in alphabetical order, But php_exif.dll has to be activated after php_mbstring.dll, That's why the 'unable to load php_exif.dll' error occurs。
Therefore, the solution is also very simple,將php.ini中的"extension=php_mbstring.dll"移到"extension=php_exif.dll"之前即可。

[Related Links]
- Solution to the bug of Appserv php_exif.dll not loading and the use of Zend_Tool – Passerby Camp — Simple should be the simplest – ITeye Technology Website








Leave a Reply