Author Topic: 0.2-beta on FreeBSD-7.0  (Read 4008 times)

Offline Oloremo

  • Newbie
  • *
  • Posts: 2
0.2-beta on FreeBSD-7.0
« on: September 22, 2008, 06:38:34 AM »
Hello.

Im try to install 0.2 beta on FreeBSD-7.0 host.
Im run  /installer/ from apache2.2 and all seems fine.
Check environment say - all ok.

Im push next button - and see... a blank screen on Create config section.

What does it mean and how can im fix it?

Offline Oloremo

  • Newbie
  • *
  • Posts: 2
0.2-beta on FreeBSD-7.0
« Reply #1 on: September 25, 2008, 11:20:00 AM »
Anyone can help?

Offline monkeybrains

  • Newbie
  • *
  • Posts: 1
Works great on FreeBSD for me
« Reply #2 on: September 28, 2008, 05:33:51 PM »
I just installed roundcube for the first time (tired of squirrelmail  :) and it was a snap on FreeBSD.  This is how I did it (worked on the first try) (I am using Mysql5):


 
Code: [Select]
# Install software
 cd /usr/ports/mail/roundcube/ && make install
 # setup data base
 echo "CREATE DATABASE roundcube" | mysql
 cd /usr/local/www/roundcube/SQL/
 mysql < mysql5.initial.sql
 # setup database user
 mysql_setpermission
 # Edit DB username into roundcube config file
 vim /usr/local/www/roundcube/config/db.inc.php
 # setup the system to use localhost for my imap server... edit mail.inc.php
 ### $rcmail_config['default_host'] = 'localhost';
 ### $rcmail_config['enable_caching'] = FALSE;
 vim /usr/local/www/roundcube/config/mail.inc.php

I restarted Apache for good luck and it Worked Just Fine. Then I decide to see how easy it was to install a skin.  (It shows up in the preferences page so users can pick it once they log in).

Code: [Select]
# change into the skins folder
cd /usr/local/www/roundcube/skins
# download the mvinsion2 skin
fetch -o mvinsion2.zip "http://www.roundcubeforum.net/downloads.php?do=fileid=2&act=down"
unzip mvinsion2.zip
# person who made the mvinsion2.zip left some dirty laundry in their zip...
rm -rf __MACOSX/

Phew, I've been a roundcube user for 10 hours now.  :D  Let's see if there is a plugin to change user passwords in my backend MySQL (stored in a different table than roundcube stuff).
« Last Edit: September 28, 2008, 05:36:30 PM by monkeybrains »