Upgrading from 4.1.8 to 4.2.0 |
Hi
I went through the process of upgrading codeigniter from 4.1.8 to 4.2.0 I've the framework installed through composer I executed the following commands Code: rm public/index.php Then the commands stated in user Guide https://codeigniter.com/user_guide/insta...ading.html Code: > composer update Now I cannot run the App because I'm getting this in the Apache logs Code: [Thu Jun 09 11:10:14.915165 2022] [php7:error] [pid 1931744] [client 10.2.132.217:49362] PHP Fatal error: Uncaught Error: Call to a member function run() on int in /var/www/myweb/index.php:40\nStack trace:\n#0 {main}\n thrown in /var/www/myweb/index.php on line 40 Should I also copy (and overwrite) the vendor/codeigniter4/framework/public/index.php to /var/www/myweb/index.php ? I don't remember why I have that index.php in root, but I guess it was for sef urls or to remove index.php from url Thanks a lot
Enrique
https://beza.com.ar
public/index.php is the entry point.
It is specially separated from the application for security reasons. You need to change the virtual host configuration so document_root points to the public folder. (06-09-2022, 08:02 AM)iRedds Wrote: public/index.php is the entry point. But composer update does not change that. I have the same problem. Working fine before the update. Followed the update instructions, now my install is broken. I had to re-initialize a new project and then copy all my custom files over again, which is a huge PiTA. I wouldn't want to have to do that every time I upgrade CodeIgniter. Didn't have to change anything with my document root which was already set up correctly. (06-09-2022, 07:49 AM)kabeza Wrote: Now I cannot run the App because I'm getting this in the Apache logs Yes, because you moved /public/index.php to /index.php. You are not using /public/index.php, so updating it does not make sense. And it is recommended to use /public/index.php, not /index.php for security reasons. If you can change the document root, change it to the public/ folder. |
Welcome Guest, Not a member yet? Register Sign In |