Installing Yaml in xampp windows

若如初见. 提交于 2019-12-06 04:29:28

After searched lot finally found a solution

  1. Go to https://github.com/LegendOfMCPE/LoM-CMS/wiki/How-to-Install-LibYAML

  2. See the below link under For windows http://search.4shared.com/postDownload/ComqwjFvce/php_yaml-102-dev-54-vc9-x86.html

  3. Download that zip file

  4. Unzip it and put yaml.dll inside xampp folder

  5. php_yaml.dll inside xampp/php/ext/ folder

  6. add extension=php_yaml.dll in php.ini and Restart the apache. If possible restart the system

  7. Execute the following lines in a php file to check the extension loaded or not

    if (extension_loaded(yaml)) echo "yaml loaded :)"; else
    echo "something is wrong :(";

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!