View Single Post
  #3 (permalink)  
Old 06-28-09, 03:50 AM
Hsekhar Hsekhar is offline
Newbie Coder
 
Join Date: Feb 2009
Posts: 20
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by wirehopper View Post
If it is an HTML site - you could use find, like so:

find $HOME/public_html -mtime +60 | mail -s "Files older than 60 days" email@domain.com

Details on different find options: Find files by access, modification date under Linux or UNIX

If you're using a CMS, I'd recommend creating some sort of system to do the same thing with the content from the database.

A simple email with links to page the organization is reponsible for should work.

You could also get more sophisticated and issue the emails directly to the people that posted the content.

Good luck.
Hi, Thanks for the advice, I wonder if you can tell me if it works with Wordpress sites or if I will have to learn to code wordpress sites to be able to code the code.
Reply With Quote