Install PHP Common Libraries on Ubuntu

I'm using LAMP Stack on my Ubuntu desktop for my development environment. So i'm writing this article so i know what to install when i move or change my laptop. There are some PHP libraries that i must have to develop application using WordPress, Laravel, Codeigniter, PHP Slim Framework, etc.For fresh install Ubuntu i need to install PHP common libraries i need with this command: … Read more...

Fix PHPMyAdmin Error When Using suPHP on Ubuntu 14.04

Since i move to Ubuntu recently, i need to setup all the development environment. My stack is using Nginx with Apache + PHP as the webserver and use MySQL as database. Since i don't like to useas the home directory for the apache, i moved it to my /home/ivan/public_html folder. And to make it easier, i need to change PHP to run as my user role. For that i install suPHP module on Apache, and then chmod 755 all the php files. Everything is working correctly, except PHPMyAdmin, since … Read more...

[HowTo] Install suPHP On Ubuntu

suPHP is a tool for executing PHP scripts with the permissions of their owners. Along with the Apache module, mod _suphp it allow Apache to process php with the user permission. This will improve the security. With suPHP you can track which users use the most resources. Follow the steps below to install suPHP on Ubuntu:Open your terminal with root permission Type this command:Wait until it is finished, and you are done.See how it in … Read more...