Gallery links in "manage" redirect to front page
| Project: | Brilliant Gallery |
| Version: | 6.x-3.0 |
| Component: | Miscellaneous |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | needs review |
Jump to:
I've scoured documentation and forums for a clue here. Normally I'd find a different solution, but this seems to be such a unique, easy-to-use module and I'd like to solve this!
My problem is simple to describe: I've followed all the steps for installation closely and carefully, created gallery directories and added pictures. But when I go to manage my galleries, the links for the galleries redirect me to the front page. While the address bar continues to read "mysite.com/?fld=/galleries", all I see is the front page.
I'm totally baffled and hoping someone can help me! (I'm a total drupal newb who has managed well with other modules)
Happy to provide more info if it will help troubleshoot this.

#1
I have the same Problem !
it would be nice if somebody can help...
#2
the problem is... activate 'clean-urls'.
if u can't activate it. go to ftp and search in the .htacces file for ' Options +FollowSymLinks ' (without ' ') and put a ' # ' for it (without ' ')
(like that # Options +FollowSymLinks)...
otherwise rename .htacces to something like a***ole
or delete it...
sorry for my english, i'm a German. but this will solve ur problem !
#3
Hi there,
same problem here. i followed the instructions of Gutz-Pilz, but the links in "manage" still redirect to front page.
can somebody help?
#4
nobody?
#5
Same problem here. Solution presented by Gutz does not work unfortunately. Files reside under /sites/default/files/albums. Followed the step-by-step from authors homepage but to no avail. PHP is v5, MySQL also v5.
#6
Yes, I've got the same problem. Why is that? Is there somebody who knows the solution or maybe needs some more configuration-information? I'm using Drupal 5.10, MySWL 5.0.51a, PHP 5.2.6.
#7
I just managed to get everything to work by activating the "clean-url" setting, but I prior didn' get it to work by disabling the "Options +FollowSymLinks"-line proposed by Gutz-Pilz. Is there anybody who has a solution for those of us without the possibility of using clean-urls?
#8
activating "clean url" is not an option for me, too. any others ideas?
#9
I have D6.11, Brilliant Gallery 6.x-3.0, and clean URLs enabled (and properly working)
When I click on the admin link "Configure permissions"; which, shows as:
http://192.168.0.103/drupal/admin/settings/brilliant_gallery/permissions
I get redirected to:
http://192.168.0.103/?q=admin/user/permissions#module-brilliant_gallery
I have drupal in a sub directory, so the above just shows the my test server's root directory :p
It looks like function brilliant_gallery_perms() in brilliant_gallery.module (line 261) is at fault:
header("Location: /?q=admin/user/permissions#module-brilliant_gallery");
I have changed that line to the following:
global $base_path;
header("Location: $base_path/admin/user/permissions#module-brilliant_gallery");
I hope that helps someone else.... it worked for me ;)
#10
Just wanted to post that Clean Urls fixed the problem for us too.