JDownloader Community - Appwork GmbH
 

Notices

Reply
 
Thread Tools Display Modes
  #121  
Old 30.10.2012, 21:11
The_Goz
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by pspzockerscene View Post
Sounds like it's configured correctly and the error is on DBCs side!

GreeZ psp
Ok, Danke.


Hopefully it will start to work and I didn't just waste my money for nothing.

Cheers.
Reply With Quote
  #122  
Old 30.10.2012, 21:18
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,918
Default

Well they also have a support, you should contact them because we cannot help

GreeZ pspzockerscene
__________________
JD Supporter, Plugin Dev. & Community Manager

Erste Schritte & Tutorials || JDownloader 2 Setup Download
Spoiler:

A users' JD crashes and the first thing to ask is:
Quote:
Originally Posted by Jiaz View Post
Do you have Nero installed?
Reply With Quote
  #123  
Old 31.10.2012, 19:46
Density Density is offline
JD Beta
 
Join Date: Jul 2012
Posts: 52
Default

The carriage return bug will be fixed for Mac users. (I don't know how I missed, even though I'm using notepad++!!).

The java lag problem may happen because of network issues. It seems I don't have anything to do with that.

I didn't tested with JD2. Will try that & update the status soon.

For rest, I guess, everything is fine. If you have problem post here.

Sorry for the delayed reply, since I'm having some other works too. :(

Quote:
Originally Posted by bhulbhulia View Post
Awesome plugin! Everyone, but be sure to UNCHECK "Disable automatic captcha' option under "Settings => Anti-captcha' or the plugin would fail to work (in my case I had checked that box). I know it was quite frustrating for me, so posted it here so others might find it helpful (hopefully the OP would add this bit part in to the original post).

Have not tested turbobit yet; just depositfiles!
I guess it was default config of JD. Not sure.

Update: I'm seeing the site having some problem in connections. Even the website status says, "OK", it having time out problems.

Last edited by Density; 31.10.2012 at 20:02.
Reply With Quote
  #124  
Old 01.11.2012, 12:01
g3power
Guest
 
Posts: n/a
Default deathbycaptcha.com JD plugin bug

I have been using your great plugin on OS X for a few month now and it’s been pretty stable. I know about the recent problems with deathbycaptcha.com and that they are not your plug-in’s fault.

