Why does my Transmission client tell me my tracker list contains invalid URLs?
When I type in custom trackers into the tracker list, and try to save the list I get a message saying:
List contains invalid URLs
Am I doing something wrong?
internet file-sharing downloads transmission bittorrent
add a comment |
When I type in custom trackers into the tracker list, and try to save the list I get a message saying:
List contains invalid URLs
Am I doing something wrong?
internet file-sharing downloads transmission bittorrent
add a comment |
When I type in custom trackers into the tracker list, and try to save the list I get a message saying:
List contains invalid URLs
Am I doing something wrong?
internet file-sharing downloads transmission bittorrent
When I type in custom trackers into the tracker list, and try to save the list I get a message saying:
List contains invalid URLs
Am I doing something wrong?
internet file-sharing downloads transmission bittorrent
internet file-sharing downloads transmission bittorrent
asked Apr 24 '11 at 2:52
AlanAlan
1,81042238
1,81042238
add a comment |
add a comment |
5 Answers
5
active
oldest
votes
This was the first link hat I found on google... after trying about a dozen from a list i found online I realized why I was getting this message. Windows uses a carriage return and newline to denote an end of line, where unix only uses a newline. I opened the file in my IDE (geany) and converted the line endings and it worked for the entire list.
Hope this helps.
Hi pfifo! I will give this a try soon as I can! Thank you!
– Alan
May 3 '11 at 2:49
I just read that list in python and inserted 'nn' on every list element, Solved my problem for transmission in ubuntu 18.
– Yash Kumar Atri
Nov 26 '18 at 12:19
add a comment |
Probably because it includes udp trackers, which aren't supported in Transmission until version 2.30.
They are HTTP though, does that matter?
– Alan
Apr 24 '11 at 17:57
add a comment |
For whatever reason, trackers (in my case) had to be added one by one. Adding them all at once would cause that error message.
add a comment |
In my case it was solved by using udp trackers and leaving a blank line after each link.
The add button adds one link at a time. I used edit. which opens something like a text file where multiple trackers can be added at once.
– Nabarun Chatterjee
Aug 10 '14 at 23:48
add a comment |
Issue may be because of certain characters in the list. Open sublime text and copy the list you want to add.
Then use Ctrl+H and replace ss (assuming lines are separated by one empty line) with n (use Regular Expession option) and try pasting. It worked for me. Initially i tried copying one 1 line and noticed some control character was being inserted (may be true in your case too. Use the 'Add' button in transmission to verify)
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f36700%2fwhy-does-my-transmission-client-tell-me-my-tracker-list-contains-invalid-urls%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
This was the first link hat I found on google... after trying about a dozen from a list i found online I realized why I was getting this message. Windows uses a carriage return and newline to denote an end of line, where unix only uses a newline. I opened the file in my IDE (geany) and converted the line endings and it worked for the entire list.
Hope this helps.
Hi pfifo! I will give this a try soon as I can! Thank you!
– Alan
May 3 '11 at 2:49
I just read that list in python and inserted 'nn' on every list element, Solved my problem for transmission in ubuntu 18.
– Yash Kumar Atri
Nov 26 '18 at 12:19
add a comment |
This was the first link hat I found on google... after trying about a dozen from a list i found online I realized why I was getting this message. Windows uses a carriage return and newline to denote an end of line, where unix only uses a newline. I opened the file in my IDE (geany) and converted the line endings and it worked for the entire list.
Hope this helps.
Hi pfifo! I will give this a try soon as I can! Thank you!
– Alan
May 3 '11 at 2:49
I just read that list in python and inserted 'nn' on every list element, Solved my problem for transmission in ubuntu 18.
– Yash Kumar Atri
Nov 26 '18 at 12:19
add a comment |
This was the first link hat I found on google... after trying about a dozen from a list i found online I realized why I was getting this message. Windows uses a carriage return and newline to denote an end of line, where unix only uses a newline. I opened the file in my IDE (geany) and converted the line endings and it worked for the entire list.
Hope this helps.
This was the first link hat I found on google... after trying about a dozen from a list i found online I realized why I was getting this message. Windows uses a carriage return and newline to denote an end of line, where unix only uses a newline. I opened the file in my IDE (geany) and converted the line endings and it worked for the entire list.
Hope this helps.
answered May 3 '11 at 2:18
pfifopfifo
261
261
Hi pfifo! I will give this a try soon as I can! Thank you!
– Alan
May 3 '11 at 2:49
I just read that list in python and inserted 'nn' on every list element, Solved my problem for transmission in ubuntu 18.
– Yash Kumar Atri
Nov 26 '18 at 12:19
add a comment |
Hi pfifo! I will give this a try soon as I can! Thank you!
– Alan
May 3 '11 at 2:49
I just read that list in python and inserted 'nn' on every list element, Solved my problem for transmission in ubuntu 18.
– Yash Kumar Atri
Nov 26 '18 at 12:19
Hi pfifo! I will give this a try soon as I can! Thank you!
– Alan
May 3 '11 at 2:49
Hi pfifo! I will give this a try soon as I can! Thank you!
– Alan
May 3 '11 at 2:49
I just read that list in python and inserted 'nn' on every list element, Solved my problem for transmission in ubuntu 18.
– Yash Kumar Atri
Nov 26 '18 at 12:19
I just read that list in python and inserted 'nn' on every list element, Solved my problem for transmission in ubuntu 18.
– Yash Kumar Atri
Nov 26 '18 at 12:19
add a comment |
Probably because it includes udp trackers, which aren't supported in Transmission until version 2.30.
They are HTTP though, does that matter?
– Alan
Apr 24 '11 at 17:57
add a comment |
Probably because it includes udp trackers, which aren't supported in Transmission until version 2.30.
They are HTTP though, does that matter?
– Alan
Apr 24 '11 at 17:57
add a comment |
Probably because it includes udp trackers, which aren't supported in Transmission until version 2.30.
Probably because it includes udp trackers, which aren't supported in Transmission until version 2.30.
answered Apr 24 '11 at 15:47
user13029user13029
34112
34112
They are HTTP though, does that matter?
– Alan
Apr 24 '11 at 17:57
add a comment |
They are HTTP though, does that matter?
– Alan
Apr 24 '11 at 17:57
They are HTTP though, does that matter?
– Alan
Apr 24 '11 at 17:57
They are HTTP though, does that matter?
– Alan
Apr 24 '11 at 17:57
add a comment |
For whatever reason, trackers (in my case) had to be added one by one. Adding them all at once would cause that error message.
add a comment |
For whatever reason, trackers (in my case) had to be added one by one. Adding them all at once would cause that error message.
add a comment |
For whatever reason, trackers (in my case) had to be added one by one. Adding them all at once would cause that error message.
For whatever reason, trackers (in my case) had to be added one by one. Adding them all at once would cause that error message.
answered Apr 25 '11 at 4:30
AlanAlan
1,81042238
1,81042238
add a comment |
add a comment |
In my case it was solved by using udp trackers and leaving a blank line after each link.
The add button adds one link at a time. I used edit. which opens something like a text file where multiple trackers can be added at once.
– Nabarun Chatterjee
Aug 10 '14 at 23:48
add a comment |
In my case it was solved by using udp trackers and leaving a blank line after each link.
The add button adds one link at a time. I used edit. which opens something like a text file where multiple trackers can be added at once.
– Nabarun Chatterjee
Aug 10 '14 at 23:48
add a comment |
In my case it was solved by using udp trackers and leaving a blank line after each link.
In my case it was solved by using udp trackers and leaving a blank line after each link.
answered Aug 10 '14 at 23:43
Nabarun ChatterjeeNabarun Chatterjee
1012
1012
The add button adds one link at a time. I used edit. which opens something like a text file where multiple trackers can be added at once.
– Nabarun Chatterjee
Aug 10 '14 at 23:48
add a comment |
The add button adds one link at a time. I used edit. which opens something like a text file where multiple trackers can be added at once.
– Nabarun Chatterjee
Aug 10 '14 at 23:48
The add button adds one link at a time. I used edit. which opens something like a text file where multiple trackers can be added at once.
– Nabarun Chatterjee
Aug 10 '14 at 23:48
The add button adds one link at a time. I used edit. which opens something like a text file where multiple trackers can be added at once.
– Nabarun Chatterjee
Aug 10 '14 at 23:48
add a comment |
Issue may be because of certain characters in the list. Open sublime text and copy the list you want to add.
Then use Ctrl+H and replace ss (assuming lines are separated by one empty line) with n (use Regular Expession option) and try pasting. It worked for me. Initially i tried copying one 1 line and noticed some control character was being inserted (may be true in your case too. Use the 'Add' button in transmission to verify)
add a comment |
Issue may be because of certain characters in the list. Open sublime text and copy the list you want to add.
Then use Ctrl+H and replace ss (assuming lines are separated by one empty line) with n (use Regular Expession option) and try pasting. It worked for me. Initially i tried copying one 1 line and noticed some control character was being inserted (may be true in your case too. Use the 'Add' button in transmission to verify)
add a comment |
Issue may be because of certain characters in the list. Open sublime text and copy the list you want to add.
Then use Ctrl+H and replace ss (assuming lines are separated by one empty line) with n (use Regular Expession option) and try pasting. It worked for me. Initially i tried copying one 1 line and noticed some control character was being inserted (may be true in your case too. Use the 'Add' button in transmission to verify)
Issue may be because of certain characters in the list. Open sublime text and copy the list you want to add.
Then use Ctrl+H and replace ss (assuming lines are separated by one empty line) with n (use Regular Expession option) and try pasting. It worked for me. Initially i tried copying one 1 line and noticed some control character was being inserted (may be true in your case too. Use the 'Add' button in transmission to verify)
answered Feb 2 at 16:07
Vikramaditya KukrejaVikramaditya Kukreja
34
34
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f36700%2fwhy-does-my-transmission-client-tell-me-my-tracker-list-contains-invalid-urls%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown