Questions tagged [hmvc]

The HMVC (Hierarchical-Model-View-Controller) pattern decomposes the client tier into a hierarchy of parent-child MVC (Model-View-Controller) layers.

428 questions
0
votes
1 answer

do events in a database using codeigniter

I am trying to send an activation link to given mail, if user clicks that activation link in his mail then his account is activated , this much I have done successfully.. I am doing this thing by setting a flag initially in the database to 0 if the…
avinashse
  • 1,310
  • 3
  • 25
  • 47
0
votes
1 answer

Creating Forms using HMVC codeigniter

I am trying to create a form using HMVC in codeigniter but it is showing Fatal error: Call to undefined function form_open() error I included Controller.php , Modules.php and MY_Router.php in application/library folder, again it is showing error..…
avinashse
  • 1,310
  • 3
  • 25
  • 47
0
votes
3 answers

How to load a module outside modules folder on HMVC with CodeIgniter?

Since I didn't find it anywhere else on the net, I hope I'm not asking a stupid question. So I have this structure on my app: My APP |_ Controllers |_ Modules |_ bar |_ foo |_ Views I can load the bar module on the foo's views…
Multitut
  • 1,937
  • 4
  • 36
  • 53
0
votes
2 answers

Using Smarty 3, Code Igniter 2, and HMVC together with smarty's inheritance?

I am using Code Igniter, The HMVC library, and Smarty with this library. Smarty is working fine by default, however if I try to use smarty's inheritance feature ( {extends file="master.tpl"}) then we run into an issue. The extends feature does not…
Hailwood
  • 79,753
  • 103
  • 257
  • 412
0
votes
1 answer

HMVC integration with hybridauth codeigniter extension

I am working on a project in which I am using codeigniter's HMVC & hybridauth extension. HMVC is working fine. But I have problems in running hybridauth extension. After the initial setup for hybridauth, when I run it the following two errors are…
SALEH
  • 1,356
  • 1
  • 11
  • 22
0
votes
1 answer

CI2 hmvc datamapper

Fatal error: Allowed memory size of 194217728 bytes exhausted (tried to allocate 261904 bytes) in C:\xampp\htdocs\test\ci\application\libraries\datamapper.php on line 5 What is the problem? It works right but when trying to run any datamapper…
0
votes
2 answers

Error message on callback function not show

I have the below code: load->model('users/user_model'); …
softboxkid
  • 838
  • 4
  • 13
  • 30
0
votes
3 answers

CodeIgniter 2.1 + Sparks + hmvc(latest) cannot load libraries/sparks

Anytime i attempt to load sparks i cant load the libraries, Its almost as if HMVC has broken the loading of sparks. An example:
gorelative
  • 9,024
  • 5
  • 46
  • 69
0
votes
1 answer

Form as HMVC widget

Is this the right way to create a form widget in FuelPHP? class Controller_Widget extends Controller { public function action_show() { if (Request::is_hmvc()) { // show form widget } else …
zgosalvez
  • 374
  • 1
  • 4
  • 21
-1
votes
1 answer

HMVC Integration in Codeigniter view paths

I am trying to intregrate HMVC to codeigniter. I have installed the MX files to thrid_party and uploaded the MY_Loader , MY_Loader and MY_Model to the application/core folder. it is working fine I have two issues 1) How to add the module routes…
B L Praveen
  • 1,310
  • 2
  • 18
  • 39
-1
votes
2 answers

How to use submodules in codeigniter HMVC?

I want to use submodules Codeigniter HMVC. I want to create the following structure in my project. modules │ ├── module1 │ │ ├── admin │ │ │ ├── controllers ├────── Home.php │ │ │ ├── models │ │ │ └── views │…
Shakti S
  • 241
  • 3
  • 11
-1
votes
1 answer

Need to change hmvc routes in CodeIgniter

I have CodeIgniter HMVC application and I want to change route as per requirement. Now I have website/product/detail/url, and I want to change it with website/url. Once I set URL from admin side it will redirect to my route. This is what I have…
nikunj
  • 1
  • 2
-1
votes
3 answers

Cannot call external Model while on server Codeigniter HMVC but works fine on local

An uncaught Exception was encountered Type: RuntimeException Message: Unable to locate the model you have specified: Impact_model Filename: /home/appliedi/public_html/multisector.Nutrition.com/system/core/Loader.php Line Number:…
bizen
  • 19
  • 1
  • 5
-1
votes
1 answer

Unable to access an error message corresponding to your field name pan_number.(panValidation)

I am using HMVC in Code Igniter 3.0.4 I have googled and tried to fix this problem by doing following things. 1> Auto loaded security 2> Using xss_clean 3> In application/language/english put the file : MY_form_validation_lang.php with error…
Jyotie Navale
  • 122
  • 1
  • 9
-1
votes
1 answer

Create a front end subfolder and backend subfolder in modules folder using HMVC inside codeigniter

I am new to codeigniter and using HMVC what I would like to do is separate front-end and backend modules in folders like this: modules (folder) frontend (folder) -some module name (folder) back-end (folder) -some module name (folder) Please…
adam
  • 19
  • 1
  • 9
1 2 3
28
29