The issue I am experiencing is that sometimes the plugin process sticks around instead of exiting properly. I have been killing it from the command line as each process will keep eating about 60% of one CPU and the fan of the machine will start ramping up after a few minutes. ;(

Any chance you can either try to fix this or release the source so I can do it myself?
Reply With Quote
  #125  
Old 06.11.2012, 12:16
gigi8531
Guest
 
Posts: n/a
Default

i have the same problem. the thing its: there is not more source code then you already downloaded. the plugin just starts the api client from the official dbc website. it consists only of a few scripts.

i will try to update the java api client. perhaps it helps. otherwise you could modify the dbc.mac.sh file an add some timeout command. feel free to share your results.
Reply With Quote
  #126  
Old 06.11.2012, 12:24
gigi8531
Guest
 
Posts: n/a
Default

-- i posted a idea to early. i have to revoke this message. sorry
Reply With Quote
  #127  
Old 08.11.2012, 10:49
g3power
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by gigi8531 View Post
i have the same problem. the thing its: there is not more source code then you already downloaded. the plugin just starts the api client from the official dbc website. it consists only of a few scripts.

i will try to update the java api client. perhaps it helps. otherwise you could modify the dbc.mac.sh file an add some timeout command. feel free to share your results.
I have found a work-around:
**External links are only visible to Support Staff****External links are only visible to Support Staff**
(timeout3 script from bashcookbook.com)
Download, rename to timeout3.sh, make executable, place in dbc folder and change your dbc.sh to the following:
Code:
#!/bin/bash -xv
./timeout3.sh -t 60 -i 10 java -jar ./dbc.jar > dbc.log 2> dbc-error.log
Reply With Quote
  #128  
Old 24.11.2012, 15:26
survie
Guest
 
Posts: n/a
Default

When I try to download it appears this "Error (509) This account's public links are generating too much traffic and have been temporarily disabled!", can someone provide another link for download? Thanks
Reply With Quote
  #129  
Old 26.11.2012, 10:24
g3power
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by survie View Post
When I try to download it appears this "Error (509) This account's public links are generating too much traffic and have been temporarily disabled!", can someone provide another link for download? Thanks
Here is the contents of the timeout3 bash script for those with problems downloading it:

Code:
#!/bin/bash
#
# The Bash shell script executes a command with a time-out.
# Upon time-out expiration SIGTERM (15) is sent to the process. If the signal
# is blocked, then the subsequent SIGKILL (9) terminates it.
#
# Based on the Bash documentation example.

# Hello Chet,
# please find attached a "little easier"  :-)  to comprehend
# time-out example.  If you find it suitable, feel free to include
# anywhere: the very same logic as in the original examples/scripts, a
# little more transparent implementation to my taste.
#
# Dmitry V Golovashkin <Dmitry.Golovashkin@sas.com>

scriptName="${0##*/}"

declare -i DEFAULT_TIMEOUT=9
declare -i DEFAULT_INTERVAL=1
declare -i DEFAULT_DELAY=1

# Timeout.
declare -i timeout=DEFAULT_TIMEOUT
# Interval between checks if the process is still alive.
declare -i interval=DEFAULT_INTERVAL
# Delay between posting the SIGTERM signal and destroying the process by SIGKILL.
declare -i delay=DEFAULT_DELAY

function printUsage() {
    cat <<EOF

Synopsis
    $scriptName [-t timeout] [-i interval] [-d delay] command
    Execute a command with a time-out.
    Upon time-out expiration SIGTERM (15) is sent to the process. If SIGTERM
    signal is blocked, then the subsequent SIGKILL (9) terminates it.

    -t timeout
        Number of seconds to wait for command completion.
        Default value: $DEFAULT_TIMEOUT seconds.

    -i interval
        Interval between checks if the process is still alive.
        Positive integer, default value: $DEFAULT_INTERVAL seconds.

    -d delay
        Delay between posting the SIGTERM signal and destroying the
        process by SIGKILL. Default value: $DEFAULT_DELAY seconds.

As of today, Bash does not support floating point arithmetic (sleep does),
therefore all delay/time values must be integers.
EOF
}

# Options.
while getopts ":t:i:d:" option; do
    case "$option" in
        t) timeout=$OPTARG ;;
        i) interval=$OPTARG ;;
        d) delay=$OPTARG ;;
        *) printUsage; exit 1 ;;
    esac
done
shift $((OPTIND - 1))

