Actions
Defect #11850
closedCan't create a user from ldap by on-the-fly on the redmine server using URI prefix
Status:
Closed
Priority:
Normal
Assignee:
Category:
Accounts / authentication
Target version:
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
Description
Hello, I've upgraded my redmine server from 1.3.X to 2.1.0, and encounted weird problem.
- Condition
- Redmine 2.1.0 with URI prefix (ex : http://my.server/redmine )
- On-the-fly creation enabled LDAP auth
- Problem
- Existing users can login with their ldap account.
- But when new users try to create a new one, redmine displays '404 not found' error.
- Redmine log
Processing by AccountController#login as HTML Parameters: {"back_url"=>"http://[MyServerDomain]/redmine/projects/[MyProject]/wiki", "login"=>"로그인 »", "utf8"=>"✓", "password"=>"[FILTERED]", "username"=>"[new_user_id]", "authenticity_token"=>"[Token]"} Current user: anonymous Missing template, responding with 404 Rendered common/error.html.erb within layouts/base (0.1ms) Completed 404 Not Found in 62ms (Views: 4.6ms | ActiveRecord: 0.0ms)
- Work around
- modify app/controllers/account_controller.rb
def onthefly_creation_failed(user, auth_source_options = { }) @user = user session[:auth_source_registration] = auth_source_options unless auth_source_options.empty? #render register_path <-- register_path's value : "/redmine/account/register" render "/account/register" # remove the prefix end
- modify app/controllers/account_controller.rb
- Server info
- OS : ubuntu 12.04 / apache 2.2.22
<Directory /var/www/redmine> RackBaseURI /redmine RackEnv production PassengerResolveSymlinksInDocumentRoot on </Directory>
- Mysql 5.5.24
- ruby 1.8.7
- rails 3.2.8
- OS : ubuntu 12.04 / apache 2.2.22
Updated by Etienne Massip about 12 years ago
- Status changed from New to Confirmed
Looks like a regression introduced with r9940.
Updated by Etienne Massip about 12 years ago
- Target version set to Candidate for next minor release
Updated by Jean-Philippe Lang about 12 years ago
- Target version changed from Candidate for next minor release to 2.1.1
Updated by Jean-Philippe Lang about 12 years ago
- Status changed from Confirmed to Resolved
- Resolution set to Fixed
Etienne Massip wrote:
Looks like a regression introduced with r9940.
Very true, I went too fast and replaced a render argument with a route. The test was still passing because #render accepts a string.
Updated by Jean-Philippe Lang about 12 years ago
- Status changed from Resolved to Closed
Merged into 2.1-stable.
Actions