CodeIgniter Forums
HMVC issue in v. 5.2.30 - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: HMVC issue in v. 5.2.30 (/showthread.php?tid=25142)



HMVC issue in v. 5.2.30 - El Forum - 12-02-2009

[eluser]asylmottaket[/eluser]
In earlier version (5.2.22) I could structure a admin module with subfolders like this:

/admin/
/admin/controllers/blog/blog.php
/admin/controllers/blog/some_controller.php

Than reach the main module controller with domain.com/admin/blog
And to reach the some_controller.php with domain.com/admin/blog/some_controller


I'm not sure if its a bug or just a functionality taken away.


HMVC issue in v. 5.2.30 - El Forum - 12-02-2009

[eluser]überfuzz[/eluser]
Are you talking about CI? You can have a sub folder, but only one level. You need to look into routing if you're going to have sub sub folders.


HMVC issue in v. 5.2.30 - El Forum - 12-02-2009

[eluser]asylmottaket[/eluser]
Ah, sorry, forgot to mention that I'm using Modular Extensions library for CI:

http://codeigniter.com/wiki/Modular_Extensions_-_HMVC/

I maybe need routing anyways.. but I'm not sure if its a bug in the new version or what.