CodeIgniter Forums
Best Way to Manage Applications - 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: Best Way to Manage Applications (/showthread.php?tid=41741)



Best Way to Manage Applications - El Forum - 05-16-2011

[eluser]ShoeLace1291[/eluser]
So I'm building a website that uses a large codeigniter application. I'm looking for a way to manage these applications. Some of these applications include a forum, wiki, photo gallery, and tutorials. I also want to have an admin application that will let you manage content from all of the other applications. I don't mind having to copy libraries from the main applications to the admin application, but I'm just stuck on how to manage the directories of these applications.

Here's the basic setup of directories for my current application:
Quote:/controllers
--/wiki
--/forums
--/gallery
--/tutorials
--/blog

What would be the best way to implement a separate administration application that would manage all of those from the same CI installation?


Best Way to Manage Applications - El Forum - 05-16-2011

[eluser]osci[/eluser]
take a look at this for a start
http://philsturgeon.co.uk/news/2009/07/Create-an-Admin-panel-with-CodeIgniter


Best Way to Manage Applications - El Forum - 05-16-2011

[eluser]ShoeLace1291[/eluser]
I've seen this article but there's one problem: in order to access the main part(not the admin) you would have to include for example /frontend. This would be fine for the admin panel, but I wouldn't want to have to add the extra directory to the url of the main site.