I am Following this link converting-html-template-to-codeigniter, but Some how it cant able to run header file. here Is my code
load->view($this->config->item('bootsshop_template_dir_public') .…
Question:
Out of curiosity, I'm wondering if Codeigniter provides a way to have specific data always loaded into a view.
For example: I have a config file that contains site information that would be beneficial to have access to inside of a view for…
I'm currently working on a project with CodeIgniter and its HMVC. http://jenssegers.be/projects/CodeIgniter-HMVC-Modules)
I have a general question regarding the best way to load a model in a different module.
So far, I thought directly loading a…
this is killing me
what do i have?
CI version: 2.1.4
Modular Extensions - HMVC by wiredesignz
a basic codeigniter(hmvc) project that works fine with the setting it has in local server(mamp) with php 5.5.3
my problem
after i move the project to…
I am using HMVC with Codeigniter-3.x using MX for both backend and frontend. whole project are in a subdomain.
Frontend is working well in both localhost and online domain.
In localhost backend is also working well.
But backend not working on…
I am learning to use codeigniter for my project. After finishing the tutorial from kode-blog.com Then i learn wiredesignz HMVC. Right now I ended up having a structure like this
modules
-admin
--cotroller
---admin controller
---product…
I recently noticed this weird bug in CI(3.1.3 but might as well be present in other versions). The navtive validation rules like required, valid_email etc don't run while I use the callback. I've already built a My_Form_validation library to make…
I have many modules on my website (CI 2.2.1) and I wanted to create a larger part of a new functionality. That's why I decided to separate newly created modules and put them into one folder inside modules folder, named i.e. new_modules. I was able…
i want to removing index.php in hmvc code igniter , when i type the url without index.php it's running well but when i process to other controller the url is automatically showing index.php after my codeigniter folder.
example i type…
I set a session variable in my login controller after successful login. When I check for the variable in my dashboard controller no session data is found.
When I check the session in the login controller, session data exists. It does not exist when…
Everything is working as expected on my local server, but when I try to run it on my live server I get an error:
Fatal error: Call to a member function call_admin_login() on null in codeigniter HMVC
What am I possibly doing wrong?
Below is my…
I am working on a CI + HMVC installation. When I use the HMVC function call:
Modules::run("header");
It prints nothing to screen. However if I run:
echo Modules::run("header");
or:
$x = Modules::run("header");
Then it works.
This is the code that…
I'am moving a website to another server and after trying to load it I got an error:
Fatal error: Class 'CI' not found in /path_to_domain/public_html/system/cms/libraries/MX/Lang.php on line 50
The file looks like this:
class MX_Lang extends…
Here is the folder structure in modules folder
users->controllers->Users.php
users->models->Test_model.php
welcome->controllers->Welcome.php
Test_model.php
class Test_model extends CI_Model {
function __construct() {
…
I'm trying to install Auth Tank in CodeIgniter in HMVC but without success.
I did the following:
I created the tables in the database;
I put the folders (config, controllers, helpers, language, libraries, models, views) within modules/auth/;
In…