-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tracker and Issue links in Scrumbler tab results to "Page not found" when redmine is deployed in a sub-URI #88
Comments
I am facing the same problem with version 1.5. I am running the scrumbler plugin on redmine 2.0.3. Also the drag and drop between using the backlogs ( between backlogs & sprint) doesn't seems to work, Is it a new issue recently introduced? Any suggested solution? |
A quick update. In my case since my redmine is running on http://mywebsite/redmine I could work around the problem by editing plugins\redmine_scrumbler\app\helpers\scrumbler_helper.rb file. Instead of use But that expects your redmine is available in /var/www/redmine and you have configured the apache relative to that. |
Thank you for the work-around. The links are now working. Were you also able to determine how to fix the images in the Backlog or Sprint page? Inspecting the element, it has the ff. code: <img src="/images/2uparrow.png" title="Move to top" alt="Move to top" class="scrumbler-move-issue-priority"> Where do I fix the codes so that: becomes |
Already saw the fix for this: File: \plugins\redmine_scrumbler\assets\javascripts\scrumbler-backlog.js Change the src: '/images/' to src: '/redmine/images/'. ...
function makeMovePriorityLink(config) {
var title = Scrumbler.Translations['label_sort_'+config.issue_action];
var a = new Element('img', {
src: '/images/'+config.image,
... Change to : ...
function makeMovePriorityLink(config) {
var title = Scrumbler.Translations['label_sort_'+config.issue_action];
var a = new Element('img', {
src: '/redmine/images/'+config.image,
... |
Redmine is currently setup in a sub-URI.
i.e., http://localhost/*_redmine_
In the Scrumbler tab, when I click on the tracker or issue number link, it goes to:
http://localhost/projects/4/issues?tracker_id=1
http://localhost/issues/20
respectively, which results to a 404 Page not found error.
The correct links are:
http://localhost/**redmine**/projects/4/issues?tracker_id=1
http://localhost/**redmine**/issues/20
The text was updated successfully, but these errors were encountered: