Page 1 of 1

Need Help, How to Download(Save Page) Like Firefox SavePage

Posted: 17 Jun 2016 18:11
by edyyus
How to Donwnload(Save whole Page) with xyplorer script Like Firefox SavePage Format?
Xyplorer.png
Xyplorer2.png
Sample Save whole Page with Script
download "http://www.xyplorer.com/xyfc/viewtopic.php?f=7&t=13582";
And
$Page=readurl("http://www.xyplorer.com/xyfc/viewtopic. ... 582",0,0,2);
WriteFile("index.html",$Page,"o");

Firefox1.png
Firefox2.png
Sample Save whole Page using firefox

Any sugestion to using xyplorer script to save Save whole Page by url like firefox or scrapbook(extentions) format?

Re: Need Help, How to Download(Save Page) Like Firefox SaveP

Posted: 17 Jun 2016 19:34
by TheQwerty
To do it with just XYplorer script you'd have to download the page and then parse it and download every referenced resource as well - until there are no missing resources.

Instead, I recommend looking for a third-party tool (like curl or wget) which you could call from a script.

Re: Need Help, How to Download(Save Page) Like Firefox SaveP

Posted: 20 Jun 2016 15:37
by highend
Or (if you have IE installed):
http://stackoverflow.com/questions/9953 ... -mhtm-file

Not a multitude of folders for external content but everything in a single file (an .mht file)

Re: Need Help, How to Download(Save Page) Like Firefox SaveP

Posted: 20 Jun 2016 16:52
by edyyus
TheQwerty wrote:To do it with just XYplorer script you'd have to download the page and then parse it and download every referenced resource as well - until there are no missing resources.

Instead, I recommend looking for a third-party tool (like curl or wget) which you could call from a script.
Thanks TheQwerty, i try using it,
highend wrote:Or (if you have IE installed):
http://stackoverflow.com/questions/9953 ... -mhtm-file

Not a multitude of folders for external content but everything in a single file (an .mht file)
Thanks highend, For Info.