Michael Chan
Michael Chan
Hi, Please move to my demo repo and try it out there: https://github.com/waifung0207/ci_bootstrap_3_demo
Thanks for all your suggestions! As mentioned by @ibanez32, I will try to look into more modularization, whereas keep the routes as existing (I prefer URL "/" as Frontend and...
To use Grocery CRUD within your custom view (instead of /application/modules/admin/views/crud.php), you can simply skip the Admin_Controller's render_crud() function and pass the CRUD object like: ``` php $crud = $this->generate_crud('users');...
For Apache - you need to **1)** enable rewrite module, and **2)** make sure the virtual host config has "AllowOverride All" so the .htaccess file will be effective. You can...
Hi all, I also noticed there seems something wrong with form validation. After some checking it looks like the issue comes from MY_Form_validation (inside /application/core/ folder) class. Please try either...
Thanks for the issue. I will further check with this, and I would prefer rename it to something like "NotFound" instead.
I did considered JWT implementation before, but currently some of my projects mainly use API Key setup from [codeigniter-restserver](https://github.com/chriskacerguis/codeigniter-restserver), and so far it works fine. Therefore quite likely I will...
Thanks for the suggestion, I will keep it in mind and consider adding it after investigation.
This issue should be due to, the '$this" variable in views is not exactly a CI instance; instead, it belonged to the [Plates template engine](http://platesphp.com/). However, I have removed the...
Yes you can add multiple fields in Grocery CRUD, simply check its official doc about set_field_upload() function here: http://www.grocerycrud.com/documentation/options_functions/set_field_upload You can target multiple fields to different directories - just make...