Last active
September 6, 2020 08:39
-
-
Save Greg-Boggs/dfe3af199403860580ec to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install php5-fpm | |
sudo apt-get install php5-apcu #get old version | |
sudo apt-get install php5-dev | |
sudo apt-get install libpcre3-dev #avoid fatal error: pcre.h: No such file or directory | |
sudo pecl install apcu-beta #grab latest | |
#drupal specific | |
drush dl apc --select #get the latest version | |
grab the patch file for apcu | |
patch -p1 < apcu-patch.patch | |
#add settings.php settings to enable with correct path! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment