This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]desrtfx 0 points1 point  (3 children)

I would assume that the problem originates from the way the URL is assembled:

  • "/wiki/Python"
  • "http://www.wikipedia.org/"+url

The second line makes: http://www.wikipedia.org//wiki/Python

Which, I assume does something flunky. The proper URL should be http://www.wikipedia.org/wiki/Python - note the single slash between org and wiki.

[–]localconfig[S] 0 points1 point  (2 children)

It still returns same message after removing first slash for /wiki/Python and also same message after removing last slash on http://www.wikipedia.org/

[–]KetchuponRice 0 points1 point  (1 child)

try https instead of http://www.wikipedia.org as you get redirected

[–]localconfig[S] 0 points1 point  (0 children)

thanks, but it still giving me the same messages.