Everything works apart from clicking on a an album. When i delete the "index.php?q=de" part in the adress bar it integrates perfectly. How do i get those terms out of the urls?

Comments

dfrechen’s picture

Status: Active » Closed (fixed)
PigPen4ever’s picture

The same problem here.
Good to know that I'm not alone with this. I try to get the gallery module work since the first release for drupal 6.x.

Let's hope someone knows what to do.

***Update***

I changed lines 74-76 of gallery_base.inc

// Language-prefix url rewrite
if (function_exists('language_url_rewrite') && $language->prefix) {
$embed_uri = str_replace('index.php?q=', 'index.php?q='. $language->prefix .'/', $embed_uri);

to

// Language-prefix url rewrite
if (function_exists('language_url_rewrite') && $language->prefix) {
$embed_uri = str_replace('index.php?q=de', 'index.php?q=de'. $language->prefix .'/', $embed_uri);

With this it works for me!