We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

I am not able to install phalcon after successfully completion of all the step of installation

Hello Friend ,

i am trying to install phalcon , i am following all the step with successfull result . then still showing error .

Fatal error: Class 'Phalcon\Loader' not found in /var/www/html/test/index.php on line 9

Please help . it is urgent .....

Thank you

Which instructions have you followed (link)?

Have you enabled the phalcon extension in your php.ini file?

This basically means that extension is not enabled, add to proper sapi:

extension=phalcon.so



3.4k

you can try this to know if phalcon is loaded :

if (!extension_loaded('phalcon')) {
    exit('Phalcon extension is not installed. See https://phalcon.io/en/download');
}