Yes, time-out error definitely. Upload the SQL file and create a simple PHP script to import it instead.
(Untested)
Good luck.
(Untested)
Code Select
<?
mysql_connect("mysql5.freepgs.com","username","password");
mysql_select_db("database");
$fp=fopen("filename.sql","r");
$sql="";
while(!feof($fp)){
$sql.=fgets($fp);
}
mysql_query($sql);
?>
Good luck.