Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
Andrew  
#1 Posted : Monday, April 29, 2013 9:59:10 PM(UTC)
Andrew

Rank: Advanced Member

Groups: Member, Administration
Joined: 8/2/2003(UTC)
Posts: 876

Thanks: 2 times
Was thanked: 27 time(s) in 27 post(s)
Description

If the file list you feed to File Downloader contains URLs with characters like whitespace, %, # and similar, it fails to load these files.

Cause

Such URLs are not valid from the point of view of the server. They don't conform to appropriate RFCs as they contain reserved characters.

Solution

You should use URL enconding, i.e. replace special characters with their ASCII codes with a prepended percent sign, as described in this wiki article:

https://en.wikipedia.org/wiki/Percent-encoding

For example, space character will become %20, hashtag character (#) will become %24, etc.

NOTE: Certain characters may be forbidden even after being encoded. For example, IIS does not allow plus characters (+) by default. In this case, you should avoid such characters in URLs or change your webserver settings (if possible).

Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.