Project

General

Profile

FAQ » History » Version 26

Jean-Philippe Lang, 2008-05-16 17:30
bug in rexml

1 1 Jean-Philippe Lang
h1. Frequently Asked Questions
2
3 2 Jean-Philippe Lang
{{TOC}}
4 1 Jean-Philippe Lang
5
h2. Installing and Running Redmine
6
7 18 Jean-Philippe Lang
h3. When I start the application, I get this error "in 'gem_original_require': no such file to load -- initializer (LoadError)"
8 10 Jean-Philippe Lang
9
Make sure "Ruby on Rails":http://rubyonrails.org/ is properly installed on your machine.
10
11 22 Jean-Philippe Lang
h3. When I start the application, I get this error message: "cannot connect to mysql: No such file or directory - /tmp/mysql.sock"
12
13
You have to specify the socket location in @config/database.yml@.
14
See http://dev.rubyonrails.org/ticket/200.
15
16 1 Jean-Philippe Lang
h3. The application seems to work fine but some pages (eg. login form) have no content.
17
18 23 Jean-Philippe Lang
You're running Rails 1.1.x but Redmine requires 1.2.6.
19 9 Jean-Philippe Lang
Upgrade Rails (if you're using gem package system, run the command @gem update@ as root/administrator).
20 3 Thomas Lecavelier
21 9 Jean-Philippe Lang
h3. The application freeze after a long time of inactivity.
22 3 Thomas Lecavelier
23 9 Jean-Philippe Lang
There's a bug in ruby/mysql adapter < 2.7.3 that leads to loose the database connection. Please update your adapter.
24 7 Jean-Philippe Lang
You can see thread at: http://rubyforge.org/forum/message.php?msg_id=25951.
25 1 Jean-Philippe Lang
26 18 Jean-Philippe Lang
h3. I upgraded Rails to 2.0, but Redmine doesn't work anymore!
27 17 Jean-Philippe Lang
28 18 Jean-Philippe Lang
Redmine 0.6.3 is Rails 2.0 compatible, but prior versions are not.
29
30
The best solution is to upgrade Redmine to the latest version. But if you really want to use Redmine 0.6.0 on a box running Rails 2.0, please freeze your Rails version for Redmine (it won't affect your other Rails applications) by typing this command from your Redmine directory:
31 15 Thomas Lecavelier
32
  rake rails:freeze:edge TAG=rel_1-2-6
33
34
Don't forget to restart your server.
35
36 7 Jean-Philippe Lang
h2. Issue tracking
37
38
h3. I've created a new issue status but I can't use it, it doesn't show up in the status drop-down list.
39
40 8 Jean-Philippe Lang
Once you've created a new issue status, you need to include it in the workflow.
41 7 Jean-Philippe Lang
42 13 Jean-Philippe Lang
Say you have created a status named 'In progress' and you want the developers to be able to change bugs from 'New' to 'In progress'.
43 7 Jean-Philippe Lang
Go to "Admin -> Issue tracking -> Workflow", select 'Bug' and 'Developer' then click edit.
44 1 Jean-Philippe Lang
You now see all the transitions allowed for developers on bugs. Check the 'New' -> 'In progress' checkbox and save.
45 13 Jean-Philippe Lang
46
See [[RedmineIssueTrackingSetup|Workflow setup]].
47 11 Thomas Lecavelier
48 20 Eric Davis
h3. How does "Related issues" work?
49
50
Using Issue #100 as the one you set the relationship and Issue #101 as the "related to"
51
52
* Related - Just adds a link to the other issue
53 24 Jean-Philippe Lang
* Duplicates - Links issues so that closing one, will close the other (e.g. closing #100 will close #101)
54
* Blocks - Indicates that an issue need to be completed before working on the next.
55 20 Eric Davis
* Precedes - Defines an "order", where issue #100 needs to be completed x days before y can be started on.
56
57 12 Jean-Philippe Lang
h2. Repositories
58
59
h3. Commits don't show up in the activity until I click on 'Repository'
60
61
By default, Redmine fetches the new commits from the repository only when you browse it.
62
63
If you want the commits to be retrieved periodically by Redmine in the background for all your repositories, uncheck 'Autofetch commits' setting and add a cron that runs (with appropriate environment):
64
65
  ruby script/runner "Repository.fetch_changesets" -e production
66
67 19 Thomas Lecavelier
h3. I can't browse my svn repository through redmine
68
69 25 Jean-Philippe Lang
Check the following:
70
* Make sure you're using a svn client and server >= 1.3. Redmine parse the -xml output from subversion, which is a svn 1.3 feature.
71
* Make sure that the web app is able to run the svn binary
72
73
If you're accessing the repository over HTTPS:
74
75
The initial import of a subversion repository over https requires that the ssl certificate fingerprint be manually validated and stored in a config-dir accessible by the user running the web server. It is recommended that a directory local to the redmine application root be provided, either as a default (./svn/.subversion) or as a provided parameter in the repository settings for subversion.
76
77
The work around for the certificate acceptance issue is to manually checkout anything from the svn server specifying the local config-dir and accepting the certificate +permanently+.
78
Example:
79
80
<pre>
81
$ svn --config-dir ./svn/.subversion co https://svn.mydomain.com/project/trunk delete-me
82
83
Error validating server certificate for 'https://svn.mydomain.com:443':
84
- The certificate is not issued by a trusted authority. Use the
85
fingerprint to validate the certificate manually!
86
- The certificate hostname does not match.
87
- The certificate has expired.
88
Certificate information:
89
- Hostname: svn.mydomain.com
90
- Valid: from Apr 8 12:00:00 2006 GMT until Sep 24 12:00:00 2010 GMT
91
- Issuer: mydomain.com, vrsource.org, Geneva, UN
92
- Fingerprint: 01:27:d9:6a:b8:db:63:f3:24:e3:41:c8:15:0a:f8:93:f6:7c:0f:11
93
(R)eject, accept (t)emporarily or accept (p)ermanently? p
94
</pre>
95 19 Thomas Lecavelier
96 26 Jean-Philippe Lang
h3. Repository statistics doesn't show up
97
98
There's a bug in rexml 3.1.7 provided with ruby 1.8.6.
99
In @ruby/1.8/rexml/document.rb@ (line 186), change: @if transitive@ to @if trans@ then restart the app.
100
101
See http://www.germane-software.com/projects/rexml/ticket/115 for details.
102
103 11 Thomas Lecavelier
h2. Performance
104
105 14 Jean-Philippe Lang
h3. When I create a new issue, Redmine freeze during one minute.
106 11 Thomas Lecavelier
107 14 Jean-Philippe Lang
You have to configure email notification, or desactivate it. Please turn off *email notification* feature if you don't use it. In config/environment.rb replace the line
108 11 Thomas Lecavelier
109
  config.action_mailer.perform_deliveries = true
110
111
to
112
113
  config.action_mailer.perform_deliveries = false
114
115
and restart redmine.
116 21 Jean-Philippe Lang
117
h2. Miscalenous
118
119
h3. All times are off by 1 hour after the daylight savings switched
120
121
Rails builtin time zone implementation doesn't handle DST. You have to install "TZInfo":http://tzinfo.rubyforge.org/.
122
To do so, run the following from your Redmine directory:
123
124
  ruby script/plugin install tzinfo_timezone