• : Function ereg() is deprecated in /home/kenfray7/public_html/includes/file.inc on line 649.
  • : Function ereg() is deprecated in /home/kenfray7/public_html/includes/file.inc on line 649.
  • : Function ereg() is deprecated in /home/kenfray7/public_html/includes/file.inc on line 649.
  • : Function ereg() is deprecated in /home/kenfray7/public_html/includes/file.inc on line 649.
  • : Function ereg() is deprecated in /home/kenfray7/public_html/includes/file.inc on line 649.
  • : Function ereg() is deprecated in /home/kenfray7/public_html/includes/file.inc on line 649.
  • : Function ereg() is deprecated in /home/kenfray7/public_html/includes/file.inc on line 649.
  • : Function ereg() is deprecated in /home/kenfray7/public_html/includes/file.inc on line 649.
  • : Function ereg() is deprecated in /home/kenfray7/public_html/includes/file.inc on line 649.
  • : Function ereg() is deprecated in /home/kenfray7/public_html/includes/file.inc on line 649.
  • : Function ereg() is deprecated in /home/kenfray7/public_html/includes/file.inc on line 649.
  • : Function ereg() is deprecated in /home/kenfray7/public_html/includes/file.inc on line 649.
  • : Function ereg() is deprecated in /home/kenfray7/public_html/includes/file.inc on line 649.
  • : Function ereg() is deprecated in /home/kenfray7/public_html/includes/file.inc on line 649.

Problem in installing REDMINE in ubuntu

I have a problem in installing Redmine in my ubuntu system. I am following link...
http://www.drinkingbird.net/blog/articles/2008/02/27/setting-up-a-redmin...
I am installing redmine in steps wise...

1. aptitude install apache2 ruby rubygems subversion ruby-pkg-tools \
ruby1.8-dev build-essential postgresql libdbd-pg-perl libapache2-svn \
libapache-dbi-perl libapache2-mod-perl2 libdigest-sha1-perl

2. gem install rails mongrel mongrel_cluster postgres-pr --include-dependencies

When i type above command i got this error..

