PDA

View Full Version : Date of site creation


bwragg
30th November 2006, 02:11
I'm trying to figure out the creation date some websites. Is this held in a field in one of the mysql tables? maybe a timestamp somewhere? I've looked through each table and I can't seem to find anything.

Cheers,

Benjamin

till
30th November 2006, 09:59
There is no such timestamp in the database. You might try to find out the creation date in the filesystem by executing:

ls -la /var/www

You will get a list of the site folders and their symlinks with the date. I dont think the folder and symlink date changes after the creation.

Hans
30th November 2006, 14:01
Or - if you use webalizer - look within your stats folder to see when the first stats are created.

The site was created maximum 24 hours before the first site was created.

bwragg
30th November 2006, 23:41
thanks hans and till. That should be good enough for what I need.

Cheers,

Benjamin