Hello, I'm getting the following error: ErrorException [ Error ]: Class 'Controller_Panel' not found. Controller_Panel extends Fuel\Core\Controller_Hybrid and has only before() method. I've tried adding it to Autoloader::add_classes section in bootstrap.php file. Then I got error: Call to undefined method ReflectionClass::newInstance(). It was working in fuelphp 1.5.3 but I've upgraded fuelphp to 1.6.1
No, I haven't changed controller prefix. All other controllers extends Controller_Panel. Ex. My home controller; Controller_Home extends Controller_Panel {} I've tried adding it to Autoloader::add_classes section in bootstrap.php file. Then I got error: Call to undefined method ReflectionClass::newInstance().
I have a controller Controller_Instantgram which is located in app/classes/controller/instantgram.php and I'm using tr_TR as locale.
I've added
setlocale(LC_CTYPE, 'C');
to core/classes/fuel.php after
setlocale(LC_ALL, static::$locale) or logger(\Fuel::L_WARNING, 'The configured locale '.static::$locale.' is not installed on your system.', __METHOD__);