• Categories
    Category
  • Categories
    Category
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial Comments FAQ Related Articles

How to create your own social media site - Boonex Dolphin

71

To create your Own Social Media Site using Boonex Dolphin in Ubuntu

Boonex Dolphin is a free platform to develop your own Social Media Websites like Facebook, Twitter etc.,. This is an user friendly tool to create and customise social sites. It is available in Trial and Paid Versions. Installation of Boonex Dolphin is explained in this article.

To install Boonex Dolphin

Utilise the following command to download the Boonex Dolphin.

root@linuxhelp:~# wget http://get.boonex.com/Dolphin-v.7.1 -O dolphin-v.7.1.6.zip
--2016-07-26 10:00:44-- http://get.boonex.com/Dolphin-v.7.1
Resolving get.boonex.com (get.boonex.com)... 67.228.245.248
Connecting to get.boonex.com (get.boonex.com)|67.228.245.248|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://get.boonex.com/Dolphin-v.7.1 [following]
--2016-07-26 10:00:44-- https://get.boonex.com/Dolphin-v.7.1
Connecting to get.boonex.com (get.boonex.com)|67.228.245.248|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 17590630 (17M) [application/zip]
Saving to: ‘ dolphin-v.7.1.6.zip’ 

dolphin-v.7.1.6.zip 100%[==========================================================================================> ] 16.78M 519KB/s in 38s

2016-07-26 10:01:24 (455 KB/s) - ‘ dolphin-v.7.1.6.zip’  saved [17590630/17590630]
root@linuxhelp:~# ls
Desktop Documents dolphin-v.7.1.6.zip Downloads examples.desktop Music Pictures Public Templates Videos

Extract the downloaded package by using the following command.

root@linuxhelp:~# unzip dolphin-v.7.1.6.zip
Archive: dolphin-v.7.1.6.zip
creating: Dolphin-v.7.1.6/
inflating: Dolphin-v.7.1.6/.htaccess
inflating: Dolphin-v.7.1.6/about_us.php
inflating: Dolphin-v.7.1.6/activation_email.php
creating: Dolphin-v.7.1.6/administration/
inflating: Dolphin-v.7.1.6/administration/.htaccess
inflating: Dolphin-v.7.1.6/administration/admin_tools.php
.
.
.
inflating: Dolphin-v.7.1.6/xmlrpc/lib/compat/array_key_exists.php
inflating: Dolphin-v.7.1.6/xmlrpc/lib/compat/is_a.php
inflating: Dolphin-v.7.1.6/xmlrpc/lib/compat/is_callable.php
inflating: Dolphin-v.7.1.6/xmlrpc/lib/compat/is_scalar.php
inflating: Dolphin-v.7.1.6/xmlrpc/lib/compat/var_export.php
inflating: Dolphin-v.7.1.6/xmlrpc/lib/compat/version_compare.php
inflating: Dolphin-v.7.1.6/xmlrpc/lib/xmlrpc.inc
inflating: Dolphin-v.7.1.6/xmlrpc/lib/xmlrpc_wrappers.inc
inflating: Dolphin-v.7.1.6/xmlrpc/lib/xmlrpcs.inc
inflating: Dolphin-v.7.1.6/xmlrpc/r.php

Rename the extracted directory by running the following command

root@linuxhelp:~# mv Dolphin-v.7.1.6/ Dolphin
root@linuxhelp:~# ls
Desktop Documents Dolphin dolphin-v.7.1.6.zip Downloads examples.desktop Music Pictures Public Templates Videos

Move the extracted directory to your web-server' s default root directory.

root@linuxhelp:~# mv Dolphin /var/www/html

Alter the ownership for the dolphin directory located in /var/www/html/

root@linuxhelp:~# chown www-data:www-data -R /var/www/html/Dolphin

Set the permission for the file as follows.

root@linuxhelp:~# chmod 755 /var/www/html/Dolphin/flash/modules/global/app/ffmpeg.exe

Install the Java and ImageMagick package by running the following command.

