For use after an upgrade to verify the correct working of Magento
- Activate all logs on the server (PHP, MySQL, Magento, mail, etc)
- Check meta tags in HTML
<?php | |
/** | |
* Magento 1.9.1 has a problem Sorting Configurable Product Attribute Options and Dropdowns | |
* [solved] File Patched by Jonathon Byrd | |
* http://magentosupport.help/knowledgebase/solved-sort-configurable-product-attribute-options-and-dropdowns/ | |
* | |
* Magento | |
* | |
* NOTICE OF LICENSE | |
* |
#!/usr/bin/ruby | |
# encoding: utf-8 | |
# Grab google web fonts and embed them as base64 data URIs | |
# <http://brettterpstra.com/2015/03/14/embedding-google-web-fonts/> | |
require 'base64' | |
if ARGV.length > 0 | |
input = ARGV | |
elsif STDIN.stat.size > 0 | |
input = STDIN.read.strip.split(/\n+/) |
<?php | |
require_once 'abstract.php'; | |
class Mage_Shell_Filterable_Attributes extends Mage_Shell_Abstract | |
{ | |
/** | |
* Run script | |
* | |
*/ | |
public function run() |
<?php | |
/** | |
* By default joomla display 10 pages in pagination. This file allows | |
* us to customize the number of displayed pages. | |
* | |
* Simply add this file to $template/html/pagination.php and | |
* change $displayedPages variable. | |
*/ | |
defined('_JEXEC') or die('Restricted access'); |
#!/bin/bash | |
#CONFIG | |
backupDir='/mnt/backup' | |
magentoDir='/var/www/magento/htdocs' | |
magerunPath='/usr/bin/n98-magerun.phar' | |
#NUMBER OF DAYS TO KEEP BACKUPS | |
dailyKeepDays=7 | |
weeklyKeepDays=30 |
body.loading:after { | |
/* with no content, nothing is rendered */ | |
content: ""; | |
position: fixed; | |
/* element stretched to cover during rotation an aspect ratio up to 1/10 */ | |
top: -500%; | |
left: -500%; | |
right: -500%; | |
bottom: -500%; | |
z-index: 9999; |
/* | |
* Custom JS macros for creating tags in GTM that populate event information from | |
* element attributes. | |
* | |
* Author: Joshua Kehn <[email protected]> | |
* Copyright: (c) 2014 by Joshua Kehn | |
* License: ISC <http://www.isc.org/downloads/software-support-policy/isc-license/> | |
*/ | |
function () { |
version: grunt-cli v0.1.8 | |
1. Install node-inspector globally (-g) | |
npm install -g node-inspector | |
2. Add debugger statements to your code | |
3. Run your grunt task in debug mode |
<?xml version="1.0"?> | |
<layout> | |
<default> | |
<!--Root/Default Layouts--> | |
<reference name="root"> | |
<!--Appending Block--> | |
<block type="page/html_breadcrumbs" name="breadcrumbs" as="breadcrumbs"/> | |
</reference> | |
<!--CSS and JS Files--> |