Quantcast
Channel: Magento – Ken Nguyen
Browsing all 14 articles
Browse latest View live

Magento Deadlock error

I find a frequently error when working on Mangeto sites with high volume of transactions, a big catalog (ex. >20000 products) or a lot of cron jobs updating database with direct queries. Exception...

View Article


10 worst Magento practices

Wrong Magento implementation can have critical consequences as dropping conversion rates. How to save your eCommerce before bad practices? It should be in our best interest to optimize code and...

View Article


The common issues when install Magento with a existing database.

With some experiences about Magento issue, I want to note and share for everybody. 1. White page issues Sometime you got pages just are white page, it don’t have any content. This situation could be...

View Article

Best tutorials for Magento

BASIC LEVEL The Basics Of Creating A Magento Module Custom Block Development in Magento Magento Custom Module Development This was the original series of articles I wrote on the functionality I thought...

View Article

Magento don’t display product in category page.

I’m sure to configuration right with 7 Common Reasons http://www.lexiconn.com/blog/2014/07/7-common-reasons-why-products-dont-display-in-magento/ I try config many time, but Magento don’t display...

View Article


Image may be NSFW.
Clik here to view.

Best Tools And Extensions For Magento Developers (debug, extensions...

In this post, you will find all the necessary tools for the Magento development. There are both free and paid solutions with absolutely different functionalities . Ultimate Module Creator With Ultimate...

View Article

[Fixed] issue of Visual Merchandiser in Magento.

Case description Go to Category Manage, select Visual Merchandiser tab. We create a filter condition in “Smart Category: Select the attributes to use” Go to Cache Manager, click to “Re-build Visual...

View Article

How to Tax working in Magento?

   app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php /** * Calculate item price and row total including/excluding tax based on total price rounding level */ protected function...

View Article


[Magento ]Deadlock in reindex issues

With Big  numbers of product, we must config 2 price reindex(product price, promo catalog price ) as widely separated   /app/code/core/Mage/Catalog/Model/Observer.php    <crontab>...

View Article


[Magento 2] Create new controller

Create your directory under <magento_root>/app/code/Mydogs/Helloworld/ Create etc/module.xml file under Helloworld directory and define your module. <?xml version="1.0"?> <config...

View Article

Technical resources/document for Magento 2

You can track all updates and Magento Community news at Twitter with #magento2 and#realmagento tags. Official Magento 2 Documentation Gitller chat for Magento 2 developers Official tutorial training...

View Article

How to check Full Page Cache is working?

You need ope file and insert the log scripts: /app/code/core/Mage/Core/Model/App.php public function run($params) { $base_url = ( isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']=='on' ? 'https' :...

View Article

Get Product Collection from Solr Engine

<?php require 'app/Mage.php'; Varien_Profiler::enable(); Mage::setIsDeveloperMode(true); ini_set('display_errors', 1); umask(0); Mage::app(); $category = Mage::getModel('catalog/category')...

View Article


Run manually the SQL setup in Magento 1

<?php umask(0); #ini_set('memory_limit','512M'); set_time_limit(0); if(file_exists('app/Mage.php')) require 'app/Mage.php'; else require '../../app/Mage.php'; // Init without cache so we get a fresh...

View Article
Browsing all 14 articles
Browse latest View live