OpenGOO
From Proxmox VE
Contents |
Appliance Details
| Package: | opengoo |
| Version: | 1.6.2-1 |
| Certified: | no |
| Section: | www |
| Location: | http://www.sacollege.net/files/appliances/debian-5.0-opengoo_1.6.2-1_i386.tar.gz |
| Maintainer: | Ap.Muthu |
| OS: | debian-5.0 |
Introduction
OpenGOO - Features
OpenGOO is now Feng Office. The detailed list of Features and Benefits are summarised below:
Feng Office allows you to access all your important information anytime, no matter where you are. All you need is a computer with Internet connection. All existing information of your organization will be accessible in an integrated way and only one click away. Get an overview of the outstanding, completed and current tasks, the last conversations, e-mails and documents, schedules and activities. Take advantage of the power of linked information. Access all the conversations maintained with a contact, as well as the related tasks, e-mails, meetings, documents, comments, and more. Simplify tasks. Keep record of working hours. Analyze time and resources devoted to a client, service or project. Make sure tasks are assigned and fulfilled on time and on budget. Share documents having always the latest version, previous revisions and latest comments. Have a space to collaborate and share projects, documents, messages, schedules, tasks and contacts within the company or amongst companies, both with your partners and your clients. With Feng Office your information is protected against robbery, hard disk failures, fire or any PC malfunction. In case you lose your computer, simply access Feng Office from a new one, and all your info will be there just as you last left it. Make sure that your confidential info stays confidential by creating users with different access privileges to different workspaces, making sure each person knows only what he/she needs to know.
Virtual Appliances can be downloaded directly via the Central Web-based Management.
Recommended settings for Proxmox VE
- Memory (MB): 512
- Swap (MB): 512
- Hard disk (GB): 8
Appliance specific settings
- Mysql root password: admin
Please change this for security reason:
- via command line after the first boot:
mysqladmin -u root -p password yournewpasswordhere
- Set the server timezone via command line:
dpkg-reconfigure tzdata
- Restart VM
OpenGOO settings
- Main software packages: Debian Lenny, Feng Office v1.6.2, MySQL 5, Postfix, Apache2, PHP5, imap, zip, unzip, cURL
First steps
Start the VM and open a VNC console and install the latest security updates.
apt-get update apt-get dist-upgrade
Now, connect to the OpenGOO web installer http://youripaddress/ and follow the instructions. It should actually connect you to http://youripaddress/public/install After installation, the above install folder need not be removed as the system is smart enough to realise that an installation already exists.
LAN and WAN Access Using Different URLs
Replace the ROOT_URL define in /var/www/fengoffice/config.php with the following:-
// =============
function Get_Base_From_File($file) {
$find = DIRECTORY_SEPARATOR;
$after_find = substr(strrchr($file, $find), 1);
$strlen_str = strlen($after_find);
$result = substr($file, 0, -$strlen_str-1);
return $result;
}
$file = $_SERVER['SCRIPT_URI'];
$base = Get_Base_From_File($file);
define('ROOT_URL', $base);
// =============
Now from the LAN you can access like http://www.lanlocal.com and from the WAN you can access it like http://myoffice.dyndns.com:6000
Building OpenGOO
Download the following:
- Feng Office v1.6.2
- dab.conf, opengoo.conf and Makefile for building the OpenGOO template. This build file (Makefile) set has imap, zip, unzip and php-curl included.
- Latest build files for templates maintained by Ap.Muthu
BugFix for OpenGOO v1.6.2
The bugfix in the OpenGOO Forum Posting can be rectified by editing the file:
/var/www/fengoffice/environment/classes/dataaccess/DataObject.class.php
replacing line 1115
if(is_int($value) || is_float($column)) {
with
if(is_int($value) || is_float($value)) {
