Software error:
Can't execute select:
Incorrect information in file: './chimphos_chimphos/IP2Files.frm' at Modules/DataBase.pm line 63.
For help, please send mail to the webmaster ([email protected]), giving this error message and the time and date of the error.
XFileSharing Pro - download error
- PilgrimX182
- Posts: 2186
- Joined: Mar 22, 2006 1:39 pm
Seems your SQL table IP2Files damaged a lot.
Try to execute this from SQL console "REPAIR TABLE IP2Files;"
or re-create this table completely:
Try to execute this from SQL console "REPAIR TABLE IP2Files;"
or re-create this table completely:
Code: Select all
DROP TABLE IP2Files;
CREATE TABLE `IP2Files` (
`file_id` int(10) unsigned NOT NULL default '0',
`ip` int(20) unsigned NOT NULL default '0',
`usr_id` mediumint(8) unsigned NOT NULL default '0',
`owner_id` mediumint(8) unsigned NOT NULL default '0',
`size` bigint(20) unsigned NOT NULL default '0',
`money` decimal(8,4) unsigned NOT NULL default '0.0000',
`referer` varchar(255) NOT NULL default '',
`created` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
PRIMARY KEY (`file_id`,`ip`,`usr_id`),
KEY `owner` (`owner_id`),
KEY `user` (`usr_id`),
KEY `ip` (`ip`,`created`),
KEY `date` (`created`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;