Hi, Im having a few problems, when i run my download installer I dont receive a dialog box with the download progress. However I did with the older version in the quote below. The latest one does download the file but totally silent.
My line reads as follows
InetLoad::load ${PDFURL} $PROGRAMDIRECTORY\CoolPDF.exe
As I said, it worked fine with older versions but the latest just doesnt show any progress.
Thanks
Originally posted by Takhir
It�s not easy to debug program if you cannot touch the problem with your own hands J
I made one minor improvement for error 407 (proxy authorization), might be good to test it. But the main question is in explicit proxy authorization if IE registry parameters (already used) are not enough for connection. This require user_name and password. I see 2 simple ways to resolve the problem, silent InternetSetOption(INTERNET_OPTION_PROXY_PASSWORD + INTERNET_OPTION_PROXY_USERNAME) if these parameters presents in the plug-in call (something like �load /PASSWD=passwd ��) or popup dialog (InternetErrorDlg for example), where user can enter name and passwd for proxy auth (not works in the silent mode). Both variants may present in program, of course. First is good for corporate network distribution, second � for Inet downloads. If this is what you need � I�ll be in office in Monday and can make changes next week.
Also few words about http server authorization (error 401) � it is possible to define name and password in the URL, program extracts both parameters (if any. I did this for FTP if anonymous user is not accepted).