FAQ

Version 99 (Alex Shulgin, 2011-09-19 10:14)

1 73 Felix Schäfer
h1. Frequently Asked Questions
2 73 Felix Schäfer
3 73 Felix Schäfer
{{TOC}}
4 73 Felix Schäfer
5 73 Felix Schäfer
h2. Installing and Running Redmine
6 73 Felix Schäfer
7 73 Felix Schäfer
h3. Does Redmine work with Rails 2.x.x?
8 73 Felix Schäfer
9 73 Felix Schäfer
See compatibility in the [[RedmineInstall|Installation]] guide.
10 73 Felix Schäfer
11 73 Felix Schäfer
h3. When I start the application, I get this error "in 'gem_original_require': no such file to load -- initializer (LoadError)"
12 73 Felix Schäfer
13 73 Felix Schäfer
Make sure "Ruby on Rails":http://rubyonrails.org/ is properly installed on your machine.
14 73 Felix Schäfer
15 73 Felix Schäfer
h3. When I start the application, I get this error message: "cannot connect to mysql: No such file or directory - /tmp/mysql.sock"
16 73 Felix Schäfer
17 73 Felix Schäfer
You have to specify the socket location in @config/database.yml@.
18 73 Felix Schäfer
See http://dev.rubyonrails.org/ticket/200.
19 73 Felix Schäfer
20 73 Felix Schäfer
h3. The application freeze after a long time of inactivity.
21 73 Felix Schäfer
22 73 Felix Schäfer
There's a bug in ruby/mysql adapter < 2.7.3 that leads to lose the database connection. Please update your adapter.
23 73 Felix Schäfer
You can see thread at: http://rubyforge.org/forum/message.php?msg_id=25951.
24 73 Felix Schäfer
25 73 Felix Schäfer
h3. Why does Redmine use http links when I want it to use https links in Apache? (SSL)
26 73 Felix Schäfer
27 73 Felix Schäfer
This happens when Apache sending requests to a backend server, like mongrel or thin.  Apache isn't telling the backend server to use https so the links are generated incorrectly.  Add the following configuration to Apache:
28 73 Felix Schäfer
29 75 Mischa The Evil
    RequestHeader set X_FORWARDED_PROTO 'https'
30 73 Felix Schäfer
31 84 Holger Just
h3. I get this error message with a Passenger deployment: ActionController::RoutingError (No route matches "/index.html" with {:method=>:get})
32 84 Holger Just
33 84 Holger Just
Your Apache erroneously interprets the @public/.htaccess@ file which is needed for (f)cgi deployments. You can stop that by eiter completely removing the file (as it is not needed by Passenger) or by inserting the following configuration directive to Apache.
34 84 Holger Just
35 84 Holger Just
    AllowOverride None
