Whoops! We seem to have hit a snag. Please try again later

前端 未结 11 3038
死守一世寂寞
死守一世寂寞 2021-02-20 06:50

Whoops! We seem to have hit a snag. Please try again later.

Codeigniter 4 shows an error when I run the CI4 application, Ho

11条回答
  •  难免孤独
    2021-02-20 07:26

    After installing CodeIgniter 4 when you run the app then you will get an error like this

    To know the error go to the app/Config/Boot/production.php and set display_errors to 1 as below

    ini_set('display_errors', '1');

    Now, you will see the actual error below

    Nothing to worry about it. The app needs permission. Assign the permission like as below

    sudo chmod -R 777 project_name

提交回复
热议问题