After I was upggrading the CI 1.7 with Codeigniter 2 returns an Error and it shows as a routing error, its because of CodeIgniter 2 Routing library has little optimized. how to resolve this problem?
+2
A:
The scaffolding functionality of Codigniter has been depreciated since 1.6.
You need to go into application/config/routes.php and comment out:
//$route['scaffolding_trigger'] = "";
Also it looks as though you need to also set your default controller:
$route['default_controller'] = "yourcontroller";
DRL
2010-07-21 14:32:31
Now it seems does not working
eyoosuf
2010-07-21 17:31:34
$route['default_controller'] = "yourcontroller"; in this line 'yourcontroller' needs to be a controller class that you have made, otherwise put it back to the welcome controller
DRL
2010-07-21 18:00:32
A:
ultimately I figureout the way of making work for modules, an online jurnal was posted by phil sturgeon. and to enable it, he has written a class whitch is hosted at GitHub
eyoosuf
2010-07-21 18:02:54