I tried it from the command line and got this error
ERROR 1005 (HY000): Can't create table '.\db_special#sql-224_157.frm' (errno: 121)
I did a mysql dump so you could create the tables and try it yourself.
-- phpMyAdmin SQL Dump
-- version 2.10.3
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Sep 28, 2008 at 04:02 PM
-- Server version: 5.0.45
-- PHP Version: 5.2.3
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Database: `db_special`
--
-- --------------------------------------------------------
--
-- Table structure for table `sites`
--
DROP TABLE IF EXISTS `sites`;
CREATE TABLE IF NOT EXISTS `sites` (
`id` int(10) unsigned NOT NULL auto_increment,
`title` varchar(100) NOT NULL,
`description` longtext,
`url` varchar(150) default NULL,
`status` tinyint(3) unsigned NOT NULL,
`pubdate` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
`updated` timestamp NOT NULL default '0000-00-00 00:00:00',
`subtitle` varchar(100) default NULL,
`sitetype_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `sitetype_id` (`sitetype_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `sites`
--
-- --------------------------------------------------------
--
-- Table structure for table `sites_hosts`
--
DROP TABLE IF EXISTS `sites_hosts`;
CREATE TABLE IF NOT EXISTS `sites_hosts` (
`id` int(10) unsigned NOT NULL auto_increment,
`site_id` int(10) unsigned NOT NULL,
`host_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `host_id` (`host_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `sites_hosts`
--
-- --------------------------------------------------------
--
-- Table structure for table `hosts`
--
DROP TABLE IF EXISTS `hosts`;
CREATE TABLE IF NOT EXISTS `hosts` (
`id` int(10) unsigned NOT NULL auto_increment,
`title` varchar(100) NOT NULL,
`status` tinyint(3) unsigned NOT NULL,
`pubdate` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `sites`
--
ALTER TABLE `sites`
ADD CONSTRAINT `sitetype_id` FOREIGN KEY (`sitetype_id`) REFERENCES `sitetypes` (`id`);
--
-- Constraints for table `sites_hosts`
--
ALTER TABLE `sites_hosts`
ADD CONSTRAINT `host_id` FOREIGN KEY (`host_id`) REFERENCES `hosts` (`id`);