Ask a Question related to PHP Development, Design and Development.
-
will taubin #1
detect change of remote page
hi everyone,
i have some links on my site, i need to be absolutely sure that the
html has not been modified, even one character. i would rather not
rely on http headers, just the html (so it is not dependant on the
webserver). should i make a database to actually mirror the page, and
then check against my copy? any better ideas? :)
thanks
will taubin Guest
-
How to use event to detect the change of a arrayvariable?
I have a main application that includes a lot of sub components. the main app mxml file import a public class that includes an array variable. Each... -
Detect current page using JS
Hi all, I would've figured this out myself, but I'm stumped on this.... why doesnt this work? <script type="text/javascript">... -
Detect change to data in an ubound datagrid
Hi Sorry if this is a bit obvious but I'm new to the datagrid ... :@) I have an unbound grid which contains a hidden column holding the primary... -
Detect leaving page
Looking for a method to detect when the user presses the "Back" button and also Alt+> Thanks for any insight! Kevin -
Detect change in property within control
Is it possble to have a property like so: <Bindable(True), Category("Appearance"), Description("The help image associated with this control."),... -
Geoff Berrow #2
Re: detect change of remote page
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I noticed that Message-ID:
<aa5d813d.0311201518.212dda20@posting.google.com > from will taubin
contained the following:
Don't know how you would do it, but a hash of the page may be>i have some links on my site, i need to be absolutely sure that the
>html has not been modified, even one character. i would rather not
>rely on http headers, just the html (so it is not dependant on the
>webserver). should i make a database to actually mirror the page,
>and then check against my copy? any better ideas? :)
sufficient? A bit like PGP sig?
-----BEGIN PGP SIGNATURE-----
Version: PGPfreeware 6.5.8 for non-commercial use <http://www.pgp.com>
iQA/AwUBP71VCmUsPVsZRo4gEQK+cwCfUoGD8tF8SKmidE1E6mjRtO 0cJJ4An2Vd
x0Gv5k/DriaFBcxM7563FePJ
=2nYp
-----END PGP SIGNATURE-----
--
Geoff Berrow (put thecat out to email)
It's only Usenet, no one dies.
My opinions, not the committee's, mine.
Simple RFDs [url]http://www.ckdog.co.uk/rfdmaker/[/url]
Geoff Berrow Guest
-
André Nęss #3
Re: detect change of remote page
will taubin:
Checksum the file, and store the checksum locally. Then you can verify the> hi everyone,
>
> i have some links on my site, i need to be absolutely sure that the
> html has not been modified, even one character. i would rather not
> rely on http headers, just the html (so it is not dependant on the
> webserver). should i make a database to actually mirror the page, and
> then check against my copy? any better ideas? :)
file against this checksum when you access it. md5() is ok for this
purpose.
André Nęss
André Nęss Guest
-
will taubin #4
Re: detect change of remote page
André Nęss <andrena.spamreallysucks@ifi.uio.no> wrote in message news:<bpjkk3$h8q$1@maud.ifi.uio.no>...
thanks, but if i generate a checksum, then later download the file> will taubin:
>>> > hi everyone,
> >
> > i have some links on my site, i need to be absolutely sure that the
> > html has not been modified, even one character. i would rather not
> > rely on http headers, just the html (so it is not dependant on the
> > webserver). should i make a database to actually mirror the page, and
> > then check against my copy? any better ideas? :)
> Checksum the file, and store the checksum locally. Then you can verify the
> file against this checksum when you access it. md5() is ok for this
> purpose.
>
> André Nęss
again to compare the checksums, will the timestamps affect the new
checksum? or is it generated only based on the content of the file?
will taubin Guest
-
Irnis Haliullin #5
Re: detect change of remote page
> Checksum the file, and store the checksum locally. Then you can verify the
If you are using Windows, the Advanced CheckSum Verifier from> file against this checksum when you access it. md5() is ok for this
> purpose.
>
[url]http://www.irnis.net[/url] is just for you :)
Irnis Haliullin Guest
-
André Nęss #6
Re: detect change of remote page
will taubin:
It's generated based on whatever you input, so as long as you only input the> André Nęss <andrena.spamreallysucks@ifi.uio.no> wrote in message
> news:<bpjkk3$h8q$1@maud.ifi.uio.no>...>>> will taubin:
>>>>>> > hi everyone,
>> >
>> > i have some links on my site, i need to be absolutely sure that the
>> > html has not been modified, even one character. i would rather not
>> > rely on http headers, just the html (so it is not dependant on the
>> > webserver). should i make a database to actually mirror the page, and
>> > then check against my copy? any better ideas? :)
>> Checksum the file, and store the checksum locally. Then you can verify
>> the file against this checksum when you access it. md5() is ok for this
>> purpose.
>>
>> André Nęss
> thanks, but if i generate a checksum, then later download the file
> again to compare the checksums, will the timestamps affect the new
> checksum? or is it generated only based on the content of the file?
contents, and this doesn't change, you're ok.
André Nęss
André Nęss Guest



Reply With Quote

