I have a project and have run into a problem. I use Codeigniter HMVC and therefore build modules. I appreciate your help. Thanks.
I have two module methods where one calls another. The other delivers a database result and loads it into a view that…
I know this is not a Question but a note:
I thought this would be use full for codeigniter hmvc users. Just found out that Wiredesignz HMVC has now released HMVC 3 version working…
unable to load model using hmvc in codigniter.
Here is my controller users.php (application/modules/users/controllers/users.php)
class Users extends MX_Controller {
public function index(){
$this->load->view('users_view');
}
…
I am creating responsive website using CodeIgniter with following roles
doctor
hospital
guest
Each role has admin dashboard.
The website has 3 versions.
desktop version
mobile versioin
tab version
I have decided to use the HMVC modular…
I am working on creating an application with having an HMVC structure in codeigniter and i also require API Centric application , so i used https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc for HMVC and Rest_Controller of Phil…
Im using HMVC extension in CodeIgniter. Where i have a module like
moduleName
config
config.php
routes.php
controller
test.php
models
etc..
from test.php i was trying to load custom config item…
I’ve to make a webapp with public and administrator parts and we are two different developer teams. I’ve searched the best way to do that and I found HMVC. I accomplished to install the codeigniter-modular-extensions-hmvc from wiredesignz and it’s…
I am trying to implement HMVC with CodeIgniter. I used this library from bigbucket
CI HMVC Library
It works fine for me when i created admin module. But now i am trying to define module inside a modules. So, my structure will be like this :-
Here…
I have the following problem with CodeIgniter 3.1.6 and WireDesignz HMVC.
When using modules::load on a windows dev machine (using Apache etc) its working, but when uploaded to my Debian machine it ain't working.
$class =…
I am trying this code and it seems to be working when data is not inputted but I need the data to come from the form. The page doesn't react and only adds a question mark in the url.
//On view folder
I have a linux server, as per CI 3 docs, all my class files are ucfirst i.e. Home.php having class Home etc.
What I need is that I should be able to call the url like this http://server/home . As of now it doesn't allow this type of URL because…
I am using CodeIgniter 3.* that is set up with hmvc capabilities. I have been testing my application to set up a clock that uses a timezone which uses the default timezoe chosen by the user. This clock uses moment js.
The odd thing is that when I…
Codeigniter HMVC I need Folder like this, can anyone please help me?
Superadmin admin and employee have dashboard modules like as follows as More models with same user roles like SuperAdmin, Admin, and Employee.
Modules
Parent Folder - Dashboard
…
Im developing a module with CodeIgniter WirezDesign HMVC to install modules with a .zip file. Do anyone know if I can create a module called modulesinside HMVC folder which is called modules too? Or will be some problems?
Thanks.
I am facing challenges on my upload code after moving to hmvc. If I set allowed_types=>'*' it works fine but if I set to jpg|jpeg or any type it echos message:
The filetype you are attempting to upload is not allowed
Below is my code:
public…