CPanel URL: http://69.16.221.76:2082/ CPanel Username: westcoas CPanel Password: aX1fqS6i9w Useful tutorials: http://www.akitaonrails.com/2007/12/12/rolling-with-rails-2-0-the-first-full-tutorial http://railscasts.com/episodes/67-restful-authentication create svn respository on Assembla checkout the repostitory svn checkout http://svn.assembla.com/svn/iTunicate/ create the rails project rails iTunicate download the restful_authentication plugin script/plugin install http://svn.techno-weenie.net/projects/plugins/restful_authentication generate the authentication stuff script/generate authenticated user sessions migrate the database rake db:migrate Edit routes.db and copy the include to the Application controller from the User and Sessions controllers Add the new files and commit the changes.. Install File_Column Plugin script/plugin install http://opensvn.csie.org/rails_file_column/plugins/file_column/trunk Install Rmagick gem sudo gem install rmagick Adding all new files to SVN svn add --force * #optional Active Scaffold git clone git://github.com/activescaffold/active_scaffold.git vendor/plugins/active_scaffold && rm -rf vendor/plugins/active_scaffold/.git add Pages Controller script/generate controller Pages Target(species) scaffolding script/generate scaffold Target speciesname:string points:float logo:string Add date_paid to Users table script/generate migration add_date_paid_to_user date_paid:date Admin controller script generate controller Admin::Users script generage controller Admin::Targets change routes.rb map.namespace :admin do |admin| admin.resources :users admin.resources :targets end