After upgrading to Ruby on Rails 1.1.6 (with a one-day 1.1.5 intermezzo), we’ve found a strange error in our Recykl.com application. Most of the application behaved normally, but email sending got broken with the following error: ActionView::ActionViewError (No rhtml, rxml, rjs or delegate template found for notification_email): /usr/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_view/base.rb:389:in `find_template_extension_for’ /usr/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_view/base.rb:323:in `pick_template_extension’ /vendor/plugins/globalize/lib/globalize/rails/action_view.rb:29:in `locate_globalize_path’ /vendor/plugins/globalize/lib/globalize/rails/action_view.rb:10:in `render_file’… Continue reading No rhtml, rxml, rjs or delegate template found
Month: September 2006
Full text search in Ruby on Rails 2 – MySQL
My previous post compared MySQL and ferret full text search engines. For our project, the ferret was the winner. Nevertheless, I will try to show the beauty and simplicity of using MySQL indexes. Create table and indices First of all it is necessary to create table and the corresponding index. Create table articles( id integer… Continue reading Full text search in Ruby on Rails 2 – MySQL