This file contains hidden or 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 jpegoptim | |
| sudo apt-get install optipng | |
| find /path/to/magento/ -iname '*.jpg' -exec jpegoptim --strip-all -p {} \; -exec chmod 755 {} \; -exec chown www-data:www-data {} \; | |
| find . -iname '*.png' -exec optipng -o7 -preserve {} \; -exec chown www-data:www-data {} \; |
This file contains hidden or 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
| # put it into magento install dir | |
| app/code/core/ | |
| app/code/community/Phoenix/Moneybookers | |
| app/design/adminhtml/default/default/ | |
| app/design/frontend/base/default/ | |
| app/design/frontend/default/default/ | |
| app/design/frontend/default/blank/ | |
| app/design/frontend/default/iphone/ |
NewerOlder