Quote Originally Posted by gilby View Post
What is the "trouble" you are having with this install sql?

btw: You need to change
TYPE = MYISAM
to
ENGINE = MYISAM
The trouble is that the SQL statement is not valid for MySQL 5.5, and the server I'm running on does not have 5.6. So
Code:
`links_date_added` datetime NOT NULL default '0000-00-00 00:00:00'
returns an error (as stated above).

I will experiment either with using TIMESTAMP or a TRIGGER instead and post results.