Installation of ossn on ubuntu 14.04

opensource-socialnetwork is a powerful open source social network. Use our cms to build your social network.

Install LAMP stack .

Download the latest file form

https://www.opensource-socialnetwork.org/download

mv ossn.* /var/www/ossn

chown -R www-data:www-data /var/www/ossn_data
chown -R www-data:www-data /var/www/ossn

chmod 777 /var/www/ossn
chmod 777 /var/www/ossn_data (you can change except inside ossn inside directory)
 

enable it the rewrite module, run “apache2 enable module rewrite”:

sudo a2enmod rewrite

You need to restart the web server to apply the changes:

sudo service apache2 restart

/etc/apache2/apache2.conf 

change to
AllowOverride none to All (apply to all)

<Directory /var/www/>
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
</Directory>

CREATE DATABASE ossn;
CREATE USER ossnuser IDENTIFIED BY 'ossnpassword';
GRANT ALL ON ossn.* TO ossnuser;

 

ossn

 

ossn loggedin

 

 

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s