php_yaml extension is installed but can't be found

35 views Asked by At

I want to contribute in a laravel project. I get an error about yaml_parse so I probably haven't installed the php_yaml application. On the pecl download page, there is a zip for the most recent version and a .dll file for the version below. I download the .dll file, add the extension to my php.ini but I get an error the plugin can't be found

PHP Warning: PHP Startup: Unable to load dynamic library 'php_yaml.dll' (tried: ext\php_yaml.dll (Kan opgegeven module niet vinden), ext\php_php_yaml.dll.dll (Kan opgegeven module niet vinden)) in Unknown on line 0

PHP Warning: PHP Startup: Unable to load dynamic library 'yaml' (tried: ext\yaml (Kan opgegeven module niet vinden), ext\php_yaml.dll (Kan opgegeven module niet vinden)) in Unknown on line 0

I can assure you this .dll file is actually in the correct folder, here is the prove yaml.dll inside the ext folder

Here is my php.ini I'm not sure how I should name the extension so I did it with both names..

;extension=tidy
;extension=xsl
extension=php_yaml.dll
extension=yaml
extension=zip

;zend_extension=opcache
0

There are 0 answers