almays
almays
Comments
-
Ok. It was just the list settings. Unsubscribe from all.
Resolved. -
maybe unsubscribe.php:74 ?
-
Currently I decided to use "Already subscribed." response.
It works.
I subscribe a user to the list. If user is subscribed, then I get "Already subscribed." and happily set $my_subscribed to true.
If in the subscribe response I don't … -
Ok. I fixed the issue.
In my case I was providing in the POST call Name and Email fields instead of name and email (case sensitive).
Nevertheless, who is that $_GET['i']? -
Thus last not break
cooks you a cake. -
and when /l/ stuff get's rewriten as l.php?i=foo it doesn't go to / location, because there is an if statement, applying rewrite only if file doesn't exist, but file l.php does exist, so it passes directly to location php again.
-
Here php gets processed correctly, because after changing uri from /foo to /foo.php it doesn't break, but goes to the php location, which doesn't rewrite any more, but sends to the php stream.
-
https://gist.github.com/3928668
Is a combination of yours and mine.
"last" directive is ok. It doesn't make a infinite loop, because every location is unique.