Need command which ignore proxy authentication

Discussions and Tech Support specific to the iMacros Firefox add-on.
Forum rules
iMacros EOL - Attention!

The renewal maintenance has officially ended for Progress iMacros effective November 20, 2023 and all versions of iMacros are now considered EOL (End-of-Life). The iMacros products will no longer be supported by Progress (aside from customer license issues), and these forums will also no longer be moderated from the Progress side.

Thank you again for your business and support.

Sincerely,
The Progress Team

Before asking a question or reporting an issue:
1. Please review the list of FAQ's.
2. Use the search box (at the top of each forum page) to see if a similar problem or question has already been addressed.
3. Try searching the iMacros Wiki - it contains the complete iMacros reference as well as plenty of samples and tutorials.
4. We can respond much faster to your posts if you include the following information: CLICK HERE FOR IMPORTANT INFORMATION TO INCLUDE IN YOUR POST
Post Reply
new movies
Posts: 44
Joined: Thu May 26, 2011 8:14 pm

Need command which ignore proxy authentication

Post by new movies » Sat Jun 13, 2015 12:34 pm

Hi i am using imacros latest edition in firefox latest version.
I have got some which do this
Go to proxy website
use the first proxy
then go to my site using that proxy.
Coding is given here
http://forum.largearticle.com/index.php ... msg132#new
But some proxies ask for authentication like username\password, and after that my bot stops
Any way to ignore the authenticated proxies??
i have also searched in imacros forum
got this command
ONDIALOG POS=n BUTTON=CANCEL
i have added this still same problem coming.
Any solution for this?
chivracq
Posts: 10301
Joined: Sat Apr 13, 2013 1:07 pm
Location: Amsterdam (NL)

Re: Need command which ignore proxy authentication

Post by chivracq » Sat Jun 13, 2015 3:41 pm

new movies wrote:Hi i am using imacros latest edition in firefox latest version.
I have got some which do this
Go to proxy website
use the first proxy
then go to my site using that proxy.
Coding is given here
http://forum.largearticle.com/index.php ... msg132#new
But some proxies ask for authentication like username\password, and after that my bot stops
Any way to ignore the authenticated proxies??
i have also searched in imacros forum
got this command
ONDIALOG POS=n BUTTON=CANCEL
i have added this still same problem coming.
Any solution for this?

Code: Select all

set !errorignore YES
clear
set proxy null
set port null
set fullproxy null
URL GOTO=http://www.idcloak.com/proxylist/free-proxy-servers-list.html
TAG POS=8 TYPE=TD ATTR=* EXTRACT=TXT
set proxy {{!EXTRACT}}
SET !EXTRACT NULL
TAG POS=7 TYPE=TD ATTR=* EXTRACT=TXT
SET port {{!EXTRACT}}
SET !EXTRACT NULL
SET !EXTRACT {{proxy}}:{{port}}
proxy address={{proxy}}:{{port}}
set fullproxy {{proxy}}:{{port}}
URL GOTO=https://forum.largearticle.com
Wait seconds=20
FCIM...! :mrgreen: Pfff...!, "latest-latest" doesn't mean much, you always have 3 current "Latest" Versions, and it doesn't mean anything anymore for sbd reading the Thread in a few weeks/months/years...
=> Probably iMacros for FF v8.9.2...?, FF38...?, OS...?

The Script you refer to looks a bit cumbersome to me, with many unnecessary Statements, but OK...

For your Login Dialogs, I think it's not 'ONDIALOG' but 'ONLOGIN' that you need to use...
Or once that you've identified such a Site, record manually your Actions to dismiss the DialogBox...

There is a Bug at this moment related to 'ONLOGIN' and FF38 with iMacros for FF v8.9.2, TechSupport aware of it...
- (F)CI(M) = (Full) Config Info (Missing): iMacros + Browser + OS (+ all 3 Versions + 'Free'/'PE'/'Trial').
- FCI not mentioned: I don't even read the Qt...! (or only to catch Spam!)
- Script & URL help a lot for more "educated" Help...
new movies
Posts: 44
Joined: Thu May 26, 2011 8:14 pm

Re: Need command which ignore proxy authentication

Post by new movies » Sat Jun 13, 2015 4:44 pm

new movies wrote:
chivracq wrote:

Code: Select all

set !errorignore YES
clear
set proxy null
set port null
set fullproxy null
URL GOTO=http://www.idcloak.com/proxylist/free-proxy-servers-list.html
TAG POS=8 TYPE=TD ATTR=* EXTRACT=TXT
set proxy {{!EXTRACT}}
SET !EXTRACT NULL
TAG POS=7 TYPE=TD ATTR=* EXTRACT=TXT
SET port {{!EXTRACT}}
SET !EXTRACT NULL
SET !EXTRACT {{proxy}}:{{port}}
proxy address={{proxy}}:{{port}}
set fullproxy {{proxy}}:{{port}}
URL GOTO=https://forum.largearticle.com
Wait seconds=20
FCIM...! :mrgreen: Pfff...!, "latest-latest" doesn't mean much, you always have 3 current "Latest" Versions, and it doesn't mean anything anymore for sbd reading the Thread in a few weeks/months/years...
=> Probably iMacros for FF v8.9.2...?, FF38...?, OS...?

The Script you refer to looks a bit cumbersome to me, with many unnecessary Statements, but OK...

For your Login Dialogs, I think it's not 'ONDIALOG' but 'ONLOGIN' that you need to use...
Or once that you've identified such a Site, record manually your Actions to dismiss the DialogBox...

There is a Bug at this moment related to 'ONLOGIN' and FF38 with iMacros for FF v8.9.2, TechSupport aware of it...
thanks for the reply. I don't know what is username\password of that site is. they are just public proxies.
some run without authentication while some asks.
I simply want to ignore all proxy which asks for authentication

thanks for the reply. I don't know what is username\password of that site is. they are just public proxies.
some run without authentication while some asks.
I simply want to ignore all proxy which asks for authentication
Post Reply