views:

122

answers:

4

as the question asks, is there a way of finding when a page was uploaded/updated last. I've got a client who has an 'SEO' company and I've just been asked by client if i've changed the the ftp login details, i haven't but it could be the seo company, want to know if they've updated a page and uploaded it after i did....

thanks in advance....

+2  A: 

Yeah, log into the FTP and take a look at the creation date of the file.

Spencer Ruport
meaning: your ftp client should show you that value for each file/directory
VolkerK
A: 

well, have you looked at the filetime of the page? eg. login via ftp and look at the date the page was modified?

smoove666
A: 

If the server provides a "last-modified" header, that would give you the most reliable information without accessing their servers.

Gabriel Hurley
A: 

javascript:alert(document.lastModified)

does the trick... thanks for answering everyone....

Stuart Robson