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
| [mysqld] | |
| skip-innodb | |
| default-storage-engine=myisam | |
| default-tmp-storage-engine=myisam | |
| query_cache_size=0 | |
| max_connections=10 | |
| key_buffer_size=8 | |
| thread_cache_size=0 | |
| host_cache_size=0 | |
| thread_stack=131072 |
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
| <?php | |
| require_once 'abstract.php'; | |
| /** | |
| * Magento Dataflow Shell Script | |
| * | |
| * This file should be save in the shell directory of Magento | |
| * Basic usage samples: | |
| * php dataflow.php | |
| * php dataflow.php list |
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
| # Backup | |
| docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
| # Restore | |
| cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |
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
| From d48811b478c59299eacce45c49f2d3bb25291151 Mon Sep 17 00:00:00 2001 | |
| From: Bas Mostert <[email protected]> | |
| Date: Thu, 13 Oct 2016 13:30:37 +0100 | |
| Subject: [PATCH] Fixed 1.9.3 search | |
| --- | |
| .../Mage/CatalogSearch/Model/Resource/Fulltext.php | 56 +++++++++++----------- | |
| .../Model/Resource/Fulltext/Collection.php | 3 +- | |
| 2 files changed, 30 insertions(+), 29 deletions(-) |
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
| # EditorConfig is awesome: http://EditorConfig.org | |
| # top-most EditorConfig file | |
| root = true | |
| # All PHP files MUST use the Unix LF (linefeed) line ending. | |
| # Code MUST use an indent of 4 spaces, and MUST NOT use tabs for indenting. | |
| # All PHP files MUST end with a single blank line. | |
| # There MUST NOT be trailing whitespace at the end of non-blank lines. | |
| [*] |
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
| #!/bin/sh | |
| # chmod a+x software.sh | |
| # Install Brew | |
| /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| brew tap homebrew/core | |
| brew tap homebrew/cask | |
| brew tap homebrew/cask-drivers |
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
| #!/bin/sh | |
| # chmod a+x development.sh | |
| # General functionality | |
| brew install git | |
| brew install openssl | |
| brew install node | |
| brew install npm | |
| brew install yarn | |
| brew install bat |
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
| FROM php:5.6-apache | |
| # Install gd, iconv, mbstring, mcrypt, mysql, soap, sockets, zip, and zlib extensions | |
| # see example at https://hub.docker.com/_/php/ | |
| RUN apt-get update && apt-get install -y \ | |
| libbz2-dev \ | |
| libfreetype6-dev \ | |
| libgd-dev \ | |
| libjpeg62-turbo-dev \ | |
| libmcrypt-dev \ |
OlderNewer