root@linuxhelp:~# apt-get install openjdk-7-jdk ImageMagick -y
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
ca-certificates-java fonts-dejavu-extra imagemagick-6.q16 imagemagick-common java-common libatk-wrapper-java libatk-wrapper-java-jni libfftw3-double3 libgif4
libgnomevfs2-0 libgnomevfs2-common libice-dev libilmbase12 liblqr-1-0 libmagickcore-6.q16-2 libmagickcore-6.q16-2-extra libmagickwand-6.q16-2 libnetpbm10 libopenexr22
libpthread-stubs0-dev libsctp1 libsm-dev libx11-dev libx11-doc libxau-dev libxcb1-dev libxdmcp-dev libxt-dev lksctp-tools netpbm openjdk-7-jre openjdk-7-jre-headless
tzdata tzdata-java x11proto-core-dev x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools xtrans-dev
.
.
.
Adding debian:IdenTrust_Commercial_Root_CA_1.pem
Adding debian:Verisign_Class_4_Public_Primary_Certification_Authority_-_G3.pem
Adding debian:Trustis_FPS_Root_CA.pem
Adding debian:QuoVadis_Root_CA_2.pem
done.
Processing triggers for libc-bin (2.21-0ubuntu4) ...
Processing triggers for ca-certificates (20150426ubuntu1) ...
Updating certificates in /etc/ssl/certs...
0 added, 0 removed  done.
Running hooks in /etc/ca-certificates/update.d...
done.
done.

Create a Database and Database User for Dolphin by utilising the following command.

root@linuxhelp:~# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with   or g.
Your MySQL connection id is 2
Server version: 5.6.31-0ubuntu0.15.10.1 (Ubuntu)

Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ' help '  or ' h'  for help. Type ' c'  to clear the current input statement.

mysql>  CREATE DATABASE DolphinDB 
Query OK, 1 row affected (0.05 sec)

mysql>  GRANT ALL PRIVILEGES ON DolphinDB.* TO ' Dolphin' @' localhost'  IDENTIFIED BY ' ubuntu'  
Query OK, 0 rows affected (0.04 sec)

mysql>  FLUSH PRIVILEGES 
Query OK, 0 rows affected (0.02 sec)

mysql>  exit 
Bye

Open the php.ini configuration file.

root@linuxhelp:~# vim /etc/php5/apache2/php.ini

And edit as follows.

memory_limit = 128M
file_uploads = On
allow_url_fopen = On
allow_url_include = Off
register_globals = Off
safe_mode = Off
short_open_tag = On
magic_quotes_gpc = Off
default_charset = " UTF-8" 

Create new Apache virtual host for Boonex Dolphin by using the following command.

root@linuxhelp:~# vim /etc/apache2/sites-available/dolphin.conf

Add the following entry to the virtual host configuration file.

ServerAdmin admin@linuxhelp.com
DocumentRoot /var/www/html/Dolphin/
ServerName linuxhelp.com
ServerAlias www.linuxhelp.com

Options FollowSymLinks
AllowOverride All

ErrorLog /var/log/apache2/linuxhelp.com-error_log
CustomLog /var/log/apache2/linuxhelp.com-access_log common

Run the following command to create a soft link.

root@linuxhelp:~# ln -s /etc/apache2/sites-available/dolphin.conf /etc/apache2/sites-enabled/dolphin.conf

Restart the apache services.

root@linuxhelp:~# systemctl restart apache2

Open the browser and navigate to http://< IP_address> /Dolphin
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-open-browser
Click “ Install” to start dolphin installation.
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-install
Verify the directories inside the dolphin and then click “ Next”
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-directories
Check the paths and click “ Next”
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-paths
Enter the database information and click “ Next”
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-database
Configure the site and add the admin username and password. Then click “ Next” .
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-configure
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-cron-job
To keep the site secured, change the permission for the files displayed.
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-change-permission
Run the following command, to change the permissions.

root@linuxhelp:~# chmod a-w /var/www/html/Dolphin/inc

Open your browser and reload it. Then click “ Next”
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-permissions
Now the installation of dolphin is successfully completed. Click Proceed to Admin Panel to install modules.
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-admin-panel
Remove the dolphin folder after the installation completes.

root@linuxhelp:~# cd /var/www/html/Dolphin/ root@linuxhelp:/var/www/html/Dolphin# rm -rf install

Now open the browser and click proceed to Admin panel to install modules.
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-installed
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-install-modules
Open another tab and point to http://< IP_address> /Dolphin
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-open
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-linuxhelp
Select the module to be installed and then click “ Install” .
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-ads
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-install
To Uninstall the Module, select the module to be deleted and click Uninstall.
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-modules
To change logo , click the link in the initial steps.
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-dashboard
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-file
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-upload
Go to the main page and click reload to view your logo.
Installation-Boonex Dolphin-Ubuntu-create-Own-Social-Media-Site-logo

