In this tutorial you will learn how to install Alternative PHP Cache (APC) on Ubuntu Server.
Code used during this tutorial:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# Install Alternative PHP Cache (APC) on Ubuntu Server # Install APC module sudo apt-get update sudo apt-get install php-apc # Restart Apache sudo service apache2 restart vi phpinfo.php <?php phpinfo(); # Browser http://http.liviubalan.com/phpinfo.php#module_apc Useful links: Failed on Ubuntu 14.04: https://www.digitalocean.com/community/tutorials/how-to-install-alternative-php-cache-apc-on-a-cloud-server-running-ubuntu-12-04 https://www.digitalocean.com/community/questions/how-to-install-alternative-php-cache-apc-on-ubuntu-14-04 |
Useful links:
https://www.digitalocean.com/community/tutorials/how-to-install-alternative-php-cache-apc-on-a-cloud-server-running-ubuntu-12-04
https://www.digitalocean.com/community/questions/how-to-install-alternative-php-cache-apc-on-ubuntu-14-04