Welcome Guest, Not a member yet? Register   Sign In
Need urgent help - Common method for all controller
#10

[eluser]CroNiX[/eluser]
The only time what I said wouldn't be true, is if you change the value of $config['subclass_prefix'], which defaults to "MY_".

The reason why it worked on the original posters development box but not his production box is because his development box's OS, presumably a windows or mac box, doesn't care about case sensitive filenames but his production box, probably linux, does.

About line 237 (CI 2.1.4) of /system/CodeIgniter.php, you can see it trying to determine if you extended Controller and if so, it requires it, so there is no need to manually include it and will actually cause an additional error if you do:
Code:
if (file_exists(APPPATH.'core/'.$CFG->config['subclass_prefix'].'Controller.php'))
{
require APPPATH.'core/'.$CFG->config['subclass_prefix'].'Controller.php';
}


Messages In This Thread
Need urgent help - Common method for all controller - by El Forum - 05-04-2014, 11:19 AM
Need urgent help - Common method for all controller - by El Forum - 05-05-2014, 10:21 AM
Need urgent help - Common method for all controller - by El Forum - 05-05-2014, 06:18 PM
Need urgent help - Common method for all controller - by El Forum - 05-05-2014, 10:35 PM
Need urgent help - Common method for all controller - by El Forum - 05-06-2014, 04:20 AM
Need urgent help - Common method for all controller - by El Forum - 05-06-2014, 05:38 AM
Need urgent help - Common method for all controller - by El Forum - 05-06-2014, 06:59 AM
Need urgent help - Common method for all controller - by El Forum - 05-07-2014, 06:11 AM
Need urgent help - Common method for all controller - by El Forum - 05-07-2014, 07:59 AM
Need urgent help - Common method for all controller - by El Forum - 05-07-2014, 08:27 AM
Need urgent help - Common method for all controller - by El Forum - 05-07-2014, 06:04 PM
Need urgent help - Common method for all controller - by El Forum - 05-07-2014, 07:59 PM
Need urgent help - Common method for all controller - by El Forum - 05-08-2014, 04:05 AM



Theme © iAndrew 2016 - Forum software by © MyBB