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

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
edyyus
Posts: 48
Joined: 16 May 2014 11:14

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

Post 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?
To see the attached files, you need to log into the forum.

TheQwerty
Posts: 4373
Joined: 03 Aug 2007 22:30

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

Post 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.

highend
Posts: 14996
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

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

Post 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)
One of my scripts helped you out? Please donate via Paypal

edyyus
Posts: 48
Joined: 16 May 2014 11:14

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

Post 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.

Post Reply