Quantcast
Viewing all articles
Browse latest Browse all 7

How to change the Views path in CodeIgniter

Step 1:

open Loader.php file located in ./system/core/loader.php for editing.

Step 2:

Search for $this->_ci_view_paths (since CodeIgniter 2.0 go to line 130) and replace this

$this->_ci_view_paths = array(APPPATH.'views/' => TRUE);

with this code

$this->_ci_view_paths = array('your/views/path' => TRUE);

Note: you can use FCPATH to go to your CodeIgniter root folder like this

$this->_ci_view_paths = array(FCPATH.'your_views_folder' => TRUE);

Image may be NSFW.
Clik here to view.

That’s it Image may be NSFW.
Clik here to view.
:)


Viewing all articles
Browse latest Browse all 7

Trending Articles