How to install Seo panel on Linux mint 18.03

To install Seo panel on Linuxmint 18.03
Seo Panel is an open source multi-website search engine optimization (SEO) monitoring application. Anyone can easily develop and install required plugins for their SEO panel. It is a free software released under GNU GENERAL PUBLIC LICENSE V2. In this tutorial, we will see the installation of Seo panel on Linux mint-18.3.

Features

  • Keyword Position Monitoring
  • Website SEO Auditor
  • Google and Alexa Rank Monitoring
  • Back-link Monitoring
  • Search Engine Saturation Monitoring
  • Daily Status Reports
  • Automatic Internet Directory Submission Tool

Prerequisites
Install LAMP(Apache, MariaDB, php7)
In MariaDB (create database and user and give privileges to that user )

Php installation with required following modules

add-apt-repository ppa:ondrej/php 
apt-get update 
apt-get install php7.0 php7.0-mysql php7.0-curl php7.0-json php7.0-cgi libapache2-mod-php7.0 php7.0-mcrypt php7.0-xmlrpc php7.0-gd php7.0-mbstring php7.0-common
php7.0-xmlrpc php7.0-soap  php7.0-xml php7.0-intl  php7.0-cli  php7.0-ldap php7.0-zip php7.0-readline php7.0-imap php7.0-tidy php7.0-recode php7.0-sq php7.0-intl

Installation

Download the Seo panel package by using wget command.

linuxhelp ~ # wget https://excellmedia.dl.sourceforge.net/project/seopanel/Seopanel.v3/seopanel.v.3.13.0.zip
--2018-07-01 04:42:10--  https://excellmedia.dl.sourceforge.net/project/seopanel/Seopanel.v3/seopanel.v.3.13.0.zip
Resolving excellmedia.dl.sourceforge.net (excellmedia.dl.sourceforge.net)... 202.153.32.19
Connecting to excellmedia.dl.sourceforge.net (excellmedia.dl.sourceforge.net)|202.153.32.19|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 7175309 (6.8M) [application/octet-stream]
Saving to: ‘;seopanel.v.3.13.0.zip’;

seopanel.v.3.13.0.zip     100%[==================================>]   6.84M  1.12MB/s    in 6.2s    

2018-07-01 04:42:17 (1.11 MB/s) - ‘;seopanel.v.3.13.0.zip’; saved [7175309/7175309]


Extracted this downloaded file using unzip command.

linuxhelp ~ # unzip seopanel.v.3.13.0.zip 
Archive:  seopanel.v.3.13.0.zip
   creating: seopanel/
  inflating: seopanel/moz.php        
  inflating: seopanel/keywords.php   
  inflating: seopanel/siteauditorcron.php  
  inflating: seopanel/users.php      
  inflating: seopanel/searchengine.php  
  inflating: seopanel/directories.php  
  inflating: seopanel/seo-tools.php  
.
.
.
extracting: seopanel/images/blue_img7.gif  
  inflating: seopanel/images/blue_img3.gif  
  inflating: seopanel/images/close.png  
  inflating: seopanel/images/create.gif  
  inflating: seopanel/themes-manager.php  
  inflating: seopanel/README         
  inflating: seopanel/pagespeed.php  
  inflating: seopanel/captcha-test.php  

Change ownership and permission for the SEO panel directory

linuxhelp ~ # ls
seopanel  seopanel.v.3.13.0.zip
linuxhelp ~ # chown -R www-data:www-data seopanel
linuxhelp ~ # chmod -R 775 seopanel

Move the seopanel directory into the /html location using mv command.

linuxhelp ~ # mv seopanel /var/www/html/

Configure the virtual host for seopanel in site available location.

linuxhelp ~ # cd /etc/apache2/sites-available/
linuxhelp sites-available # vim seo.conf
<VirtualHost *:80>
ServerName www.linuxhelp1.com
DocumentRoot /var/www/html/seopanel/
<Directory /var/www/html/seopanel/>
AllowOverride All
allow from all
</Directory>
</VirtualHost>

Enable the site access

linuxhelp sites-available # a2ensite seo.conf 
Enabling site seo.
To activate the new configuration, you need to run:
  service apache2 reload

Entry to the host file.

linuxhelp sites-available # vim /etc/hosts
<give your ip address >   <give your domain name>

Restart the apache2 service

linuxhelp sites-available # systemctl restart apache2.service

Now you can proceed the further installation and configuration from the browser by navigating to the following URL: http://<ipaddress or domain name


Check the installation compatibility.


Configure the database and click next step.


The installation successfully completed. Then here you can see default username and password “;m spadmin”;


Login with the Admin user credential clicks submit.

Finally, show the Administrator control panel

With this, the method to install Seo Panel on linuxmint-18.03 comes to an end

Tag :
FAQ
Q
What is the “Save” button for in topic posting?
A
This allows you to save passages to be completed and submitted at a later date. To reload a saved passage, visit the User Control Panel.
Q
How to Extract the Seo panel file?
A
run the below command:
# unzip seopanel.v.3.13.0.zip
Q
How can I Download the Seo panel package?
A
Execute the following link:
# wget https://excellmedia.dl.sourceforge.net/project/seopanel/Seopanel.v3/seopanel.v.3.13.0.zip
Q
What are all the features available in Seo panel?
A
Keyword Position Monitoring
Website SEO Auditor
Google and Alexa Rank Monitoring
Back-link Monitoring
Search Engine Saturation Monitoring
Daily Status Reports
Automatic Internet Directory Submission Tool
Q
What are the Prerequisites in Seo panel on Linux mint?
A
They are,
Install LAMP(Apache, MariaDB, php7)
In MariaDB (create database and user and give privileges to that user )