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.

426 questions
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
  • 2,089
  • 7
  • 39
  • 63
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
  • 89,623
  • 107
  • 270
  • 423
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,552
  • 1
  • 13
  • 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
  • 877
  • 6
  • 13
  • 31
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:
NDBoost
  • 10,184
  • 6
  • 53
  • 73
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
  • 384
  • 1
  • 5
  • 22
-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,812
  • 4
  • 35
  • 60
-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
  • 351
  • 1
  • 3
  • 13
-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
  • 2
  • 10
-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
  • 2
  • 9
-1
votes
2 answers

How to develop Codeigniter HMVC with Smarty front-end

New to smarty i need to create Codeigniter HMVC with smarty front-end without module expansion, smarty working fine in Normal MVC Structure.But i am confronting trouble when i create utilizing "HMVC" its giving problem please guide.
-1
votes
1 answer

How to create seperate controller for admin under app/controller/admin

I am working with CakePHP. I want to create subfolder for admin in controller folder for all admin controllers. I have tried Prefix Routing method for this, but it dint work for folders. I have tried using this:…
Reetika
  • 123
  • 1
  • 11
1 2 3
28
29