Scaling Magento presentation with 60 slides and notes, which was then reviewed by Alan Storm.
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
| /****** Object: StoredProcedure [dbo].[GetJSON] Script Date: 5/28/2013 4:31:01 PM ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE procedure [dbo].[GetJSON] | |
| ( | |
| @table_name varchar(50), |
Add "sort by date" available in product list:
http://magebase.com/magento-tutorials/magento-sort-by-newest-products-made-easy/
Download Magento extensions directly:
http://freegento.com/ddl-magento-extension.php
Remove navigation links in customer account pages with "removeLinkByName" in local.xml:
http://stackoverflow.com/questions/5887664/remove-navigation-links-from-my-account
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
| SET FOREIGN_KEY_CHECKS=0; | |
| -- Customers | |
| TRUNCATE `customer_entity`; | |
| TRUNCATE `customer_entity_datetime`; | |
| TRUNCATE `customer_entity_decimal`; | |
| TRUNCATE `customer_entity_int`; | |
| TRUNCATE `customer_entity_text`; | |
| TRUNCATE `customer_entity_varchar`; |
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
| All breakout session presentations: | |
| http://www.imagineecommerce.com/2013breakouts/ | |
| Magento: Best practices for hosting | |
| http://www.nexcess.net/magento-best-practices-whitepaper | |
| http://info.magento.com/rs/magentocommerce/images/HostandBoastBestPracticesForMagentoHosting.pdf | |
| Data Isolation and Merchandizing in a Single Magento Instance | |
| http://info.magento.com/rs/magentocommerce/images/DataIsolationandMerchandizinginaSingleMagentoInstance.pdf |
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
| { | |
| "Description" : "ProjectX scalable stack of frontal nodes", | |
| "Parameters" : { | |
| "InstanceType" : { | |
| "Description" : "Type of EC2 instance to launch", | |
| "Type" : "String", | |
| "Default" : "m1.xlarge" | |
| }, | |
| "SSHKeyName" : { | |
| "Description" : "The EC2 Key Pair to allow SSH access to the instances", |
NewerOlder