Installing FrogCMS on Ubuntu 12.04



"Frog CMS is an open source content management system originally developed by Philippe Archambault. The design decision taken from its start was to use PHP5 as the language for the software, along with a MySQL database backend. It is a port of the Ruby on Rails CMS known as Radiant, although Frog has begun to take its own development direction." -- FrogCMS Wiki Article

Frog CMS is known for its simplicity, this is a guide on how to install Frog on Ubuntu 12.04


Before we start, get a copy of the installer package from this link, choose either .zip or .tar.gz package, it doesn't matter.



When it's finished downloading, extract it to your home folder.


Also, it is advisable that we have installed phpmyadmin (and LAMP) before we start installing FrogCMS


1. Press Ctrl + Alt + T , to open the CLI.

2. Type sudo su to access root / admin privileges, and input your password.

3. Type cd / and cd /var/www 

4. Type mkdir frog

5. Go back to your home directory (In my case, I just exited root, and re-entered it).

6. Type mv frog_095/* /var/www/frog

7. Now go to phpmyadmin and create a database for frog, name it frog

8. Go back to your terminal and type cd /var/www/frog

9. Edit the write permissions for config.php and /public/ by typing chmod 777 config.php and chmod 777 public respectively

10. Go to your browser and type localhost/frog this screen should appear. Input your database password, and press the Install now button.

11. This screen would appear.

12. Go back to your terminal and type chmod 444 config.php to set its permissions to read only.

13. Delete the install folder by typing rm -rf install

14. Go back to your browser and click on the login page link (take note of your password).

15. You may now log-in to FrogCMS.

16. Don't forget to change your password. (Go to the Admistrator link - beside the log out link, to do this).

At this point, you have successfully installed FrogCMS on Ubuntu 12.04