Search code examples
phpcakephpphp-extension

What are extensions need to run cakePHP


Im new to cakePHP. With it upload function not working now. I got already developed project to work. What are PHP extensions I need to enable for cakePHP ?


Solution

  • Go to your php.ini file and enable this two extension.

    • extension=php_mbstring.dll
    • extension=php_intl.dll

    and make sure file_uploads = On.

    Then restart the apache.