0
votes

I have issues with radiant cms version 0.8.2.In Application,when i click on submit on form application got an error uninitialized controller which is in radiant/app/controller.

error :

NameError (uninitialized constant ResourceController): vendor/extensions/smart/app/controllers/quote_requests_controller.rb:1 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:inrun'

/usr/lib/ruby/1.8/webrick/server.rb:173:in start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:instart'

/usr/lib/ruby/1.8/webrick/server.rb:162:in start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:instart'

/usr/lib/ruby/1.8/webrick/server.rb:92:in each' /usr/lib/ruby/1.8/webrick/server.rb:92:instart'

/usr/lib/ruby/1.8/webrick/server.rb:23:in start' /usr/lib/ruby/1.8/webrick/server.rb:82:instart'

ResourceController is in radiant/app/controllers/admin/resource_controller.rb

and in the first line of quote_requests_controller.rb, "class QuoteRequestsController < ResourceController::Base" is there.

rails 2.3.14 ruby 1.8.7 rubygems-update (1.4.2) radiant 0.8.2

i was done googling for this issue please help me to figure out error.

Thanking You, Nirav

1

1 Answers

0
votes

You say ResourceController is in radiant/app/controllers/admin/resource_controller.rb A class placed there should actually be Admin::ResourceController, not just ResourceController.

The class definition line would then read: "class QuoteRequestsController < Admin::ResourceController". However! That class already exists; it's what most admin controllers inherit from.

Either come up with a new name for your controller, or move it out of the admin/ folder.