The Un-Official Proxomitron Forum
Help Me... URL Decoding - Printable Version

+- The Un-Official Proxomitron Forum (https://www.prxbx.com/forums)
+-- Forum: Proxomitron Filters (/forumdisplay.php?fid=38)
+--- Forum: Filter Help/Request (/forumdisplay.php?fid=31)
+--- Thread: Help Me... URL Decoding (/showthread.php?tid=1728)



Help Me... URL Decoding - aljabeer99 - Feb. 28, 2011 02:08 PM

can you help me for URL decoded filter... I confused about that...

An unrecoverable error was encountered: "URL could not be parsed for matching purposes 'http://www.google.co.id/url?sa=t&source=web&cd=1&ved=0CBoQFjAA&url=http%3A%2F%2Fen.wikipedia.org%2Fwiki%2FGeopolymers&ei=_6prTYSjJsGRgQeYn53LCg&usg=AFQjCNGUAiUeddqgZKmWlYeO2j22WhDiDg' failed because: This type of URL is not permitted to contain a userinfo field"
This problem is unexpected. Please use the contact information below to obtain assistance.

I think, the problem is URL decoding....

can i change URL with proxomitron like this :
'http://www.google.co.id/url?sa=t&source=web&cd=1&ved=0CBoQFjAA&url=http://en.wikipedia.org/wiki/Geopolymers&ei=_6prTYSjJsGRgQeYn53LCg&usg=AFQjCNGUAiUeddqgZKmWlYeO2j22WhDiDg'

thank you very much for this...


RE: Help Me... URL Decoding - JJoe - Mar. 01, 2011 02:10 AM

(Feb. 28, 2011 02:08 PM)aljabeer99 Wrote:  can i change URL with proxomitron like this :
'http://www.google.co.id/url?sa=t&source=web&cd=1&ved=0CBoQFjAA&url=http://en.wikipedia.org/wiki/Geopolymers&ei=_6prTYSjJsGRgQeYn53LCg&usg=AFQjCNGUAiUeddqgZKmWlYeO2j22WhDiDg'

Try $UESC() command like:

Code:
[Patterns]
Name = "Example $UESC()"
Active = TRUE
Bounds = "http://\whttp%3A%2F%2F\w"
Limit = 256
Match = "\1"
Replace = "$UESC(\1)"

or

Code:
[HTTP headers]
In = FALSE
Out = TRUE
Key = "! : Redir: Example $UESC() (out)"
URL = "$URL(*http%3A%2F%2F&\1)$RDIR($UESC(\1))"



HTH


RE: Help Me... URL Decoding - aljabeer99 - Mar. 01, 2011 06:35 PM

(Mar. 01, 2011 02:10 AM)JJoe Wrote:  
(Feb. 28, 2011 02:08 PM)aljabeer99 Wrote:  can i change URL with proxomitron like this :
'http://www.google.co.id/url?sa=t&source=web&cd=1&ved=0CBoQFjAA&url=http://en.wikipedia.org/wiki/Geopolymers&ei=_6prTYSjJsGRgQeYn53LCg&usg=AFQjCNGUAiUeddqgZKmWlYeO2j22WhDiDg'

Try $UESC() command like:

Code:
[Patterns]
Name = "Example $UESC()"
Active = TRUE
Bounds = "http://\whttp%3A%2F%2F\w"
Limit = 256
Match = "\1"
Replace = "$UESC(\1)"

or

Code:
[HTTP headers]
In = FALSE
Out = TRUE
Key = "! : Redir: Example $UESC() (out)"
URL = "$URL(*http%3A%2F%2F&\1)$RDIR($UESC(\1))"



HTH
wow... it's work joe...
btw... thank's you very much... Thumbs Up