The forum is here for legacy reasons. No new posts will be created. User registration is disabled! If you have any questions, please email us or check https://www.adultscriptpro.com for more details!
You are not logged in.
Pages: 1
I've tried to upload several vids and I'm getting this error.
Query: INSERT INTO video_upload SET video_id = 30451, ext = 'wmv', size = 10406094
Error Message: Table 'admin_test.video_upload' doesn't exist
Error Number: 1146
Last edited by Eri (2011-10-13 15:24:58)
Offline
You should have that table. It was added in RC3. Fix for phpmyadmin/mysql:
CREATE TABLE `video_upload` (
`video_id` int(11) unsigned NOT NULL DEFAULT '0',
`size` int(11) unsigned NOT NULL DEFAULT '0',
`ext` varchar(4) NOT NULL DEFAULT '',
PRIMARY KEY (`video_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Adult Scripts: Adult Script Pro - Adult Search Script
Adult Advertising/Traffic: Plug Rush - EXOClick - PopAds
Offline
Pages: 1