Categories
How-To Software Technical

The mcrypt extension is missing. Please check your PHP configuration

After a quick LAMP install, I decided to install PhpMyAdmin. Logging into I noticed a warring message that read: The mcrypt extension is missing. Please check your PHP configuration To resolve this I attempted the following: Elevated my console to root (sudo -i) apt-get install mcrypt apt-get install php5-mcrypt (no need because the previous command […]

Categories
News Technical

Cloud Integrated Development Environment

With so many things in the cloud today why not an IDE that enabled you the web and mobile developer alike to work together. Remote teams can collaborate anytime, anywhere and Cloud9 IDE is the vehicle that will you there. Cloud9 IDE is open source and developer friendly offering online development platforms for HTML, CSS, […]

Categories
How-To

Increase Upload Size – PHP.INI file

For a friend of a friend… Add the Following to the php.ini File You may increase the file size limits by modifying the upload size. Use our friend find and edit the following (nano): ./etc/php5/cli/php.ini ./etc/php5/apache2/php.ini Then look for the following (in nano “W” is our friend) memory_limit = 128M upload_max_filesize = 2M post_max_size = […]

Categories
How-To Technical

How to install LAMP server in Ubuntu

LAMP which stands for Linux, Apache, MySQL and PHP and serves the purpose of web development based on Open Source concept. Apache is the Web server, MySQL is the relational database and PHP (Preprocessor Hyper Text) is an object oriented programming language. The simplest and most likely to be used approach is to use the […]