sudo gem install rails mongrel mongrel_cluster postgres-pr --include-dependencies
/usr/bin/gem:10: undefined method `manage_gems' for Gem:Module (NoMethodError)

Can anyone helpme in solving this problem..............

Thank you

04 Sep09:47

Another installation problem of redmine.....

By ravindra.devagiri

Hi
I installed redmine in following way.....................

1. Install Packages
aptitude install apache2 ruby rubygems subversion ruby-pkg-tools \
ruby1.8-dev build-essential postgresql libdbd-pg-perl libapache2-svn \
libapache-dbi-perl libapache2-mod-perl2 libdigest-sha1-perl

2. Install Gems
gem install rails mongrel mongrel_cluster postgres-pr --include-dependencies

3. export PATH=/var/lib/gems/1.8/bin to the end of /etc/profile

SET UP DATABASE FOR REDMINE TO USE...........................................
4. su postgres
5. createuser redmine --no-superuser --no-createdb --no-createrole --login --pwprompt --encrypted
6. createdb --owner=redmine --encoding=utf-8 redmine
7. EXIT
8.Redmine itself
mkdir /var/www/rails_apps
cd /var/www/rails_apps
svn co http://redmine.rubyforge.org/svn/branches/0.6-stable redmine-0.6
9. Configure database access

Create the file config/database.yml within the redmine directory with the following contents:

production:
adapter: postgresql
database: redmine
host: localhost
username: redmine
password: redmine

10.
rake db:migrate RAILS_ENV="production"
rake redmine:load_default_data RAILS_ENV="production"

!!!!!!!!! but while executing above coomands it is giving following errors..................................
(in /var/www/rails_apps/redmine-0.6)
rake aborted!
uninitialized constant ActionController::Session::PStore
//////////////////////////////////////////////////////////////////////////////////////////////

Help me in above problem....................

Ravindrareddy
IIITB

04 Sep23:34

ravindra.devagiri: Redmine

By edavis10

ravindra.devagiri:

Redmine 0.6 is outdated and shouldn't be used. You should checkout the trunk version with the following command

svn co http://redmine.rubyforge.org/svn/trunk redmine-trunk

I also think you might have a newer version of Ruby on Rails than Redmine supports. sudo gem install rails -v 2.2.2 will get you the 2.2.2 version of Rails that is used by the Redmine trunk. Hope this helps.

Eric Davis

05 Sep04:44

IP Address and domain problem

By ravindra.devagiri

Thank you Eric

I had some confusion with which fields i need to enter in the following commands
///////////////////////////////////////////////////////////////////////
Configure mailing from Redmine

Setting up a mail account for redmine is your own business, then change this section of config/environment.rb:

# SMTP server configuration
config.action_mailer.smtp_settings = {
:address => "127.0.0.1",
:port => 25,
:domain => "somenet.foo",
:authentication => :login,
:user_name => "redmine",
:password => "redmine",
}

to this:

# SMTP server configuration
config.action_mailer.smtp_settings = {
:address => "mail.yourdomain.com",
:port => 25,
:domain => "yourdomain.com",
:authentication => :login,
:user_name => "mail_user",
:password => "mail_password"
}
/////////////////////////////////////////////////////////////////////
Which fields i need to enter in the ipaddress, port, domain and username, password fields..............................
We don't have SMTP.................................
Help me in this..............

Thank you...
Ravindrareddy
IIITB

05 Sep18:13

Setting up the SMTP server

By edavis10

Setting up the SMTP server is optional for development and testing, so I'd recommend not configuring email.yml for now. Redmine's email tests will work fine without it.

Eric Davis
www.LittleStreamSoftware.com

06 Sep03:40

running redmine from localhost

By ravindra.devagiri

Thank you Davis
When i run the following command
mongrel_rails start --environment=production
It is working properly but in browser with url http://localhost:3000 it is showing 500 internal server error...............................

I think it should show redmine site. but it is not showing....

Thank you

Ravindrareddy
IIITB

08 Sep23:42

A few things: 1. Don't use

By edavis10

A few things:

1. Don't use the production environment. It's more difficult to test and is intended for production sites. Change the databases configured in your database.yml so the "development" and "test" sections are correct. Then start mongrel using the "ruby script/server" command. This will load Redmine in development mode and will display the log file right on the command line. Control-C will shutdown the server.

2. If you ever get an error, check log/development.log or log/production.log. These will have the specific details of the error and will give you a clue as to how to solve them.

3. If you are new to Ruby on Rails, you might find it useful to go through the tutorial for building a Ruby on Rails site. This will walk you through building a small site with Rails and will show you how the different parts connect. If you don't want to run the full tutorial, reading the guide should help you understand how Redmine works at the core.

http://guides.rubyonrails.org/getting_started.html

I think one problem that came up, is that you are following an old guide on how to setup a Redmine application in the real world for users. You don't need to be as detailed since you are only needed to set it up for testing and development. I'll see if I can write up a guide focused on development only.

Eric Davis
www.LittleStreamSoftware.com

06 Oct13:46

Are we progressing?

By sandy

Given that there has been no fresh posts since the last one by Eric providing details, is it alright to assume that all installation issues are sorted out?

Will it help to put together a development calendar to start tracking and work towards individual assignments? Here is a link to ofbiz - selenium testing project where they have put together a plan or sorts.
http://www.kenfuse.com/docs/project-schedule

11 Oct19:48

Sorry for the delay

By salonegupta

Hi Sandy

We are very sorry for the delay. We assure you there will be no delay in the work from now onwards.
We are facing some problem in the last stage of deployment of redmine. The setup will be completed within next 2-3 days.
After that we will quickly get the understanding of the code and start working on writing tests for redmine.
We will post our high level plan within 2-3 days from now.

12 Oct04:30

Not a problem

By sandy

Hey! no issues. I was just curious to find out if you all got everything to get started. I am very sure you all share the enthusiasm of making significant contribution to the Redmine project and I would be glad if I can assist in anyways.

Best!
Sandy

02 Nov14:53

regarding installation

By salonegupta

We have installed redmine on windows using Bitnami tool. It is running fine on browser but we don't know the commands to rerun our code after doing some changes.
We have also installed redmine on Ubuntu 9.04 using http://wiki.ousli.org/index.php/RedmineUbuntu link. It is getting installed properly but we dont know how to run it on the browser. we are able to migrate the database but when i am typing http://localhost:3000/ it is giving mysql error and on typing http://localhost:3000/redmine it is giving no routes found error.
Please help us regarding these issues.

02 Nov19:33

What is the MySQL Error

By edavis10

What is the MySQL Error exactly?

Eric

04 Nov08:45

Redmine Successfully installed

By anubhav nanda

Redmine successfully installed and is running at http://localhost:3000/
Now what we should do next ?

26 Apr22:25

useful links

By optikos

I successfully installed Redmine using Postgresql using the following references plus setting Postgres's security as shown below. I would like to have used "ident map=somename" and then defining somename in pg_ident.conf in to limit each POSIX account name (especially www-data for Apache) to correspond to only one unique PostgreSQL account, but I have not yet taken the time to tighten down that part.

http://ubuntuforums.org/showthread.php?t=674598

http://www.stuartellis.eu/articles/postgresql-setup/

# Database administrative login by UNIX sockets
local all postgres ident

# TYPE DATABASE USER CIDR-ADDRESS METHOD

# "local" is for Unix domain socket connections only
#local all all ident
local all all trust

# IPv4 local connections:
#host all all 127.0.0.1/32 md5
host all all 127.0.0.1/32 trust

# IPv6 local connections:
#host all all ::1/128 md5
host all all ::1/128 trust

# IP packets from machines other than this one
host all all 0.0.0.0/0 md5

18 Mar21:15

You can find lots of PMP

By Tyadlsc
You can find lots of PMP training in many project management magazines
23 Mar10:48

you have a fantastic blog

By florencjn
you have a fantastic blog right here! would you prefer to make some invite posts on my blog? Free streaming porn titleholder Electronic Cigarettes humic After penis extenders grumpy
29 Mar13:30

Bitumen valium comments

By catheriyp
Bitumen valium comments e-mail name comment [b][/b] - [i][/i] - [u][/u]- [quote][/quot biophore Downside Nonprescription valium xanax gang precession Viagra best Cenospecies piggyback
01 Apr16:19

It’s exhausting to search

By amandahc3
It’s exhausting to search out knowledgeable people on this subject, but you sound like you understand what you’re speaking about! Thanks wallpaper beach Aerofoil free landscape wallpaper seasonably animal print wallpaper thermocauteries
17 Apr08:00

Valium recessive marginate

By christimg
Valium recessive marginate Levitra compared to cialis exponentiate sauté Xanax effects Basketful eriodictyon
17 Apr17:19

Female sex toys lasagna

By lindsayjq
Female sex toys lasagna epidermophytoses SouthBeachSmoke Review socialism Appreciable Online Poker Crosier tamely
29 Apr07:30

zonealarm coupons toothy

By christimg
zonealarm coupons toothy Olympic Ambien without prescription hydrolyzate Ampoules worldsoccershop.com coupon 2010 incontrovertibly tamp
29 Apr15:38

How to intravenously inject

By lindsayjq
How to intravenously inject ambien cr prissily blastocyst Caverta Disgruntle kumiss Forex riskily quadrennial
29 Apr16:57

travel insurance online

By lindsayjq
travel insurance online surgeon overexplicit Xanax Bullishness sew grade macrognathia
29 Apr21:22

where to buy smoke deter

By amandahc3
where to buy smoke deter pennyworth goody beachbody coupons chromobacterium Exhortation Big Tits Tube treading lawbook
19 May13:19

WONDERFUL Post.thanks for

By florencjn
WONDERFUL Post.thanks for share..more wait .. … 411 Pain AG Office gusset Play top online casino games poker solo whitesmoke shear
19 May14:41

This really answered my

By catheriyp
This really answered my problem, thank you! Buy valium offshore Chanter usb drives thwart memory sticks ipecacuanha
19 May17:41

very good post, i definitely

By lindsayjq
very good post, i definitely love this web site, carry on it Suboxone xanax Boluses Viagra generic cost barotitis Buy tramadol on proceed
20 May07:24

It is best to take part in a

By christimg
It is best to take part in a contest for among the best blogs on the web. I will recommend this website! 411 pain unforeseen network traffic monitor machiavellian Cialis Bent
20 May10:46

An fascinating discussion is

By florencjn
An fascinating discussion is price comment. I feel that it's best to write more on this subject, it might not be a taboo topic however generally persons are not enough to speak on such topics. To the next. Cheers keyboard tray hailstone Buy Valium nether Super long zip ties Antiperspirant
Copyright 2009 KenElements. Powered by Open Source Software from projects like Apache, Drupal, Linux, MySQL, PHP, JQuery