SEO Panel

SEO Panel is a Open Source server software which helps you monitor your SEO ranking.

How to test SEO Panel?

https://www.seopanel.org/demo/

How to install SEO Panel?

In order to get it just download it from https://www.seopanel.org/download/.

Once the file downloaded, just move it on your server, in our case, we are going to use our local server, so:

sudo mv seopanel.v.4.3.0.zip /var/www/html/

then we unzip it:

sudo unzip seopanel.v.4.3.0.zip

This will automatically create a seopanel folder.

At this step if you access to http://localhost/seopanel/ within your browser, you will see that seopanel need some permissions in order to run so perform:

sudo chmod 666 config/sp-config.php

and

sudo chmod -R 777 tmp/

in order to proceed. Once done you can click on proceed to the next step.

Ok, so now seopanel is asking you to connect to a database, so you need to create one in order to proceed. For the sake of this tutorial we are considering that you already have a MySQL server running:

sudo mysql

then:

Create database seopanel;

then:

GRANT ALL PRIVILEGES ON seopanel.* TO 'youruser'@'localhost';

then:

exit

Ok so now you can enter the credentials of your database within http://localhost/seopanel/install/

This is it, seopanel is now installed, as a warning recommendation they are asking you to:

  • Please change permission of config file config/sp-config.php to avoid security issues.
  • Please remove installation directory install to avoid security issues.

But do so after the installation is finished:

sudo rm -r install/

to remove the install directory.

and:

sudo chmod 600 config/sp-config.php

for the config file.




Last modified: Thursday, 6 August 2020, 2:28 PM