Looks like the estructure is the same in my images table and the sql file from original installation:
This is what phpmyadmin exports as estructure from my images table:
Code: Select all
CREATE TABLE `vtres_images` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(255) NOT NULL default '',
`extension` varchar(5) NOT NULL default '',
`mime` varchar(255) NOT NULL default '',
`size` int(11) NOT NULL default '0',
`dimensions_width` int(11) NOT NULL default '0',
`dimensions_height` int(11) NOT NULL default '0',
`date` int(11) NOT NULL default '0',
`thumbnail_name` varchar(255) NOT NULL default '',
`authorid` int(11) default '0',
`path` text,
`hotlink` int(1) default NULL,
PRIMARY KEY (`id`),
KEY `imagesauthorid_idx` (`authorid`),
FULLTEXT KEY `pathkey_idx` (`path`)
) TYPE=MyISAM ;
Really is not a big problem... i thought that i was able to import only images... but it would be good if i could work with any kind of file.
I forgot... i use 0.8beta5... i know i must update... but i edited several files (function_entries, plugin_internal...) and i am lazy to update these files as well
Thanks!