The module's been working fine, but I needed to add a number of exceptions for APIs requiring oauth, particularly Mollom, Mailchimp and Twitter. However, I found I could only get one of these services working at any one time. Looking at the variable table, I could see that for each of the entries in proxy_exception, an additional trailing space was being added - eg "rest.mollom.com ". This was true of every line in the Exceptions form field apart from the last one - which was the one that would work, eg "rest.mollom.com" with no trailing space.
My coding knowledge is pretty minimal so I have no idea if this is the root of the problem, but thought I would report here anyway. I worked around by adding exceptions directly to settings.php
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | escape_new_line_symbol_for_exceptions_setting-2468293-3.patch | 581 bytes | zviryatko |
Comments
Comment #1
zviryatko commentedHello, that's because browser send multi-line field with
\n\rsymbols, but in this module it explode string only by\nsymbol. Added patch to d7 (btw for d8 it will be almost identically), need to RTBC.