JDownloader Community - Appwork GmbH
 

Reply
 
Thread Tools Display Modes
  #1  
Old 24.07.2019, 21:55
kathyjudd
Guest
 
Posts: n/a
Lightbulb Captcha Retry Settings

I am using an anticaptcha service to reduce the number captcha I have to type myself. However they aren't always online so I end up getting the "Skipped Downloads: 1. Click here to retry them." message.

Are there any settings that would I allow me to set so that JDownloader 2 retries the captcha automatically after 1 hour of waiting? Right now it just stops all downloads.
Attached Images
File Type: png Capture this.PNG (7.0 KB, 0 views)
Reply With Quote
  #2  
Old 24.07.2019, 22:04
thecoder2012's Avatar
thecoder2012 thecoder2012 is offline
Official 9kw.eu Support
 
Join Date: Feb 2013
Location: Internet
Posts: 1,324
Default

Quote:
Originally Posted by kathyjudd View Post
I am using an anticaptcha service to reduce the number captcha I have to type myself. However they aren't always online so I end up getting the "Skipped Downloads: 1. Click here to retry them." message.

Are there any settings that would I allow me to set so that JDownloader 2 retries the captcha automatically after 1 hour of waiting? Right now it just stops all downloads
I think your captcha service is sometimes overloaded. You have 2-3 ways. First in the advanced setting "CaptchaSettings.captchatimeoutaction" with "RETRY", second way are multiple captcha services and the last way event scripter in JDownloader.

Example:
Code:
// Unskip 'skipped - captcha input' links at user specified interval
// Trigger Required : "Interval"
// Set interval to 3600000 (60 minutes)
var links = getAllDownloadLinks();

for (i = 0; i < links.length; i++) {
	var link = links[i];
	if (link.isSkipped()) {
		if (link.getSkippedReason() == "CAPTCHA") {
			link.setSkipped(false);
		}
	}
}
__________________
Join 9kw.eu Captcha Service now and let your JD continue downloads while you sleep.
Reply With Quote
  #3  
Old 24.07.2019, 22:50
kathyjudd
Guest
 
Posts: n/a
Default

Thanks for the script. It looks like exactly what I needed.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

All times are GMT +2. The time now is 09:34.
Provided By AppWork GmbH | Privacy | Imprint
Parts of the Design are used from Kirsch designed by Andrew & Austin
Powered by vBulletin® Version 3.8.10 Beta 1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.