I am new in CI hmvc and i am using CI generate_crud() method like below :
public function index()
{
$crud = $this->generate_crud('users');
$crud->columns('groups', 'username', 'email', 'first_name', 'last_name', 'company',…
On my codeigniter Version 3.1.4 / hmvc login if the form validation password input is empty for some reason the callback function shows first rather than the required message?
https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc
As…
i have a problem with my login in application . in my login authentication a create a library name is "auth" and i also was call "auth" in autoload but when i call a function in "auth" the error say
Message: Undefined property: Auth::$session
here…
i have some problem with hmvc in codeigniter because im newbie with hmvc.
i have a template bootstrap with ci , so the problem like i not able to show my view
my view name index.php in directory "theme" :
…
I am using modular extensions - HMCV in codeigniter. Inside my modules folder I have a module named template, customer, common. Each has the following folders controllers, models, views and language and inside the language I have english folder.
My…
I am using HMVC extension wiredesignz with codeigniter and I am unable to create Admin module. I am getting the following error
The requested URL /hmvc/admin was not found on this server.
however, if I rename admin directory to foo, bar or anything…
I have 2 controller controllers placed in my administration module which are:
modules/administration/controllers/Administration.php
modules/administration/controllers/Customers.php
The problem i have is when i want to display customer details in…
This is MY_Controller :
class MY_Controller extends MX_Controller {
function __construct()
{
parent::__construct();
$this->load->module('Template');
}
}
This is Home Controller :
class Home extends MY_Controller {
…
I have some modules in CodeIngiter that work fine if I call them like this:
- example.com/ControllerInModuleA/blaublau...
- example.com/ControllerInModuleB/blaublau...
What I need to do now…
When using Project Kenai works only on netbeans 7.*.
So we can use nb-ci-plugin by nbphpcouncil for the framework support in netbeans.
Even when using nb-ci-plugin there is no auto-completion for the codeigniter HMVC.
All the stack overflow question…
I am busy with a CI project using CI3 & HMVC. I work during office hours at work, then take it home for weekend & after work development. Using the two machines has been working for a long time. Monday morning, as normal I tried continuing from my…
I have a little issue with some code that works on development but not on production. It is weird, because all the other code works (or seems to).
The entire error is the following:
Fatal error: Using $this when not in object context in
…
I'm currently migrating a website to Linux Ubuntu. I have a HMVC website created using Codeigniter on windows. I have installed Xampp on Linux but i cant open my website through localhost to test whether it works or not. Maybe someone can help me…