36 84 Holger Just
37 73 Felix Schäfer
h2. Issue tracking
38 73 Felix Schäfer
39 73 Felix Schäfer
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.
40 73 Felix Schäfer
41 73 Felix Schäfer
Once you've created a new issue status, you need to include it in the workflow.
42 73 Felix Schäfer
43 73 Felix Schäfer
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'.
44 85 JC Wren
Go to "Administration -> Workflow", select 'Bug' and 'Developer', uncheck the 'Only display statuses that are used by this tracker' box then click edit.
45 86 JC Wren
You now see all the transitions allowed for developers on bugs. In the 'New' row, click the checkbox in the 'In progress' column and save.
46 73 Felix Schäfer
47 73 Felix Schäfer
See [[RedmineIssueTrackingSetup|Workflow setup]].
48 73 Felix Schäfer
49 73 Felix Schäfer
h3. I've created a new tracker but I can't use it, it doesn't show up in the trackers drop-down list.
50 73 Felix Schäfer
51 73 Felix Schäfer
Once you've created a new tracker, you need to "activate" it for a specific project.
52 73 Felix Schäfer
53 73 Felix Schäfer
Say you have created a tracker named 'Task' and you want the new tracker to be used for your project;
54 73 Felix Schäfer
* go to "(Project-)Settings -> tab 'Information' -> fieldset 'Trackers'",
55 73 Felix Schäfer
* check the checkbox of the new tracker 'Task',
56 73 Felix Schäfer
* and then click save.
57 73 Felix Schäfer
58 73 Felix Schäfer
You can now start using the new tracker 'Task' in the project for which you've just activated the new tracker.
59 73 Felix Schäfer
60 73 Felix Schäfer
h3. How does "Related issues" work?
61 73 Felix Schäfer
62 82 Mischa The Evil
See [[RedmineIssues#Related-issues]] for an in-depth explanation.
63 73 Felix Schäfer
64 73 Felix Schäfer
h2. Time tracking
65 73 Felix Schäfer
66 73 Felix Schäfer
h3. The time calculations in "Spent time Reports" are wrong.
67 73 Felix Schäfer
68 81 Mischa The Evil
You are probably entering spent-time values in Redmine using "decimal time format":http://en.wikipedia.org/wiki/Decimal_time. See [[RedmineTimeTracking#Decimal-time-format]] for an in-depth explanation.
69 73 Felix Schäfer
70 73 Felix Schäfer
h2. Repositories
71 73 Felix Schäfer
72 73 Felix Schäfer
h3. Commits don't show up in the activity until I click on 'Repository'
73 73 Felix Schäfer
74 73 Felix Schäfer
By default, Redmine fetches the new commits from the repository only when you browse it.
75 73 Felix Schäfer
76 73 Felix Schäfer
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):
77 73 Felix Schäfer
78 87 Patrick Meidl
  rake -f /path/to/redmine/Rakefile RAILS_ENV=production redmine:fetch_changesets
79 73 Felix Schäfer
80 73 Felix Schäfer
For SVN repositories you can also add the following command to a post-commit hook:
81 73 Felix Schäfer
82 73 Felix Schäfer
  ruby /path_to_redmine/redmine/script/runner "Repository.fetch_changesets" -e production
83 73 Felix Schäfer
84 73 Felix Schäfer
*Note, the second method of post-commit hook will slow down commits and could possibly cause commits to fail if Redmine is not functioning. 
85 73 Felix Schäfer
86 80 Daniel Widerin
You can bypass these disadvantages by sending the ruby-command to background.
87 79 Daniel Widerin
88 79 Daniel Widerin
  ruby /path_to_redmine/redmine/script/runner "Repository.fetch_changesets" -e production > /dev/null 2>&1 &
89 79 Daniel Widerin
90 73 Felix Schäfer
h3. I can't browse my svn repository through redmine
91 73 Felix Schäfer
92 73 Felix Schäfer
Check the following:
93 73 Felix Schäfer
* 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.
94 73 Felix Schäfer
* Make sure that the web app is able to run the svn binary. (hint: check your path and ensure the svn binary is on it)
95 73 Felix Schäfer
* When using a file:/// link, make sure the system user under which Redmine runs has access to the location specified by file:/// on your local file system. (Hint: By default, when using passenger, Redmine runs as the user which owns your config/environment.rb.)
96 73 Felix Schäfer
97 73 Felix Schäfer
If you're accessing the repository over HTTPS:
98 73 Felix Schäfer
99 73 Felix Schäfer
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.
100 73 Felix Schäfer
101 97 Terence Mill
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+.
102 73 Felix Schäfer
Example:
103 73 Felix Schäfer
104 73 Felix Schäfer
<pre>
105 73 Felix Schäfer
$ svn --config-dir ./svn/.subversion co https://svn.mydomain.com/project/trunk delete-me
106 73 Felix Schäfer
107 73 Felix Schäfer
Error validating server certificate for 'https://svn.mydomain.com:443':
108 73 Felix Schäfer
- The certificate is not issued by a trusted authority. Use the
109 73 Felix Schäfer
fingerprint to validate the certificate manually!
110 73 Felix Schäfer
- The certificate hostname does not match.
111 73 Felix Schäfer
- The certificate has expired.
112 73 Felix Schäfer
Certificate information:
113 73 Felix Schäfer
- Hostname: svn.mydomain.com
114 73 Felix Schäfer
- Valid: from Apr 8 12:00:00 2006 GMT until Sep 24 12:00:00 2010 GMT
115 73 Felix Schäfer
- Issuer: mydomain.com, vrsource.org, Geneva, UN
116 73 Felix Schäfer
- Fingerprint: 01:27:d9:6a:b8:db:63:f3:24:e3:41:c8:15:0a:f8:93:f6:7c:0f:11
117 73 Felix Schäfer
(R)eject, accept (t)emporarily or accept (p)ermanently? p
118 73 Felix Schäfer
</pre>
119 73 Felix Schäfer
120 73 Felix Schäfer
or modify subversion_adapter.rb in <redmine root>/lib/redmine/scm/adapters/subversion_adapter.rb
121 73 Felix Schäfer
in credentials_string definition section chagne svn globaly options
122 73 Felix Schäfer
from
123 73 Felix Schäfer
<pre>
124 73 Felix Schäfer
--no-auth-cache --non-interactive
125 73 Felix Schäfer
</pre>
126 73 Felix Schäfer
to
127 73 Felix Schäfer
<pre>
128 73 Felix Schäfer
--trust-server-cert --no-auth-cache --non-interactive
129 73 Felix Schäfer
</pre>
130 73 Felix Schäfer
For additional information on the problem, check your log file for problems encountered during the svn operation. (e.g. /log/production.log )
131 73 Felix Schäfer
132 73 Felix Schäfer
or list the certificate in @/etc/subversion/servers@. See http://www.geekforgod.com/2006/12/01/making-svn-trust-a-new-root-ca-certificate/ for details.
133 73 Felix Schäfer
134 73 Felix Schäfer
h3. Repository statistics doesn't show up
135 73 Felix Schäfer
136 73 Felix Schäfer
* If you are using ruby 1.8.6:
137 73 Felix Schäfer
There's a bug in rexml 3.1.7 provided with ruby 1.8.6. You can fix it yourself:
138 73 Felix Schäfer
In @ruby/1.8/rexml/document.rb@ (line 186), change: @if transitive@ to @if trans@ then restart the app.
139 73 Felix Schäfer
See http://www.germane-software.com/projects/rexml/ticket/115 for details.
140 73 Felix Schäfer
* If you are using Internet Explorer:
141 73 Felix Schäfer
You'll need an SVG plugin like the one "Adobe provides":http://www.adobe.com/svg/viewer/install/beta.html to be able to display SVG-images properly within Internet Explorer.
142 73 Felix Schäfer
143 73 Felix Schäfer
h2. Wikis
144 73 Felix Schäfer
145 73 Felix Schäfer
h3. How do I create sub-pages (parent/child relationships) in the wiki
146 73 Felix Schäfer
147 83 Mischa The Evil
See [[RedmineWikis#Creating-sub-pages-parentchild-relationships]] for an in-depth explanation.
148 73 Felix Schäfer
149 78 Felix Schäfer
h3. Global Wiki
150 78 Felix Schäfer
151 97 Terence Mill
There is currently no global wiki, and the current permission system won't allow one. A workaround is to create a project, if needed only with a wiki, and to use it for all global needs.
152 78 Felix Schäfer
153 73 Felix Schäfer
h2. Performance
154 73 Felix Schäfer
155 73 Felix Schäfer
h3. When I create a new issue, Redmine freezes for one minute.
156 73 Felix Schäfer
157 73 Felix Schäfer
Make sure your SMTP server is properly configured or deactivate *email notifications* (remove @config/email.yml@) and restart Redmine.
158 73 Felix Schäfer
159 73 Felix Schäfer
h2. Miscellaneous
160 73 Felix Schäfer
161 73 Felix Schäfer
h3. Emails use the incorrect url
162 73 Felix Schäfer
163 73 Felix Schäfer
The urls used in email is configured with the *Host Name* setting in Administration > Settings > General tab.  It defaults to localhost:3000 (Ruby on Rails default).
164 73 Felix Schäfer
165 73 Felix Schäfer
h3. Email notifications are not working
166 73 Felix Schäfer
167 73 Felix Schäfer
First, try to send a test email: go to _"Administration -> Settings -> Email notifications"_ and click _"Send a test email"_.
168 73 Felix Schäfer
It will send an email to the email address of your Redmine account:
169 88 Justin M
* If you get an error, check your configuration in @config/configuration.yml@. See [[EmailConfiguration]].
170 73 Felix Schäfer
* If you don't receive any email, check your SMTP server log to see if the email was properly relayed.
171 73 Felix Schäfer
172 73 Felix Schäfer
For other problems (eg. some people receive notifications but others don't), you can enable email debug output in your Redmine log file by commenting out this line in @config/environments/production.rb@:
173 73 Felix Schäfer
174 73 Felix Schäfer
<pre>
175 73 Felix Schäfer
config.action_mailer.logger = nil
176 73 Felix Schäfer
</pre>
177 73 Felix Schäfer
178 77 Felix Schäfer
After restarting the application, every email sent will be dumped to your log file (@log/production.log@).
179 73 Felix Schäfer
This way you can check the @To:@ field of emails to see if all the expected email addresses are present.
180 73 Felix Schäfer
181 73 Felix Schäfer
h3. All times are off by 1 hour after the daylight savings switched
182 73 Felix Schäfer
183 73 Felix Schäfer
Rails < 2.1 built-in time zone implementation doesn't handle DST. You have to install "TZInfo":http://tzinfo.rubyforge.org/.
184 73 Felix Schäfer
To do so, run the following from your Redmine directory:
185 73 Felix Schäfer
186 73 Felix Schäfer
  ruby script/plugin install tzinfo_timezone
187 73 Felix Schäfer
188 73 Felix Schäfer
Do not install this plugin if you're using Redmine 0.8.
189 73 Felix Schäfer
190 73 Felix Schäfer
h3. What is the difference between Documents and Files?
191 73 Felix Schäfer
192 73 Felix Schäfer
The "Documents" section is for publishing specifications, notices, or other documents that do not belong in a SCM.
193 73 Felix Schäfer
The "Files" section is for publishing versions of the tracked project, as a bundle (release).
194 73 Felix Schäfer
195 73 Felix Schäfer
h3. I get a 404-error when I try to view or diff a PHP-file
196 73 Felix Schäfer
197 73 Felix Schäfer
It's because Apache is seeing the extension @.php@ and tries to run the PHP-interpreter on the file. Since the requested URL isn't a real file, it returns a 404 error.
198 73 Felix Schäfer
The solution is to turn off mod_php for your Redmine virtual host. That will cause Apache to call Redmine to serve up the file.
199 73 Felix Schäfer
To do so, add the following lines to your virtual host configuration:
200 73 Felix Schäfer
201 73 Felix Schäfer
<pre><code>RemoveHandler .php
202 73 Felix Schäfer
php_flag engine off    # Try without this line first
203 73 Felix Schäfer
</code></pre>
204 73 Felix Schäfer
205 73 Felix Schäfer
h3. Why are Textile inline styles not working?
206 73 Felix Schäfer
207 73 Felix Schäfer
Textile inline styles were disabled starting from Redmine version#2 for security reasons (see #2416).
208 73 Felix Schäfer
209 73 Felix Schäfer
If you really need this feature and don't fear XSS attacks, then you'll need to manually change the Redmine source (source:/trunk/lib/redmine/wiki_formatting/textile/formatter.rb@2192#L33).