Roundcube Community Forum

 

Install Help Appreciated

Started by ProwlingTiger, October 30, 2006, 05:34:07 PM

Previous topic - Next topic

ProwlingTiger

I am trying to install Roundcube. I made my database and edited the files. Now that they are uploaded, what do I do? I went to mydomain.com/roundcube/SQL/mysql.initial.sql but all I got was a page like this:

-- RoundCube Webmail initial database structure
-- Version 0.1beta2
--

-- --------------------------------------------------------

--
-- Table structure for table `cache`
--

CREATE TABLE `cache` (
 `cache_id` int(10) unsigned NOT NULL auto_increment,
 `user_id` int(10) unsigned NOT NULL default '0',
 `session_id` varchar(40) default NULL,
 `cache_key` varchar(128) NOT NULL default '',
 `created` datetime NOT NULL default '0000-00-00 00:00:00',
 `data` longtext NOT NULL,
 PRIMARY KEY (`cache_id`),
 KEY `user_id` (`user_id`),
 KEY `cache_key` (`cache_key`),
 KEY `session_id` (`session_id`)
);

-- --------------------------------------------------------

--
-- Table structure for table `contacts`
--

CREATE TABLE `contacts` (
 `contact_id` int(10) unsigned NOT NULL auto


.............. and its fairly lengthy. What do I do?

daashag

Thats the contents of the mysql.initial.sql file. You need to run that script against the database to setup you table structure.

ProwlingTiger

How exactly do I run the script?

daashag

Depends how you access your sever. How did you create the database?

ProwlingTiger

I created it through my server control panel. I guess I'm just having trouble left and right.

daashag

If you have phpmyadmin installed you can load the script through that interface.

ProwlingTiger

Ehh..I'm getting Error 1f4 now. Thankfully theres loads of topics about it :P