Author Topic: Install Help Appreciated  (Read 4148 times)

Offline ProwlingTiger

  • Jr. Member
  • **
  • Posts: 16
Install Help Appreciated
« on: October 30, 2006, 05:34:07 PM »
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?

Offline daashag

  • Full Member
  • ***
  • Posts: 198
Re: Install Help Appreciated
« Reply #1 on: October 30, 2006, 05:54:31 PM »
Thats the contents of the mysql.initial.sql file. You need to run that script against the database to setup you table structure.

Offline ProwlingTiger

  • Jr. Member
  • **
  • Posts: 16
Re: Install Help Appreciated
« Reply #2 on: October 30, 2006, 10:29:52 PM »
How exactly do I run the script?

Offline daashag

  • Full Member
  • ***
  • Posts: 198
Re: Install Help Appreciated
« Reply #3 on: October 30, 2006, 10:57:41 PM »
Depends how you access your sever. How did you create the database?

Offline ProwlingTiger

  • Jr. Member
  • **
  • Posts: 16
Re: Install Help Appreciated
« Reply #4 on: October 30, 2006, 11:04:20 PM »
I created it through my server control panel. I guess I'm just having trouble left and right.

Offline daashag

  • Full Member
  • ***
  • Posts: 198
Re: Install Help Appreciated
« Reply #5 on: October 31, 2006, 09:41:08 AM »
If you have phpmyadmin installed you can load the script through that interface.

Offline ProwlingTiger

  • Jr. Member
  • **
  • Posts: 16
Re: Install Help Appreciated
« Reply #6 on: October 31, 2006, 04:26:49 PM »
Ehh..I'm getting Error 1f4 now. Thankfully theres loads of topics about it :P