Join our Discussion Boards - Here

Upgrade for Redmine 1.0.0 to Redmine 1.2.1 using SVN

Check you have the correct versions of Ruby and Rails, you need the following;

ruby 1.8.6, 1.8.7 Rails 2.3.11 Rack 1.1.1

so;

ruby -v rails -v

I read that ‘rake about’ would tell you what version of rake is installed but I could not get it to work. ‘rake -T’ didn’t even show . . . → Read More: Upgrade for Redmine 1.0.0 to Redmine 1.2.1 using SVN

How to Check What Version of Ruby on Rails You Have

Simple stuff but sometimes I forget.

Check what version of Ruby you have;

ruby -v

Check what version of Ruby on Rails you have;

rails -v

How to Install Redmine 0.9.3 on Centos Update, Including Apache and SVN Configuration

This is on a fresh version of centos and includes;

Ruby on Rail setup Redmine Installation Apache configuration SVN autocreate SVN authentication using redmine

Thanks to the redmine team for an awesome tool.

Install Ruby on Rails

Install ruby 1.8.7

wget ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7.tar.gz tar xvfz ruby-1.8.7.tar.gz cd ruby-1.8.7 ./configure

I got the error

configure: error: . . . → Read More: How to Install Redmine 0.9.3 on Centos Update, Including Apache and SVN Configuration

How to Remove an Old version of Ruby

This post just saved me a hours of work, thanks

http://www.d-man.org/news/2009/01/06/91/

It outlines how to remove an old version of ruby and install the version you need.

How to Install Tracks 1.7 on Centos 5.2

 

Install Ruby on Rails – Use http://www.how-to-linux.com/2008/12/how-to-install-ruby-on-rails-on-centos-52/

Create a database for Tracks

mysql -u root -p

create database tracks;

exit

Download Tracks from http://bsag.bingodisk.com/public/files/tracks-current.zip

Unzip the Tracks archive

unzip tracks-current.zip

Put tracks into /opt

mv tracks-1.7 /opt

Edit /opt/tracks-1.7/config/database.yml

vi /opt/tracks-1.7/config/database.yml

Add you mysql server details

production:

  adapter: mysql

  database: tracks

  hosts: localhost

. . . → Read More: How to Install Tracks 1.7 on Centos 5.2

Ruby 1.9.1 Released

Read more here – http://developers.slashdot.org/article.pl?sid=09%2F01%2F31%2F230216

Install Redmine on Centos 5.2

See instructions on how to install Ruby on Rails – http://www.how-to-linux.com/2008/12/how-to-install-ruby-on-rails-on-centos-52/

go to /opt

cd /opt

download the source http://rubyforge.org/frs/?group_id=1850

wget http://rubyforge.org/frs/download.php/39478/redmine-0.7.3.zip

unzip redmine-0.7.3.zip

Create a Database for Redmine

(install mysql if nececssary – see http://www.how-to-linux.com/2008/12/install-mysql-server-on-centos-52/)

mysql -u root -p create database redmine character set utf8; exit

Configure the Redmine database connection settings

Copy . . . → Read More: Install Redmine on Centos 5.2

How To Install Ruby on Rails on Centos 5.2

Add rubyworks repo in /etc/yum.repos.d/. 

vi /etc/yum.repos.d/rubyworks.repo

And insert this text;

 # Link file for RubyWorks yum repository # Place this file in /etc/yum.repos.d

[rubyworks] name=RubyWorks baseurl=http://rubyworks.rubyforge.org/redhat/$releasever/RPMS/$basearch enabled=1 gpgcheck=1 gpgkey=http://rubyworks.rubyforge.org/RubyWorks.GPG.key priority=1

Install Ruby on Rails 2.2.2 on Centos 5.2

yum install ruby ruby-devel ruby-libs ruby-irb ruby-rdoc ruby-mysql

Download and install ruby gems

wget http://rubyforge.org/frs/download.php/45905/rubygems-1.3.1.tgz

tar xvf . . . → Read More: How To Install Ruby on Rails on Centos 5.2