Install & Setup ElasticSearch 
Author: Josef Jezek
Check Download page for latest version of ElasticSearch and update VERSION
Author: Josef Jezek
Check Download page for latest version of ElasticSearch and update VERSION
# | |
# @author Jonathon byrd | |
# | |
############################################################ | |
# first things first, set your iptables for a web server. If you jack these | |
# up you don't want to have to re-install your os after doing much more. | |
# @see http://www.thegeekstuff.com/2011/06/iptables-rules-examples/ | |
# and | |
# @see https://help.ubuntu.com/community/IptablesHowTo |
#!/bin/sh | |
# http://vm-192-168-11-21.shengyun.grandcloud.cn/topics/2437 | |
# redis - this script starts and stops the redis-server daemon | |
# | |
# chkconfig: 2345 90 10 | |
# description: Redis is a persistent key-value database | |
# processname: redis-server | |
# config: /etc/redis.conf | |
# config: /etc/sysconfig/redis | |
# pidfile: /var/run/redis.pid |
# | |
# @author Jonathon byrd | |
# | |
############################################################ | |
# first things first, set your iptables for a web server. If you jack these | |
# up you don't want to have to re-install your os after doing much more. | |
# @see http://www.thegeekstuff.com/2011/06/iptables-rules-examples/ | |
# and | |
# @see https://help.ubuntu.com/community/IptablesHowTo |
<?php | |
/** | |
* Magento | |
* | |
* NOTICE OF LICENSE | |
* | |
* This source file is subject to the Academic Free License (AFL 3.0) | |
* that is bundled with this package in the file LICENSE_AFL.txt. | |
* It is also available through the world-wide-web at this URL: | |
* http://opensource.org/licenses/afl-3.0.php |
Magento Overrride with patch for fixing the db deadlock error issue | |
FILE PATH: | |
/var/www/dev.linentablecloth.com/app/code/local/Mage/Sales/Model/Abstract.php | |
SOURCE CODE: | |
<?php | |
/** |
// --- Compiling --- | |
$ wget http://download.redis.io/releases/redis-2.8.3.tar.gz | |
$ tar xzvf redis-2.8.3.tar.gz | |
$ cd redis-2.8.3 | |
$ make | |
$ make install | |
// --- or using yum --- | |
$ rpm -Uvh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm | |
$ rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm |
<?php | |
/** MOD_Archive START COPY FROM THIS LINE, paste beneath /main.inc.php " require(INCLUDE_DIR.'mysql.php');" | |
* Which subfolder would you like to start archiving tickets into? | |
*/ | |
define ( 'BACKUPDIR', ROOT_DIR . 'backups' . DIRECTORY_SEPARATOR ); | |
/** | |
* Change to false to show more output, makes cron send emails which you may not care about. | |
*/ | |
define ( 'CRONFRIENDLY', true ); |