Site icon BTNHD

Installing Feng Office Community Edition on Ubuntu Server

Advertisements

Feng Office is open source software. Allowing you to manage simple projects and clients for a small team, trying to make sure your next initiative is a success. A reader wanted us to show how to install Feng Office within a Ubuntu server. Check out the video below for the details:


If you need the commands used during the video here there are:

  1. sudo apt-get install php5-gd mysql-server apache2 php5 php5-mysql
  2. cd /var/www/html
  3. sudo wget http://downloads.sourceforge.net/project/opengoo/fengoffice/fengoffice_3.4.1/fengoffice_3.4.1.zip
  4. sudo apt-get install unzip
  5. sudo unzip fengoffice_3.4.1.zip
  6. sudo chown www-data:www-data /var/www/html/config
  7. sudo chown www-data:www-data /var/www/html/cache
  8. sudo chown www-data:www-data /var/www/html/upload
  9. sudo chown www-data:www-data /var/www/html/tmp
  10. echo “create database fengdb” | mysql -u root -p
  11. echo “create user ‘btnhd’@’localhost’ identified by ‘P@55w0rd'” | mysql -u root -p
  12. echo “grant all on fengdb.* to ‘btnhd’@’localhost'” | mysql -u root -p
  13. sudo /etc/init.d /apache2 restart

 

Exit mobile version