Categories
-
Recent Posts
Archives
Monthly Archives: June 2008
Namespace route and form_for method
When you have a namespace in your routes.rb like this: map.namespace :admin do |admin| admin.resources :users end And you like to have a form like this: <% form_for(@user) do |f| %> <%= f.error_messages %> Change the form_for in this and … Continue reading
Gem 1.2.0 released
Yesterday gem 1.2.0 was released. This is a release we’ve all been waiting for! This version doesn’t have the ‘bulkupdate’ and doesn’t consume that much memory as before. So update your gem for the last time with the -B parameter. … Continue reading
Capistrano and Passenger
To use Capistrano on a Passenger enabled host, you need to add the following lines to your config/deploy.rb file. namespace :deploy do desc "Restarting mod_rails with restart.txt" task :restart, :roles => :app, :except => { :no_release => true } do … Continue reading
Plesk, Passenger (mod_rails), Ruby Enterprise Edition & Ruby on Rails
Currently I have a Plesk 8.4 installation running on a CentOS 5 VPS. First I had my Ruby on Rails websites running on multiple mongrel servers (cluster) but it took too much RAM of my VPS and it was very … Continue reading
Posted in Plesk, Ruby on Rails, VPS
Tagged Apache, CentOS 5, Passenger, Plesk, Ruby on Rails, RubyEnterpriseEdition, VPS
9 Comments