Tagged Questions

6
votes
3answers
155 views

Making Changes a Live Site (Codeigniter, but not specific to it)

I'm using Codeigniter if this makes it easier. I'm wondering if a website is live with populated database and users accessing, and I have a new idea to implement into the website, how should I do it? ...
3
votes
2answers
80 views

Combining multiple controllers on one page, without loading controllers from a controller

I'm trying to create a page that displays certain widgets/includes dependent on the users permissions. I'm quite new to CodeIgniter and MVC. Example. I have a calendar. This has a controller, model ...
3
votes
1answer
362 views

Trouble with HMVC modular extensions for CodeIgniter

I've been developing locally on MacOS X Snow Leopard using PHP 5.3, CodeIgniter 2.0 and HMVC Modular Extensions. Everything has been working great. Suddenly, for no reason I can pinpoint, I am ...
3
votes
2answers
425 views

Codeigniter HMVC effect on performance

OK, so HMVC in Codeigniter is the way to go for scalable web applications based off many stackoverflow discussions such as HMVC patterns and MVC vs HMVC. But, how will using an HMVC approach affect ...
3
votes
1answer
307 views

Should I make this a Different Module in HMVC Codeigniter?

I'm just getting started using HMVC in Codeigniter. The main module is a news/blog site called 'blog'. I want users to be able to log in to comment, so I have authentication files (tank auth ...
3
votes
2answers
756 views

Codeigniter HMVC and datamapper compatibility

I am new to Codeigniter and I am thinking about the use of this framework in my new project. I am going to need these two extensions. Before digging into too deep, I wonder if anyone already has ...
2
votes
1answer
375 views

CodeIgniter and HMVC questions

First of all, sorry for any convenience caused by this post because this is the first time I post a question here and I need more time to get used to with this. Q1. I want to create 2 "master ...
2
votes
1answer
210 views

Modular Extensions CI anchors to assets

So, I'm making a CMS at the mo, and using the modular extensions HMVC CI 2.0. It's lovely. I'm wondering the correct method for keeping my assets (js, css, img) related to a module within the module ...
2
votes
1answer
422 views

HMVC and Views in folders (Codeigniter)

I am using Tank Auth library in Codeigniter with HMVC and the entire tank auth mvc files are in its own module called 'auth'. tank auth loads a view ...
2
votes
3answers
1k views

HMVC and dynamic widgets

Background I use the word widget as a partial view that have its own controller (so its own actions) and it is placed in almost all pages. I implement the rendering of this via HMVC, that is just ...
1
vote
2answers
96 views

Routing in Codeigniter with HMVC [closed]

Possible Duplicate: Codeigniter HVMC modular seperation extension URL rewrite / routing I am new to codeigniter HMVC. I currently have four modules which are as follows: ...
1
vote
1answer
42 views

Using a single get function for all models

