Questions tagged [codeigniter-hmvc]

CodeIgniter library for creating modular extensions.

CodeIgniter library for creating modular extensions.

125 questions
0
votes
1 answer

Codeigniter HMVC listing with where condition

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',…
Nilesh Kumar
  • 370
  • 2
  • 3
  • 16
0
votes
2 answers

Codeigniter & HMVC Callback shows first

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…
user4419336
0
votes
2 answers

Error Login In My HMVC Code Igniter

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…
Gusti Erlangga
  • 69
  • 1
  • 12
0
votes
1 answer

view to view in HMVC Code Igniter

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" : …
Gusti Erlangga
  • 69
  • 1
  • 12
0
votes
1 answer

Unable to load the requested language file: Codeigniter HMVC

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…
user7060819
0
votes
0 answers

Unable to create Admin module in Codeigniter with HMVC extension

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…
Anil Sharma
  • 128
  • 4
  • 19
0
votes
0 answers

how to run module to secondary controller codeigniter hmvc

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…
chris keenan
  • 23
  • 1
  • 9
0
votes
1 answer

I am facing a error in codeigniter hmvc 3.1.3

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 { …
0
votes
0 answers

Group modules under same URL - CodeIgniter HMVC

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…
JaviSR
  • 13
  • 3
0
votes
2 answers

Codeignither Validation error

Hello team I have a small issue and I would like to know the cause please see code below: The preceding code gives me an validation error in…
bsquad
  • 66
  • 8
0
votes
2 answers

How to integrate Codeigniter 3 framework with netbeans 8 or any version completly

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…
0
votes
2 answers

Codeigniter 3 HMVC: unable to load session library

Here is the folder structure in modules library users->controllers->Users.php users->config->autoload.php welcome->controllers->Welcome.php autoload.php $autoload = array( 'helper' => array('url', 'form'), 'libraries' =>…
shamon shamsudeen
  • 5,466
  • 17
  • 64
  • 129
0
votes
2 answers

CodeIgniter project very slow

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…
themban
  • 17
  • 1
  • 10
0
votes
1 answer

Codeigniter Model Fatal error: Using $this when not in object context

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 …
AlbinoDrought
  • 986
  • 17
  • 24
0
votes
1 answer

HMVC Ubuntu folder structure and setup

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…
1 2 3
8 9