Closed (fixed)
Project:
Brilliant Gallery
Version:
6.x-4.x-dev
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
21 Feb 2009 at 04:42 UTC
Updated:
30 Sep 2011 at 22:51 UTC
Jump to comment: Most recent file
Comments
Comment #1
danmc commentedThe page at http://vacilando.net/bg is blank. Is there somewhere else to find install and use documentation?
I too am stuck getting anything setup with this module.
Comment #2
vm commentedThe documentation page on the links you provide work on this end.
Comment #3
orasca commentedThe documentation page/link works for me. Possibly copy/paste to a browser. It can be viewed in FF, IE and GC (Google Chrome).
Comment #4
egon.ojamaa commented. - States 'saving...' and never changes.
this bug is because your drupal is inside folder and basepath is wrong in this modules file: bgchecklist.js
Makes it unusable to very many sites.
I used "Drupal.settings.basePath" to fix it.
Fixed file included. Dont forget to rename it to bgchecklist.js.
As of this permissions page bug.. the link is broken.
Just go to persmissions page manually and brilliant gallery checkboxes are there.
Comment #5
egon.ojamaa commentedfor some reasone attaching didnt work... so..
find: $.getJSON("/bgchecklist/loadall/"+nodeid,
replace: $.getJSON(Drupal.settings.basePath +"/bgchecklist/loadall/"+nodeid,
find: $.get("/bgchecklist/save/"+nodeid+"/"+$(this).attr("id")+"/0",
replace: $.get(Drupal.settings.basePath +"/bgchecklist/save/"+nodeid+"/"+$(this).attr("id")+"/0",
find: $.get("/bgchecklist/save/"+nodeid+"/"+$(this).attr("id")+"/1",
replace: $.get(Drupal.settings.basePath +"/bgchecklist/save/"+nodeid+"/"+$(this).attr("id")+"/1",
Comment #6
vm commentedThis should be a patch file so that it can be reviewed and rolled into the -dev
marking as needs work
Comment #7
drpchris commentedcreated a patch from the above code corrections
Comment #8
vm commentedComment #9
vacilando commentedThanks guys! Patch applied to 6.x-4.x-dev.
Comment #10
vacilando commentedNope; it actually has to be without the initial slash:
$.get(Drupal.settings.basePath +"bgchecklist/...because if Drupal is installed in ther root then Drupal.settings.basePath contains "/".
Committed to dev (6 as well as 7).