Hello everyone, we have another new tutorial for you to fix a possible problem in your store.
Migrate large MySQL Databases using AWS DMS
"AWS Database Migration Service helps you migrate databases to AWS easily and securely. The source database remains fully operational during the migration, minimizing downtime to applications that rely on the database. The AWS Database Migration Service can migrate your data to and from most widely used commercial and open-source databases." - https://aws.amazon.com/dms/
Magento MySQL Master/Slave
This is a really simple tutorial on how you can set up Magento to work with multiple MySQL servers in case you have Master/Slave configuration.
[Video] Telephone DDD Mask (Brazilian code)
With this tutorial we are able to add the DDD mask for customer's telephone.
- mascara.js:
//MÁSCARA DE TELEFONE function txtBoxFormat(objeto, sMask, evtKeyPress) { var i, nCount, sValue, fldLen, mskLen,bolMask, sCod, nTecla; if(document.all) { // Internet Explorer nTecla = evtKeyPress.keyCode; } else if(d
Using Redis with Magento 1.8+
Redis is memory-based key-value. Imagine Memcache with more tools such as clustering and multiple databases.
Magento can use Redis to:
- Session
- Cache
- Full Page Cache (Enterprise)
What is the reason to use Redis?