Posts
Installing Cakephp 3.x on Ubuntu
- Get link
- X
- Other Apps
Following are the requirements for installing cakePHP3.x : 1. HTTP Server like Apache 2. PHP version greater than or equal to 5.4.16 3. mbstring extension 4. intl extension 5. Composer, without which you cannot install cakephp3 Installing Requirements Go to Terminal, Install apache and php >= 5.4.16. Install mbstring extension using the following command : sudo apt-get install libapache2-mod-php5 Install intl extension using the following command : sudo apt-get install php5-intl Now restart apache using the command : service apache2 restart Install Composer : Once all Apache,PHP, mbstring and intl extension are installed. Next step is to install composer. Go to your root directory( /var/www/ in ubuntu ) cd /var/www If you have curl installed you can use command curl - s https :// getcomposer . org / installer | php else you can use command php -r "readfile('https://getcomposer.org/installer');" | php to install compos