I can see that your problem is most likely that your host is timing out during the execution of the restore. We can fix that by breaking up the restore. The .sql file can be broken up into sections uploaded that way. If you are unfamiliar with the backup/restore process, it is in essence a list of SQL commands.
Each Table is broken down into it's own set of commands. The creation of the table and then the adding of the records. For example, below here is a restore of the "RayChatMembershipsSettings" table for my current install. By breaking up the .sql file into multiple, easily manageable files, you can use the import feature to reconstruct your datase.
Hope this helps.
Regards,
Bob
--------------------------Sample SQL restore--------------------
-- --------------------------------------------------------
--
-- Table structure for table `RayChatMembershipsSettings`
--
DROP TABLE IF EXISTS `RayChatMembershipsSettings`;
CREATE TABLE IF NOT EXISTS `RayChatMembershipsSettings` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`Name` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`Caption` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`Type` enum('boolean','number','custom') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'boolean',
`Default` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`Range` int(3) NOT NULL DEFAULT '3',
`Error` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
UNIQUE KEY `Name` (`Name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=13 ;
--
-- Dumping data for table `RayChatMembershipsSettings`
--
INSERT INTO `RayChatMembershipsSettings` (`ID`, `Name`, `Caption`, `Type`, `Default`, `Range`, `Error`) VALUES
(1, 'RoomCreate', 'New Rooms Creating:', 'boolean', 'true', 1, 'RayzRoomCreate'),
(2, 'PrivateRoomCreate', 'Private Rooms Creating:', 'boolean', 'true', 1, 'RayzPrivateRoomCreate'),
(3, 'AVCasting', 'Audio/Video Casting:', 'boolean', 'true', 1, 'RayzAVCasting'),
(4, 'AVPlaying', 'Audio/Video Playing (for Messenger):', 'boolean', 'true', 1, 'RayzAVPlaying'),
(5, 'AVLargeWindow', 'Enable Large Video Window:', 'boolean', 'true', 1, 'RayzAVLargeWindow'),
(6, 'FileSend', 'Files Sending:', 'boolean', 'true', 1, 'RayzFileSend'),
(7, 'WhisperMessages', 'Whispering Messages:', 'boolean', 'true', 1, 'RayzWhisperMessages'),
(8, 'DirectMessages', 'Addressed Messages:', 'boolean', 'true', 1, 'RayzDirectMessages'),
(9, 'RoomsNumber', 'Maximum Rooms Number:', 'number', '100', 3, 'RayzRoomsNumber'),
(10, 'ChatsNumber', 'Maximum Private Chats Number:', 'number', '100', 3, 'RayzChatsNumber'),
(11, 'AVWindowsNumber', 'Maximum Video Windows Number:', 'number', '100', 3, 'RayzAVWindowsNumber'),
(12, 'RestrictedRooms', 'Restricted Rooms:', 'custom', '', 1, 'RayzRestrictedRooms');
-- --------------------------------------------------------