-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Presumed apc.ini location is incorrect for Ubuntu 14.04 #13
Comments
I realized after creating this issue that this probably boils down to this cookbook not yet supporting Ubuntu 14.04. Perhaps the question/issue should really be about whether support for that OS version is eventually intended, seeing as it's the new LTS release. |
Hi @ltcdnunez, support for 14.04 will be added at some point. I don't think any of us have had a chance to make that happen yet. |
Gotcha. Thanks for the update. |
When attempting to run this recipe on Ubuntu 14.04, I encountered an error regarding the location of the
apc.ini
file. The recipe installs PHP 5.5 (with which I do not believe Magento is even technically compatible). Part of the issue seems to be that PHP 5.5 uses the new Zend OpCache and APC is now replaced by APCu in the packagephp-apc
. Thus, the location/etc/php5/conf.d
being used in the recipe does not exist: https://github.com/yevgenko/cookbook-magento/blob/master/recipes/default.rb#L23. The error was:No such file or directory - /etc/php5/conf.d
.I think the possible fix here might be either specifying that PHP is installed with a specific version (that is less than 5.5) or fixing the portion of the recipe that deals with APC to search in the correct location, which appears to be
/etc/php5/fpm/conf.d/20-apcu.ini
. Any thoughts on this?The text was updated successfully, but these errors were encountered: