4
I had the following problem installing Myalbum some months ago
Invalid default value for 'res_x'
I used Kurt advice and changed the following line in the sql files found in myalbum
res_x int(11) NOT NULL default '', to
res_x int(11) NOT NULL default '0', BUT found that I was still getting the same error message. then thinking that all I should do is go through all the digits - one of them had to work and found that if you change these two lines
res_x int(11) NOT NULL default '',
res_y int(11) NOT NULL default '',
TO
res_x int(11) NOT NULL default '2',
res_y int(11) NOT NULL default '2',
then MyAlbum installs perfectly.