CodeIgniter Forums
CodeIgniter v4.1.2 released - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: General (https://forum.codeigniter.com/forumdisplay.php?fid=1)
+--- Forum: News & Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=2)
+--- Thread: CodeIgniter v4.1.2 released (/showthread.php?tid=79249)

Pages: 1 2 3


RE: CodeIgniter v4.1.2 released - hap168 - 05-19-2021

index.php
require realpath(FCPATH . '../app/Config/Paths.php') ?: FCPATH . '../app/Config/Paths.php';
Suggest to change to:
xxx=FCPATH . '../app/Config/Paths.php';
require realpath(xxx) ?: xxx;
Convenient to modify the 'Paths.php' path.


RE: CodeIgniter v4.1.2 released - paulbalandan - 05-20-2021

You can send in a PR for that.


RE: CodeIgniter v4.1.2 released - paliz - 05-20-2021

Thanks for what yoi have done