I am trying to solve a problem of 404 in my COdeIgniter3 application.
The problem occurs because of problem in core/Codeigniter.php:
echo 'BEFORE call_user_func_array';
var_dump($CI, $method, $params);
call_user_func_array(array(&$CI, $method), $params);
// Mark a benchmark end point
$BM->mark('controller_execution_time_( '.$class.' / '.$method.' )_end');
echo 'AFTER call_user_func_array ';
BEFORE is displayed, AFTER is not displayed.
var_dump displays object Main, method index, empty array params.
I have a controller
class Main extends MY_Controller {
public function index() {
In folder /home/robert/Projekty/praca/application/controllers I have
file Main.php
In file /home/robert/Projekty/praca/application/config/routes.php I have:
$route['default_controller'] = 'main';
I am trying to solve a problem of 404 in my COdeIgniter3 application.
The problem occurs because of problem in core/Codeigniter.php:
echo 'BEFORE call_user_func_array';
var_dump($CI, $method, $params);
call_user_func_array(array(&$CI, $method), $params);
// Mark a benchmark end point
$BM->mark('controller_execution_time_( '.$class.' / '.$method.' )_end');
echo 'AFTER call_user_func_array ';
BEFORE is displayed, AFTER is not displayed.
Address http://localhost/~robert/praca/employee/list_offers works fine.
Address http://localhost/~robert/praca/main/index doesn't work (404).
Address http://localhost/~robert/praca/main/index doesn't work (404).
I am trying to solve a problem of 404 in my COdeIgniter3 application.
The problem occurs because of problem in core/Codeigniter.php:
echo 'BEFORE call_user_func_array';
var_dump($CI, $method, $params);
call_user_func_array(array(&$CI, $method), $params);
// Mark a benchmark end point
$BM->mark('controller_execution_time_( '.$class.' / '.$method.' )_end'); echo 'AFTER call_user_func_array ';
BEFORE is displayed, AFTER is not displayed.
var_dump displays object Main, method index, empty array params.
I have a controller
class Main extends MY_Controller {
public function index() {
...
In folder /home/robert/Projekty/praca/application/controllers I have
file Main.php
In file /home/robert/Projekty/praca/application/config/routes.php I have:
$route['default_controller'] = 'main';
$route['404_override'] = '';
Address http://localhost/~robert/praca/employee/list_offers works fine.
Address http://localhost/~robert/praca/main/index doesn't work (404).
Sysop: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 349 |
Nodes: | 16 (0 / 16) |
Uptime: | 151:37:26 |
Calls: | 7,615 |
Calls today: | 3 |
Files: | 12,792 |
Messages: | 5,685,428 |
Posted today: | 2 |