![]() |
Admin back-end - 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: Admin back-end (/showthread.php?tid=41914) |
Admin back-end - El Forum - 05-20-2011 [eluser]digity[/eluser] What's the best practice when developing your admin back-end to your web app in terms of security? Should you keep space, code and database separate and have a separate installation of CI for the admin back-end or simply use a separate database and MVC components for admin back-end stuff within the same installation of CI? Thanks in advance Admin back-end - El Forum - 05-20-2011 [eluser]KarlBallard[/eluser] http://philsturgeon.co.uk/blog/2009/07/Create-an-Admin-panel-with-CodeIgniter I'd recommend having a look at the third option. Admin back-end - El Forum - 05-20-2011 [eluser]InsiteFX[/eluser] Best way use an Auth system and make sure they are logged in as an Admin! InsiteFX Admin back-end - El Forum - 05-23-2011 [eluser]digity[/eluser] [quote author="KarlBallard" date="1305931876"]http://philsturgeon.co.uk/blog/2009/07/Create-an-Admin-panel-with-CodeIgniter I'd recommend having a look at the third option.[/quote] Thanks! I'll try that. |