# $# should be at least 1 (the command to execute), however it may be strictly
# greater than 1 if the command itself has options.
if (($# == 0 || interval <= 0)); then
    printUsage
    exit 1
fi

# kill -0 pid   Exit code indicates if a signal may be sent to $pid process.
(
    ((t = timeout))

    while ((t > 0)); do
        sleep $interval
        kill -0 $$ || exit 0
        ((t -= interval))
    done

    # Be nice, post SIGTERM first.
    # The 'exit 0' below will be executed if any preceeding command fails.
    kill -s SIGTERM $$ && kill -0 $$ || exit 0
    sleep $delay
    kill -s SIGKILL $$
) 2> /dev/null &

exec "$@"
Reply With Quote
  #130  
Old 26.11.2012, 20:29
PatEle
Guest
 
Posts: n/a
Default

Hi,
how can I edit the timeout time?
I found out that its 60 sekonds but dbc needs sometimes 90 seconds so they don't get solved.
Reply With Quote
  #131  
Old 27.11.2012, 13:00
g3power
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by PatEle View Post
Hi,
how can I edit the timeout time?
I found out that its 60 sekonds but dbc needs sometimes 90 seconds so they don't get solved.
Simple: just change
Code:
-t 60
to something else!
Reply With Quote
  #132  
Old 27.11.2012, 14:22
survie
Guest
 
Posts: n/a
Default

Can someone post another link for download besides linux version
Reply With Quote
  #133  
Old 28.11.2012, 15:00
Density Density is offline
JD Beta
 
Join Date: Jul 2012
Posts: 52
Default

Quote:
Originally Posted by survie View Post
Can someone post another link for download besides linux version
Link updated. Thanks for notifying me.
Reply With Quote
  #134  
Old 28.11.2012, 23:28
PatEle
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by g3power View Post
Simple: just change
Code:
-t 60
to something else!
Thanks, but where can I find the -t 60?
I'm jusing the Macintosh Version.
Reply With Quote
  #135  
Old 29.11.2012, 07:27
cjoun16
Guest
 
Posts: n/a
Cool Still having problems on OSX with JD2 and DBC

I put the dbc folder in /Applications/JDownloader.app/Contents/Resources/app/jd/captcha/methods/dbc

The command ./dbc.mac.sh works correctly (RECV: {"text":"iescomb ceive","status":0,"is_correct":true,"captcha":7228121})!

jacinfo.mac.xml has been renamed to jacinfo.xml

What else needs to be done?

SOLUTION: I had to open jacinfo.xml and add zippyshare.com;

Last edited by cjoun16; 29.11.2012 at 07:38. Reason: Solution
Reply With Quote
  #136  
Old 19.12.2012, 21:26
kalimero
Guest
 
Posts: n/a
Default

hey, if deathbycaptcha.com work JDownloader 2(windows)?
Reply With Quote
  #137  
Old 20.12.2012, 01:59
Tarkus
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by kalimero View Post
hey, if deathbycaptcha.com work JDownloader 2(windows)?
Yes, I'm using that combo.
Reply With Quote
  #138  
Old 25.12.2012, 20:25
kalimero
Guest
 
Posts: n/a
Default

to remove...

Last edited by kalimero; 29.12.2012 at 01:05.
Reply With Quote
  #139  
Old 28.12.2012, 12:57
xelosales
Guest
 
Posts: n/a
Unhappy

my plugin stoped to work since xmas. Is it a Christimas Gift? I have some $$ to spend with death by captcha
i tried to update the dbc folder, and nothing happen. It asks me to fullfill the captcha manualy...
is anyone here that use the plugins that is having the same issue???
Reply With Quote
  #140  
Old 12.02.2013, 10:28
beggo
Guest
 
Posts: n/a
Default

Since a couple of weeks DBC is having a very low success rate. It takes about three / four attempts (up to ten attempts) until its solved correctly. These guys sucks **External links are only visible to Support Staff**(link) ...
Is there any possibility sending the wrong solved captchas automatically to DBC, so they can record them as incorrect?
Beggo

Last edited by beggo; 13.02.2013 at 14:21.
Reply With Quote
  #141  
Old 09.03.2013, 12:34
cjoun16
Guest
 
Posts: n/a
Default

x

Last edited by cjoun16; 15.07.2013 at 02:25.
Reply With Quote
  #142  
Old 02.04.2013, 04:29
Idonalt
Guest
 
Posts: n/a
Default

Anyone have a copy of this they could throw up on a mirror somewhere?
OP's link is broken

Edit: Never mind, I was using the link in the spoiler area, just noticed there was another link up higher in the post.
Reply With Quote
  #143  
Old 08.04.2013, 01:52
ringen00
Guest
 
Posts: n/a
Default

'Just to let you know my experience!

With JDownloader2 and uploaded.to it worked at once. (Just - the captcha was solved -
unfortunatelx JD isn't willing to trigger a reconnect then)
And I was bale to find out what had happened:
**External links are only visible to Support Staff****External links are only visible to Support Staff**

---

With datafiles.com, IT DIDN't !!!

Changed the names of the following folders:
C:\Users\User\AppData\Local\Captcha_Brotherhood
C:\Program Files (x86)\Brotherhood Software\Captcha Brotherhood
C:\Users\User\AppData\Local\JDownloader 2.0\jd\captcha\methods\Not in use captchaBrotherhood

The only difference of changing the names was (the last one I already tried with moving it) that nothing happened.
I I only changed the name of the lasst one a new Brotherhood-Folder was created
in which the captcha for datafiles.com was to be found.

I'm using the old JD too on this machine (under: C:\Program Files (x86)).
The new one is here: C:\Users\User\AppData\Local\JDownloader 2.0

The JD2 Settings haven't been able to really stop Brotherhood btw.
(enable - user - pass)



NOW IT WORKS !!!

I copied the hosters only to the jacinfo.win.xml.
Now they are here too: jacinfo.xml
Just strange that uploaded.to had worked before although nothing about it was to be found in jacinfo.xml !!!
Reply With Quote
  #144  
Old 22.05.2013, 18:32
Fetterbr
Guest
 
Posts: n/a
Default

i just downloaded thisa file from DBC **External links are only visible to Support Staff****External links are only visible to Support Staff** installed it in jd2 folder metods/captcha filled out the 2 files with my password and user name as it says in the text file.. now i am lost, cant find it in jd2 settings
Reply With Quote
  #145  
Old 14.07.2013, 06:31
cjoun16
Guest
 
Posts: n/a
Default

zippyshare and jdownloader2 and dbc is not working. Active task says "connecting... waiting for...wait 01s" and repeats. I was wondering how I could debug this?

I solved my problem. I had to recreate the dbc.mac.sh script. I also went a step further and installed gtimeout incase it hangs.... If anyone is interested the solution is below:

Solution:
1. brew install coreutils
2. mv dbc.mac.sh dbc.mac.sh.old
3. vi dbc.mac.sh

#!/bin/bash -xv
/usr/local/bin/gtimeout 20 java -jar ./dbc.jar

4. chmod 777 dbc.mac.sh
5. restart jdownloader

Last edited by cjoun16; 15.07.2013 at 03:16.
Reply With Quote
  #146  
Old 15.07.2013, 08:28
Density Density is offline
JD Beta
 
Join Date: Jul 2012
Posts: 52
Default

Hope you all enjoy this plugin. Another similar plugin will be released in soon.

EDIT: I thought to create 9kw.eu for service. But it's already available. If you find any free exchange service post here. I'll make one plugin.

Last edited by Density; 15.07.2013 at 08:49.
Reply With Quote
  #147  
Old 31.07.2013, 12:32
fvveva
Guest
 
Posts: n/a
Default Key captcha

Hi. This plugin works like a charm on text based captchas, but some servers eg. ryushare.com use "key captcha" (puzzle problem). Has anyone solved this issue? Thanks
Reply With Quote
  #148  
Old 24.09.2013, 00:35
fvveva
Guest
 
Posts: n/a
Default

Hi. I have faced a problem with dbc and JD 2 on linux. It did not solve captcha (the solving crashed after less than second). But the test did OK (./dbc.sh).
The thing is you must set dbc.sh file executable.
Reply With Quote
  #149  
Old 02.11.2013, 02:31
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,918
Default

@Density
By the way we now have official captcha solver settings in JD.
You can add those for deathbycaptcha if you want to

GreeZ psp
__________________
JD Supporter, Plugin Dev. & Community Manager

Erste Schritte & Tutorials || JDownloader 2 Setup Download
Spoiler:

A users' JD crashes and the first thing to ask is:
Quote:
Originally Posted by Jiaz View Post
Do you have Nero installed?
Reply With Quote
  #150  
Old 07.11.2013, 14:43
cryzed
Guest
 
Posts: n/a
Default

Where and how exactly? In the Captchas-section of the new JDownloader it only shows My.JDownloader, 9kw.eu and captchabrotherhood.com -- there's no section for deathbycaptcha.com. I also checked the Advanced Settings-tab, but there are no results for "death" or "dbc"...

EDIT: Unless you meant a developer.

Last edited by cryzed; 07.11.2013 at 14:51.
Reply With Quote
  #151  
Old 07.11.2013, 17:01
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,918
Default

I ment a developer but if you want deathbycaptcha support directly in JDownloader 2 you can send me your DB account so I can check it out.
I'll have to waste some credits for testing purposes but that should be okay...

GreeZ pspzockerscene
__________________
JD Supporter, Plugin Dev. & Community Manager

Erste Schritte & Tutorials || JDownloader 2 Setup Download
Spoiler:

A users' JD crashes and the first thing to ask is:
Quote:
Originally Posted by Jiaz View Post
Do you have Nero installed?
Reply With Quote
  #152  
Old 07.11.2013, 19:43
cryzed
Guest
 
Posts: n/a
Default

Check your private messages.
Reply With Quote
  #153  
Old 07.11.2013, 20:20
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,918
Default

Ticket:


GreeZ pspzockerscene
__________________
JD Supporter, Plugin Dev. & Community Manager

Erste Schritte & Tutorials || JDownloader 2 Setup Download
Spoiler:

A users' JD crashes and the first thing to ask is:
Quote:
Originally Posted by Jiaz View Post
Do you have Nero installed?
Reply With Quote
  #154  
Old 09.11.2013, 01:45
PatEle
Guest
 
Posts: n/a
Default

Wow,
it's really great that you'll add full support for dbc. I can't avait it.
Please let it also solve the captchas from SJ.
THANKS

Als kleine Nebeninfo, wenn man sich das leider sehr komplizierte und etwas inkompatible Plugin von dbc holt, ist SJ nicht mit bei den Internetadressen in der Einstellungsdatei angegeben. Man kann diese dort allerdings einfach dazu schreiben und dann funktioniert dies auch dort.

Last edited by PatEle; 09.11.2013 at 01:47.
Reply With Quote
  #155  
Old 16.11.2013, 13:28
coalado's Avatar
coalado coalado is offline
JD Manager
 
Join Date: Feb 2009
Posts: 1,980
Default

  1. Open the Settings
  2. Switch to Captchas Panel
  3. Enable the DeathByCaptcha Service
  4. Enter Username and Password
  5. Click the icon at the bottom left to check your account
Will be available in the next Release.

Thanks to cryzed for providing his account for developing.

How to use:




__________________

Last edited by coalado; 16.11.2013 at 13:31.
Reply With Quote
  #156  
Old 30.11.2013, 19:35
g3power
Guest
 
Posts: n/a
Default

Thanks coalado for adding this in!

I just gave this a try, but all I get is the icon in the bottom left corner with a progress bar that keeps going back and forth. I made absolutely sure that my login/password are correct. There are special characters in my password. Could this be the problem?

The method with the jar and xml files mentioned previously has been working fine for me. It just never reports incorrectly solved captchas. Going back to that now until there is a solution.

-- next day --

After another restart yesterday it worked today! I just had a ton of bubbles on the screen with stale captchas aged 45 min +. What about adding a timeout?

Last edited by g3power; 01.12.2013 at 14:51.
Reply With Quote
  #157  
Old 02.12.2013, 00:21
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,918
Default

There should be a timeout.
Please post a screenshot and a log.

GreeZ psp
__________________
JD Supporter, Plugin Dev. & Community Manager

Erste Schritte & Tutorials || JDownloader 2 Setup Download
Spoiler:

A users' JD crashes and the first thing to ask is:
Quote:
Originally Posted by Jiaz View Post
Do you have Nero installed?
Reply With Quote
  #158  
Old 04.12.2013, 13:07
PatEle
Guest
 
Posts: n/a
Default

Thx works great (y)
Reply With Quote
  #159  
Old 06.12.2013, 02:28
bugnotme bugnotme is offline
BugMeNot Account
 
Join Date: Apr 2013
Posts: 375
Default

Hey,
awesome plugin! However, there is always a 10 second waiting time before the captcha gets sent to the DBC servers. Can this be disabled? The solving time already is long enough anyway.
Reply With Quote
  #160  
Old 15.12.2013, 03:21
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,918
Default

Should be ok now?!

GreeZ psp
__________________
JD Supporter, Plugin Dev. & Community Manager

Erste Schritte & Tutorials || JDownloader 2 Setup Download
Spoiler:

A users' JD crashes and the first thing to ask is:
Quote:
Originally Posted by Jiaz View Post
Do you have Nero installed?
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 14:59.
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.