views:

40

answers:

1

Following this tutorial getting the following errors:

 NameError in Admin/dashboardsController#show

uninitialized constant Admin::DashboardsController



 NameError in Admin sessionController#new

uninitialized constant Admin::AdminHelper

not sure how to correct this!

+1  A: 

Make sure you have the follwing correct

  1. Admin::WhateverController is under RAILS_ROOT/app/controllers/admin/ directory.
  2. Admin::WhateverHelper is under RAILS_ROOT/app/helpers/admin/ directory
  3. Admin::WhateverController should be named as dashboards_controller.rb
  4. Admin::WhateverHelper should be named as dashboards_helper.rb
Aaron Qian
am gonna cool over it now, thanks for the heads up!
MrThomas