So I have this bit of code in an extended model (MY_Model) in CodeIgniter: function get($options = array(), $selects = array(), $joins = array(), $table, $object = TRUE) { if(!empty($options)) ...
1
vote
3answers
802 views

Setting up Codeigniter HMVC with tank auth

I am having trouble getting a working Codeigniter version 2.0.3 with hmvc and tank auth(set up as a module) setup properly. I have installed CI properlly and then install HMVC with these directions ...
1
vote
1answer
145 views

Codeigntier occasional database connection error

I'm using Codeigniter, and I have have not had any issues connecting to the database in the past. I was doing some restructuring of the database (adding columns, inserting data, etc), and now I get ...
1
vote
1answer
114 views

Different Subdomains for Different Cities

I am developing a website using Codeigniter that will have different subdomains for different US cities, like Boston.mysite.com, NYC.mysite.com, Philadelphia.mysite.com just like Groupon, Yelp etc. ...
1
vote
1answer
289 views

Codeigniter HMVC and calling a view from jQuery

New to HMVC in Codeigniter. Dynamic form allows new "segments" to be created when a user clicks a link. Currently the segment html & php is in module/view/segment_view.php. The view ...
1
vote
1answer
693 views

Path of Config file in HMVC Codeigniter (HMVC + Tank Auth)

I'm experiencing a problem with the paths of a config file for a module called 'auth' (which contains the tank_auth authentication library). Every function in the 'auth' module loads the ...
1
vote
1answer
266 views

codeigniter HMVC extension model organization

I am developing a portal and using codeigniter with HMVC extension. I have an "admin" module and a "yellowpages" module. Both these modules have a common model eg: "Category_model", and I use it to ...
1
vote
1answer
433 views

Basic Codeigniter HMVC Installation

I have a existing working installation of CI 2.02 that autoloads libraries and helpers. When I perform the HMVC installation by dropping the core and 3rd party files into their respective locations in ...
1
vote
1answer
395 views

How to deal with view files using HMVC?

Just a quick question about making my modules truly portable. I’ve noticed that many modules come with their own view files (including their own css, html, and javascript), which can be handy if you ...
1
vote
1answer
435 views

codeigniter hmvc module helper

i made module comments, it requiers my custom helper to work, how can i store helper in module folder instead application/helpers?
1
vote
1answer
390 views

Loading views in codeigniter HMVC not working

I am trying to load a view from a second controller's view within my first controller but it gives the error that the view cannot be found, even though it is there. Example Module -> music Views -> ...
0
votes
1answer
27 views

Accessing controller public controllor properties from a hmvc module

Am working with wiredesignz modular extensions for codeigniter, and i was wondering if its possible to access a regular codeigniter controller's public property from a module's controller for example, ...
0
votes
1answer
75 views

HMVC with latest codeigniter 2.1.1 View not loading in windows machine shows blank screen

I'm using Codeigniter 2.1.0 and latest HMVC library from here On my development ubuntu machine code works withut any problem, but when I try to run the same code in windows machine views are not ...
0
votes
0answers
62 views

Integrate Smarty and Module Extend in CodeIgniter

I am new with smarty framework. I want to make a project that have integration smarty and module extend(MX) with CodeIgniter. I can integrate but not response to what i want. my result is work only ...
0
votes
1answer
29 views

Passing arguments to a HMVC Module method using an array

While using the HMVC Component in Codeignitors, we can render a particular actions like this echo modules::run('site/news/view', 1); Here the 1 is the parameter send to the view method. Now I have ...
0
votes
0answers
55 views

CodeIgniter HMVC: extend a library or create a global controller?

I've started using HMVC in Codeigniter with Modular Extension and i want to create a set of methods avalaible in the whole application. For example i've this three methods: a method to retrieve te ...
0
votes
1answer
85 views

CodeIgniter: some doubts about HMVC and Views

I've just discovered HMVC Modular Extension for CodeIgniter https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc/wiki/Home and it seems perfect for my needs but I have some question. ...
0
votes
1answer
43 views

Best technique for module implementation in Codeignitor

I am a little familiar with CI, and now I am trying to build a web portal using it. I am trying to make it flexible enough to accept widgets/modules. Just like how components are to joomla. For ...
0
votes
2answers
68 views

Using tank_auth with multi type user and HMVC

Using Tank Auth for first time along with HMVC. In my application there are 2 type of user one is say student and another is institute. I created two modules for each user type and separated the tank ...
0
votes
0answers
200 views

codeigniter 2.1.0 and Modular Extension HMVC database error randomly

I installed CI 2.1.0 (latest), and installed Modulare extension HMVC (https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc/wiki/Home). I don't know what is the problem is, for same ...
0
votes
1answer
106 views

CodeIgniter 2.0 with Modular Extensions (HMVC) not showing anything in Linux

*edited to be more clearly I'm deploying CI 2.0.3 with Modular Extensions (HMVC) in two environments, one is Windows -for development- and the other is Linux -for production-. Both environment has ...
0
votes
1answer
156 views

How to call Module function in Codeigniter HMVC? Tank auth

I have installed tank auth to save me time creating a authentication script. As I am using HMVC, tank auth has it's own module (modules/auth). How can I protect my other modules (/admin, /members ...
0
votes
1answer
64 views

Switching to Codeigniter HMVC - Undefined functions?

I have setup a fresh install of codeigniter 2x and modular extensions (https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc/wiki/Home) It is my first time using HMVC, the decision to ...
0
votes
1answer
70 views

CodeIgniter third_party

This was posted 8 months ago: Codeigniter 2.0 third_party folder. This was posted almost a year ago: http://philsturgeon.co.uk/blog/2010/04/codeigniter-packages-modules. I'm wondering if anything ...
0
votes
1answer
140 views

CodeIgniter, HMVC, and where to put common libraries?

If I'm planning to use HMVC, should I put libraries that I think each application may use in /system/libraries?
0
votes
0answers
68 views

echo modules::run() in html jumps before doctype

I'm using HMVC and calling modules in a view. In some cases however, the modules appear before the Doctype! It seems to be caused by calling more than one module into a page but i have instances when ...
0
votes
1answer
190 views

Codeigniter HMVC modules structure

I'm working on a content management system in Codeigniter with the Datamapper and HMVC extension. My question is, how to handle submodules. Example: I want to create an User module which exists ...
0
votes
1answer
139 views

routing Codeigniter with HMVC

I'm using Codeigniter in combination with Datamapper and HMVC. see folder structure: -application -controllers -admin -admin.php -modules -users -models ...
0
votes
3answers
122 views

CodeIgniter - modular?

I'm building several sites that need similar "modules." For example, the sites may have the exact same login system, forum, etc. Is there a way I could build these modules once and just "drop" them ...
0
votes
1answer
70 views

controller & model name ambiguity in code igniter 2.0.2

Following is the scenario: I've integrated HMVC in CodeIgniter 2.0.2. Created a module with following structure. /application/modules/login /application/modules/login/controllers ...
0
votes
1answer
127 views

Code Igniter Modular Extensions Default_controller

I am currently designing an application that needs to be modular - for this i am using the Modular Extensions - HMVC for code igniter. I am trying to change the default_controller as defined in the ...
0
votes
1answer
198 views

CodeIgniter Modular Extension Broken on CentOS

I have been using CodeIgniter (1.7.2+) for years now and have it running in 15+ live production environments (LOVE IT). Recently my team and I speced out a very complicated system that will require ...
0
votes
1answer
115 views

What are modules in CodeIgniter?

I would like to know about modules in CodeIgniter, and where can I learn how to develop modules?
0
votes
0answers
278 views

working version of hmvc codeigniter w tank auth [closed]

i have previously posted abbout a problem im having using a module based tank auth in hmvc codeigniter so instead of wasting time asking a question on something more then a few lines of code. id like ...
0
votes
0answers
96 views

My Entity manager cannot remove a record (CodeIgniter + doctrine + hmvc)

What I want? a simple CRUD capability with CodeIgniter, HMVC & Doctrine What I've tried? I made a module inside modules directory Here is the directory structure: application: modules lab ...
0
votes
1answer
388 views

CodeIgniter HMVC setup

As per a previous question I'm setting up the HMVC extension for codeigniter. https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc/wiki/Home Unfortunately I can't find much in the ...
0
votes
0answers
115 views

CodeIgniter: How to Making SSL Work with HMVC

I'm using Modular Extensions - HMVC with CodeIgniter and I'm trying to set up an application to use ssl but I'm getting the following error Fatal error: Call to undefined method ...
0
votes
5answers
787 views

Using Ion Auth as a seperate module in the HMVC structure

I am interested in using ion auth for a project of mine which is running on the HMVC pattern. The application is written in Codeigniter. The problem I face is once the ion auth is placed in the ...
0
votes
1answer
388 views

Problems with Codeigniter HMVC subfolders

I have encountered an issue using subfolders with Codeigniter + HMVC. /system/application/modules/welcome/controllers/staff/welcome.php To access this I have to access it via ...

1 2