Hi !

This seems like quite a nice module, if i ever can get it to work =)
ive uploaded 6.x-3.0 and applied the "thumbnail-patch".

What happens is this,
i go to admin-> site configuration -> brilliant gallery

Here i fill out the the options i want ie lightbox ( maxim width of image ) and such.
i click " Save configuration "

i get the message that " the configuartion options have been saved " .

Next i wanna go to admin-> site configuration -> brilliant gallery -> Configure permissions
once i click on "configure permissions" i get redirected to the root of my webserver
the link when right-clicking on it reads "http://www.xxxr.xx/drupal/?q=admin/settings/brilliant_gallery/permissions
not to the root of drupal, but on the webserver..

However i can reach admin-> site configuration -> brilliant gallery -> Manage galleries
I see my two image folders.
But when i click either two of them, same thing happens, i get sent back to the root of my webserver
The link when right-clicking on the albums are
http://www.xxx.xx/drupal/?fld=/bilder/1
http://www.xxx.xx/drupal/?fld=/bilder/2

Same thing happens here, when i click one of the albums, i get sent back to the wwwroot..

Looking forward to see the power of the drupal issuboard =)

Kind Regards,
J

Comments

Krupp’s picture

However i can reach admin-> site configuration -> brilliant gallery -> Manage galleries
I see my two image folders.
But when i click either two of them, same thing happens, i get sent back to the root of my webserver
The link when right-clicking on the albums are
http://www.xxx.xx/drupal/?fld=/bilder/1
http://www.xxx.xx/drupal/?fld=/bilder/2

I can confirm this problem. admin/settings/brilliant_gallery/manage displays all gallery folders. I click on them and the address bar reads http://localhost:8888/?fld=galleries/virtualtour/room, but the page displayed is my home page.

judaz’s picture

however selfish it might sound, im glad im not alone =)

Jokke-2’s picture

Had the same problem, fixed it by changing

$result .= '<li><a href="?fld='. $galleryfolder . $path_middle .'">'. $galleryfolder . $path_middle . $rootfolder .'</a></li>';

to

$result .= '<li><a href="'.$_SERVER['REQUEST_URI'].'&fld='. $galleryfolder . $path_middle .'">'. $galleryfolder . $path_middle . $rootfolder .'</a></li>';

in file brilliant_gallery.module line 384

murrellr’s picture

Thanks. This fixed it for me. But it was on a different line, so search for the text of the line to find it.