But,....
1. /Admin/Site Configuration/Brilliant Gallery/Configure Permissions/
. - directs me to my main drupal directory
. - Not any permisssions page
. - Is this supposed to take me to the User Permissions settings page?
2. /Admin/Site Configuration/Brilliant Gallery/Manage Galleries/
. - Open gallery list of pictures
. - Select Visibility
. - States 'saving...' and never changes.
. - I have tried different file sizes and nothing seems to commit.
I also am not able to define a path to the gallery to show images as you've indicated on http://vacilando.net/bg
Thanks
ORA
| Comment | File | Size | Author |
|---|---|---|---|
| #7 | bg-379026.patch | 1.53 KB | drpchris |
| #5 | bgchecklist.txt | 2.7 KB | egon.ojamaa |
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).