When Drupal is not install in root of web server, the "destination" path is wrong. The installation prefix path should be strip. Here is my solution:

// line 87: $path = _r4032login_remove_language(request_uri());

global $base_path;
if (strpos($path, $base_path) === 0) {
$path = substr($path, strlen($base_path));
}

It would be great this fix will appear in next release. Thanks :-)

Comments

mike_sandes’s picture

Thanks for that - works for me!!

dmegatool’s picture

Was having the issue too. Adding your code fixed it ! Thanks !

lotyrin’s picture

Status: Active » Closed (duplicate)