IMacros + DeCaptcher Tutorial. Incorporate decaptcher into imacros.

This is fantastic, only 1 question, if i open main.php with an image file called pic.jpg in the dir, (so not using iMacros yet) it displays the name thrice, Is this intentional? and if not how can i fix it please?

I'm getting this same error, does anyone know how to either make it display the captcha once then extract, or possibly take the triple captcha, store it, then paste it into a field and remove 2 of 3 captcha codes.

I can't seem to figure this out, any ideas would be helpful!

Thanks.
 
Sorry for the double post, but I figured I'd post the result in case anyone else was following this thread. Search for this line of code in the php file:

PHP:
for( $i = 0; $i < 3; $i++ )

and change it to:

PHP:
for( $i = 0; $i < 1; $i++ )

If you change the 3 to 1 it tells it to only loop and print the code once rather than 3 times.

Hope this helps!
 
Please download new api file
fixed some bux
Download DeCaptcher API file: - http://vinefirebot.com/api.zip
 
iMacro is fckin sweet! It really helped me alot.. And now I just knew that its good with decaptcher! Damn methods methods methods............! Thank you
 
Does it require to pay to process the captchas?
If so , how much per captcha??
 
Looking for some help setting this up, through remotedesktop or whatever else, I'll pay of course.
 
How to do this if you have multiple captcha requests ('coz you're running multiple iMacro threads) where I have named some as "pic1.jpg", "pic2.jpg", etc. does it automatically point which belongs to what?
 
Hi if someone can help me with this I would appreciate it greatly and am willing to pay for the right answer.

So I made a script / bot with Imacros but I am having a problem similar to what is being described in this forum post.

Basically I will load up a bunch of URL's on the same page to do commenting and when I go to load the captcha is loads correctly the first time around but when I go to load the second page in the .csv file and it goes to load the captcha it displays the first captcha and the second and looks like this

fAe#8 [EXTRACT]it2Yj

so the first captcha is fAe#8 and works fine but the second page is loads the above sequence.

I am not sure where the error lies. I dont know if its a cache issue with firefox or if its with decaptcher.com or the script, if someone knows, please drop me a line. Thanks.
 
I keep getting this error displayed even after the captcha is solved for me:


Fatal error: Maximum execution time of 60 seconds exceeded in C:\wamp\www\api\ccproto.inc.php on line 84


any idea why or how I increase the execution time to avoid this.

Thanks!
 
RuntimeError: element IMG specified by SRC:https://api-secure.recaptcha.net/image?c=* was not found, line: 12
 
Warning: file_get_contents(pic.jpg) [http://localhost/api/function.file-get-contents]: failed to open stream: No such file or directory in C:\wamp\www\api\main.php on line 40

Warning: unpack() [http://localhost/api/function.unpack]: Type C: not enough input, need 1, have 0 in C:\wamp\www\api\ccproto.inc.php on line 74
network troubles, better to call ccproto_login() again
Warning: file_get_contents(pic.jpg) [http://localhost/api/function.file-get-contents]: failed to open stream: No such file or directory in C:\wamp\www\api\main.php on line 40

Warning: unpack() [http://localhost/api/function.unpack]: Type C: not enough input, need 1, have 0 in C:\wamp\www\api\ccproto.inc.php on line 74
network troubles, better to call ccproto_login() again
Warning: file_get_contents(pic.jpg) [http://localhost/api/function.file-get-contents]: failed to open stream: No such file or directory in C:\wamp\www\api\main.php on line 40

Warning: unpack() [http://localhost/api/function.unpack]: Type C: not enough input, need 1, have 0 in C:\wamp\www\api\ccproto.inc.php on line 74
network troubles, better to call ccproto_login() again
Warning: unpack() [http://localhost/api/function.unpack]: Type C: not enough input, need 1, have 0 in C:\wamp\www\api\ccproto.inc.php on line 74
balance() FAILED
 
Isn't it possible to do this captcha thing even without the WAMP server, just using a .wsf file written in VB? I've been playing around with imacros the last few days with the scripting edition and VB (new to VB so its a bit of learning for me but I'm making progress), anyways I thought I saw some things before about how to do it with just a simple VB script file, I'm going to look into it more later
 
I keep getting this error displayed even after the captcha is solved for me:


Fatal error: Maximum execution time of 60 seconds exceeded in C:\wamp\www\api\ccproto.inc.php on line 84


any idea why or how I increase the execution time to avoid this.

Thanks!

I'm getting this too and its making it break the script.. I'm going to google it so I will post if I can find the solution to this, i believe it has something to do with the web browser's settings or, maybe more likely, in the wamp server
 
To fix the fatal error time out problem, do this:

Open the file C:\wamp\bin\php\php5.3.0\php.ini-production.ini (go to that folder and look for the 'php.ini-production' file

Open this in word, or I recommend Notepad ++ (free, google it) this way you can search for the following line:

; The maximum time in seconds to wait for a connection attempt to succeed before returning failure.
; Default: one minute
; sybct.login_timeout = one minute

- now you need to delete the ; beside sybct.login_timeout and change the "one minute" to a numeric value, such as 300 (this will set the max timeout to 300 seconds which should be long enough no matter what)... so change it so it looks like this, then save:

; The maximum time in seconds to wait for a connection attempt to succeed before returning failure.
; Default: one minute
sybct.login_timeout = 300
 
I am still getting the fatal error, I tried restarting and clearing my cache. Still no change after modifying the ini to = 300
 
Last edited:
Yeah I later realized what I posted didn't work to solve the issue.. however I did figure out how to solve it later on, I can't remember off the top of my head but I actually have to change it on my new server so when I do that and remember exactly what it was (I think it was in the apache conf file) then I will post here

I am still getting the fatal error, I tried restarting and clearing my cache. Still no change after modifying the ini to = 300
 
Hi,

When I activate the iMacro script, a new tab with a white page opens and the script stucks at "URL GO TO..."

My settings are:

// your connect information
define( 'HOST', "api.decaptcher.com" ); // YOUR HOST
define( 'PORT', 13315 ); // YOUR PORT
define( 'USERNAME', "DECAPTCHER LOGIN" ); // YOUR LOGIN
define( 'PASSWORD', "DECAPTCHER PASSWORD"); // YOUR PASSWORD

Please help:confused:

Best regards
 
Back
Top