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
By responding to this email you acknowledge and accept that a fee will be charged to you in order to deal with your response. | |
This fee will include time spent to read your reply, research, action, and then respond to your reply. | |
The minimal chargeable amount is £100.00. After the 1st hour, the fee is pro-rata at the same rate in 15 minute intervals. | |
Fees must be paid within 7 days of recieving invoice. Late payment will incur interest at an annual rate of 8% until settlement. |
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
// ... | |
// Regular index.php stuff above here | |
// default site | |
$mage_run_code = 'base'; | |
$currentzone = 'UK'; | |
$geo_country_code = 'GB'; | |
if(isset($_SERVER['HTTP_X_STORE'])) { | |
$currentzone = $_SERVER['HTTP_X_STORE']; | |
$geo_country_code = $_SERVER['HTTP_X_STORE']; |
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 | |
/** | |
* @see Zend_Validate_Abstract | |
*/ | |
#require_once 'Zend/Validate/Abstract.php'; | |
/** | |
* @category Zend | |
* @package Zend_Validate |
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
/** | |
* Clean expired quotes (cron process) | |
* | |
* @param Mage_Cron_Model_Schedule $schedule | |
* @return Mage_Sales_Model_Observer | |
*/ | |
public function cleanExpiredQuotes($schedule) | |
{ | |
Mage::dispatchEvent('clear_expired_quotes_before', array('sales_observer' => $this)); | |
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
mysqlbinlog mysql-bin-log* | grep -i -e "^update" -e "^insert" -e "^delete" -e "^replace" -e "^alter" | cut -c1-100 | tr '[A-Z]' '[a-z]' | sed -e "s/\t/ /g;s/\`//g;s/(.*$//;s/ set .*$//;s/ as .*$//" | sed -e "s/ where .*$//" | sort | uniq -c | sort -nr |