Tags:
jackson
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

Need for full documentation

A

Refer this link, https://www.boonex.com/trac/dolphin/wiki

Q

Link to download latest version

A

https://www.boonex.com/downloads

Q

Share the Document for more tools like this

A

You can also try Humhub, https://www.linuxhelp.com/how-to-install-humhub-in-ubuntu/

Q

Completely satisfying tutorial

A

keep following us at www.linuxhelp.com

Q

How can I manage my banners?

A

og into your Admin Panel and navigate to Tools -> Banners

On the top of the Banners Panel there is a list of your banners. Each banner in the list has the following controling buttons: Preview, Modify, and Delete.

Preview lets you see the banner as it will look on your site. Modify option lets you change the banner settings. They are stated further. Delete this deletes a banner.

Related Tutorials in How to create your own social media site - Boonex Dolphin

Related Tutorials in How to create your own social media site - Boonex Dolphin

How to install PHP ImageMagick on CentOS 7
How to install PHP ImageMagick on CentOS 7
Nov 4, 2017
How to install Apache from Source Code on CentOS 7
How to install Apache from Source Code on CentOS 7
Oct 21, 2017
How to Completely Remove and Install Apache package on CentOS 7.6
How to Completely Remove and Install Apache package on CentOS 7.6
May 23, 2019
How to Install Pligg - Content Management System
How to Install Pligg - Content Management System
Jul 26, 2016
How to install apache jmeter on ubuntu 18.04
How to install apache jmeter on ubuntu 18.04
May 19, 2018
How to Configure HAproxy Load Balancer with Keepalived in CentOS
How to Configure HAproxy Load Balancer with Keepalived in CentOS
Nov 21, 2016
How to enable the Apache server-status on centos 7
How to enable the Apache server-status on centos 7
Jan 28, 2019
How to Create Ansible Playbook to Install Apache Server
How to Create Ansible Playbook to Install Apache Server
May 12, 2021

Related Forums in How to create your own social media site - Boonex Dolphin

Related Forums in How to create your own social media site - Boonex Dolphin

CentOS
connor class=
How To Completely Remove Apache package On CentOS 7.6
May 14, 2019
Ubuntu
matthew class=
Failed to enable unit: Refusing to operate on linked unit file sshd.service
Apr 15, 2019
Apache
isaac class=
How to disable apache welcome page on Ubuntu
Dec 15, 2018
Apache tomcat
AadrikaAnshu class=
Cannot find ./catalina.sh The file is absent or does not have execute permission This file is needed to run this program
Jun 17, 2019
Apache
rebeccajazz class=
Apache2 : mod_proxy in opensuse
Jan 3, 2018
Apache
elijah class=
What is the difference between httpd and apache
Feb 18, 2017
Apache
logan class=
How to install Apache GUI
Feb 24, 2017
CentOS
ceriaimmaculate class=
Imagemagick installation on centos 7
Oct 28, 2017

Related News in How to create your own social media site - Boonex Dolphin

Related News in How to create your own social media site - Boonex Dolphin

Attackers take advantage of Apache Struts vulnerabilities
Attackers take advantage of Apache Struts vulnerabilities
Mar 17, 2017
An Apache Web Server Bug That Grants Root Access on  Shared Web Hosts
An Apache Web Server Bug That Grants Root Access on Shared Web Hosts
Apr 10, 2019
Yahoo banishes ImageMagick software after it was found vulnerable to data exfiltration
Yahoo banishes ImageMagick software after it was found vulnerable to data exfiltration
May 24, 2017
Red Hat the New Steward of OpenJDK 8 and OpenJDK 11
Red Hat the New Steward of OpenJDK 8 and OpenJDK 11
Apr 25, 2019
Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help David Lopez Guillen ?
Ayuda urgente instale SSL para servidor Opensuse y ahora no funciona tengo servicio web

hola segui este tutorial para tener un certificado ssl y ahora no se ve mi app en la red, espero alguien pueda ayudarme, tengo M9oodle en3.5 en un servidor open suse y ahora no funciona por favor ayuda.

https://www.linuxhelp.com/how-to-create-ssl-certificate-in-opensuse

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.