CodeIgniter Forums
Migration problem with 4.1.1 to 4.1.2 and > - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30)
+--- Thread: Migration problem with 4.1.1 to 4.1.2 and > (/showthread.php?tid=79734)



Migration problem with 4.1.1 to 4.1.2 and > - Vrylx - 07-24-2021

Hi,
I have a migration problem with v 4.1.1 to 4.1.2 and >.
All routing to subfolder of "Controllers" directory fall in 404 (controller or method not found)...
Any idea ?
Error appear since 4.1.2...


RE: Migration problem with 4.1.1 to 4.1.2 and > - ikesela - 07-24-2021

give some sample? did you use group?


RE: Migration problem with 4.1.1 to 4.1.2 and > - Vrylx - 07-24-2021

No, I don't use group. But the code is the same with 4.1.1 and 4.1.2. But since I replace "system" folder (and many others new files for 4.1.2 and >), only controllers directly in "Controllers" folder works....
FYI my project works under IIS


RE: Migration problem with 4.1.1 to 4.1.2 and > - InsiteFX - 07-25-2021

PHP Code:
// change
$routes->setAutoRoute(true);

// to false
$routes->setAutoRoute(false); 

try that and see if it makes a difference.


RE: Migration problem with 4.1.1 to 4.1.2 and > - Vrylx - 07-26-2021

No, it's the same.
404 again ... :'(