![]() |
[split] Callback problem with HMVC - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: External Resources (https://forum.codeigniter.com/forumdisplay.php?fid=7) +--- Forum: Addins (https://forum.codeigniter.com/forumdisplay.php?fid=13) +--- Thread: [split] Callback problem with HMVC (/showthread.php?tid=67518) |
[split] Callback problem with HMVC - Juan Lamberto - 03-04-2017 Callback doesn't work with codeigniter 3.1.3 HMVC, using the previous version's My_Form_validation method!! What is the solution for this?! Is there an additional line of code that may be changed to make this work correctly ? RE: [split] Callback problem with HMVC - ignitedcms - 03-04-2017 http://www.catb.org/esr/faqs/smart-questions.html RE: [split] Callback problem with HMVC - InsiteFX - 03-04-2017 Because you need to extend the Form_validation library. PHP Code: <?php RE: [split] Callback problem with HMVC - Juan Lamberto - 03-04-2017 (03-04-2017, 05:15 AM)InsiteFX Wrote: Because you need to extend the Form_validation library.Does this work with codeIgniter 3 with HMVC? I use this one for codeIgniter 3 and it's working with codeIgniter 3.1.3 except the collback that returns an error Code: <?php if (!defined('BASEPATH')) exit('No direct script access allowed'); RE: [split] Callback problem with HMVC - InsiteFX - 03-04-2017 Yes it doe's. RE: [split] Callback problem with HMVC - Juan Lamberto - 03-04-2017 DID YOU TRY IT IN CODEIGNITER 3.1.3? RE: [split] Callback problem with HMVC - Juan Lamberto - 03-05-2017 the solution of InsiteFX works well!! thanks! |