Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
flasheister #1
CFHTTP to save a .gif snapshot of webpage?
I want to check URLs people enter in thier account automatically. So I want to
take the link, automatically go to each link and save a picture of the front
page (say the top 400x400 pixels) so I can come back later and review them to
be sure the website is active and has valid content.
Anyone have any good methods for doing this OR another way to automatically
check to see if a URL entered is a valid one with a working website?
flasheister Guest
-
CFhttp to download and save image
This shows the image as expected : <img src='http://www.comune.pesaro.ps.it<cfoutput>#img#</cfoutput>' The following does not save the same image... -
Save as Webpage error?
I am no longer getting the 'Save as Webpage' choice under file. Now all I see is 'Export as Web Page'. I am working in a .htm file. What do I need... -
How to save excel from webpage?
I have a webpage containing a link to a spreadsheet <a href="somefilename.xls">click</a> When the link is clicked a spreadsheet opens in internet... -
Can I save snapshot with image ?
You cannot do that. The simplest thing to do is save periodic copies of your image. You can then easily go back to an earlier variant. -
FP2K Save as Webpage question
File/New/Publication Type/Word Document Import multi-page Word XP doc Get a series of pages linked to each other Save as web page and you... -
serat #2
Re: CFHTTP to save a .gif snapshot of webpage?
That's a bit of overkill, and you'd have to build an application to do that
since CFHTTP wont do all that for you.
It sounds like you just want to 1) validate the URL is good, and 2) check the
content for something that should be there, as a kind of positive control.
Use CFHTTP method=head to get just the headers to check for good status code
(200 OK).
Use CFHTTP method=get and then parse the CFHTTP filecontent for some keywords
that should appear for every request. If the keywords don't appear then the
content has changed.
serat Guest



Reply With Quote

