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: | 546 |
Nodes: | 16 (2 / 14) |
Uptime: | 20:09:15 |
Calls: | 10,390 |
Calls today: | 1 |
Files: | 14,061 |
Messages: | 6,416,974 |