When I have Sub-path enabled I can't get into the edit page for any nodes that have an autopath alias. If I turn off the module I can edit it, or if I go to the node edit URL it works, but not with the alias.

Great module otherwise, but I can't use it if average users need a workaround to edit pages.

Let me know if you need any other information from me on this issue. Would love to see it fixed.

Comments

stella’s picture

Same thing happens for me - I get the error message :

The page isn't redirecting properly
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
smk-ka’s picture

Status: Active » Postponed (maintainer needs more info)

First, my problem is that I cannot reproduce this issue. Second, Subpath Alias doesn't redirect, there must be some other module that sends the browser into a loop.

Could one of you please try to debug this for me by placing the following line at the beginning of drupal_goto() in common.inc?
echo "<pre>"; var_dump(debug_backtrace()); echo "</pre>\n"; exit;
Then surf to an edit page and paste here the module name that executes the redirect (or simply the full stack trace). Let's hope this gives us some more info...

dyke it’s picture

i'm having the same problem. i added the line to common.inc and it's saying the problem is global redirect. i guess it's related to this: http://drupal.org/node/346911 (edit: i tried the associated patch and it fixed the problem)

array(7) {
[0]=>
array(4) {
["file"]=>
string(81) "/home/dykeitco/public_html/sites/all/modules/globalredirect/globalredirect.module"
["line"]=>
int(149)
["function"]=>
string(11) "drupal_goto"
["args"]=>
array(4) {
[0]=>
&string(13) "node/116/edit"
[1]=>
&NULL
[2]=>
&NULL
[3]=>
∫(301)
}
}
[1]=>
array(2) {
["function"]=>
string(19) "globalredirect_init"
["args"]=>
array(0) {
}
}
[2]=>
array(4) {
["file"]=>
string(46) "/home/dykeitco/public_html/includes/module.inc"
["line"]=>
int(471)
["function"]=>
string(20) "call_user_func_array"
["args"]=>
array(2) {
[0]=>
&string(19) "globalredirect_init"
[1]=>
&array(0) {
}
}
}
[3]=>
array(4) {
["file"]=>
string(46) "/home/dykeitco/public_html/includes/common.inc"
["line"]=>
int(2614)
["function"]=>
string(17) "module_invoke_all"
["args"]=>
array(1) {
[0]=>
&string(4) "init"
}
}
[4]=>
array(4) {
["file"]=>
string(49) "/home/dykeitco/public_html/includes/bootstrap.inc"
["line"]=>
int(1078)
["function"]=>
string(22) "_drupal_bootstrap_full"
["args"]=>
array(0) {
}
}
[5]=>
array(4) {
["file"]=>
string(49) "/home/dykeitco/public_html/includes/bootstrap.inc"
["line"]=>
int(989)
["function"]=>
string(17) "_drupal_bootstrap"
["args"]=>
array(1) {
[0]=>
∫(8)
}
}
[6]=>
array(4) {
["file"]=>
string(36) "/home/dykeitco/public_html/index.php"
["line"]=>
int(16)
["function"]=>
string(16) "drupal_bootstrap"
["args"]=>
array(1) {
[0]=>
∫(8)
}
}
}

youkho’s picture

Got same problem

arski’s picture

Hi,

First of all - great module! :)

And yes, got the same issue with global redirect, not sure why, but would be great if you could fix this. I assume that the redirects are looping somehow, with the two modules adjusting the link and sending it to the other and then back and etc etc :/

Let me know if I can help somehow further.

Thanks a lot in advance!

Martin

GreenReaper’s picture

Status: Postponed (maintainer needs more info) » Closed (won't fix)

The problem is not with this module. You must apply the patch in 346911 #13 to Global Redirect.