Posts

Inventory API

Magento : Inventory API Allows export/import catalog inventory. Module: Mage_CatalogInventory Resource: cataloginventory_stock_item Aliases: product_stock  Methods cataloginventory_stock_item.list Retrieve stock data by product ids Return: array Arguments: array products - list of products IDs or Skus Aliases: product_stock.list cataloginventory_stock_item.update Update product stock data Return: boolean Arguments: mixed product - product ID or Sku array data - data to change (qty, is_in_stock) Aliases: product_stock.update   Change manage_stock setting to ‘off’ in the inventory area $attributeSets = $client→call($session, ‘product_stock.update’, array(’SKU’,array(’manage_stock’⇒‘0’,’use_config_manage_stock’⇒‘0’))); The use_config_manage_stock unchecks the ‘Use Config Settings’ box which allows you to make changes to this product and not use the global settings that are set by default. Example 1. Working

Key highlights in 2009 for Magento included:

Over 1.4 Million downloads, 30,000+ merchants and over $25 Billion in transactions processed through the Magento platform.  Top brands running Magento include Vizio, Lenovo, 3M, Nespresso, The North Face, Homedics, Myla, Stussy, Samsung and many more... The Magento Enterprise Edition subscription was released in April , making available the first Enterprise Open Source eCommerce Platform alternative to Enterprise Commercial offerings Forrester Research named Magento as an ‘ Emerging Player To Watch ’ in the eCommerce space Magento Connect , Magento’s marketplace for third party extensions and enhancements reaches over 1,500 contributed extensions Magento saw continued adoption by some of the world’s largest brands ( Magento Spotting: Apparel and Accessories Roundup ) The new Magento Solution Partner program was announced targeting larger, established eCommerce specialized partners, capable of expanding awareness and adoption of Magento around the world. Over 40 partners were res

System Requirements for magento installation

Supported Operating Systems: Linux x86, x86-64 Supported Web Servers: Apache 1.3.x Apache 2.0.x Apache 2.2.x Supported Browsers: Microsoft Internet Explorer 6 and above Mozilla Firefox 2.0 and above Apple Safari 2.x Google Chrome Adobe Flash browser plug-in should be installed PHP Compatibility: 5.2 Required extensions: PDO_MySQL simplexml mcrypt hash GD DOM iconv curl SOAP (if Webservices API is to be used) Safe_mode off Memory_limit no less than 256Mb (preferably 512) MySQL: 4.1.20 or newer InnoDB storage engine SSL: If HTTPS is used to work in the admin, SSL certificate should be valid. Self-signed SSL certificates are not supported Server - hosting - setup: Ability to run scheduled jobs (crontab) with PHP 5 Ability to override options in .htaccess files

Magento Admin login problem at window os

Hello magento ecommerce user:   After installation of magento then there is problem about login to magento admin panel.   When I commented the lines (81:82:83)of   ===>>  app\code\core\Mage\Core\Model\Session\Abstract\varein.php   commented these lines:      /*$this->getCookie()->getDomain(),             $this->getCookie()->isSecure(),             $this->getCookie()->getHttponly()*/ Then easily i logged to magento admin panel at localhost. Cheers...

Google Application Engine

Google Application Engine is a new free application for all who can't afford domain and hosting as well as development expenses. Google provide you free solution for your business. Using Google Application Engine , you don't need to write any code - best of all- it's free!    Download the software from Google application engine https://appengine.google.com and develop page and upload at server. Everyone round the world, can visit your site easily.    Before we start this application, you have to download software Development Kit (SDK) from : http://code.google.com/appengine/downloads.html   There is SDK available in 2 formats: Java and Python. Google App Engine is the same like Amazon S3....we call it Cloud Computing , which is the most modern technology on the market in the moment.(mobile computing) no backup or whatever necessary. Google didnt want the old php language, because to restricted...so they use python and java    ---continue---next coming soon!   

Happy Diwali

Image
Special thanks to Wikipedia.com Diwali is a significant festival in Hinduism , Sikhism , and Jainism , and an official holiday in India and other countries. Spiritual significance While Divali is popularly known as the "festival of lights", the most significant spiritual meaning is "the awareness of the inner light". Central to Hindu philosophy is the assertion that there is something beyond the physical body and mind which is pure, infinite, and eternal, called the Atman . Just as we celebrate the birth of our physical being, Deepavali is the celebration of this inner light, in particular the knowing of which outshines all darkness (removes all obstacles and dispels all ignorance), awakening the individual to one's true nature, not as the body, but as the unchanging, infinite, immanent and transcendent reality. With the realization of the Atman comes universal compassion, love, and the awareness of the oneness of all things (higher knowledge). This brings A

How can i develop Facebook Application?

Image
I mainly focus on development of applications for facebook, and sometime we will also review interesting applications and their cool features which you might have stumbled upon. stay with me, I will try to answer all of your questions in this blog. echo "hello readers of fbcookbook" ; ?> facing trouble to trigger multiple onload event to work FBJS does not allow acess to the window object. So how can onload event fire when is loaded on canvas. also FBJS is executed after the entire page has been loaded. so really shouldn’t matter where you call the function within your canvas page file. however let’s see how can we trigger on load for multiple div. In this example we create two div which load by onload. One is for content a message and another which load the value by ajax way. For that reason in FBJS we create a varraible array and pushing two functions on that array variable. var onload = []; onload.push( function () { //ONLOAD STUFFS HER