Whoops! We seem to have hit a snag. Please try again later.
Codeigniter 4 shows an error when I run the CI4 application, Ho
This work for me try it Go to app directory then to boot directory you will see production.php file.
That is:
app => Config => Boot => production.php
Change the ini_set('display_errors', '0')
to ini_set('display_errors', '1')
.
Warning: When in production change back to initial ini_set('display_errors', '0')
Or
you can rename your file env
in your project directory to .env
after that open it and edit.
Search for # CI_ENVIRONMENT = production
remove #
and change production
to development