How to install OpenERP 6.1 on Ubuntu 10.04 LTS
Step 1. Build your server sudo apt-get install openssh-server denyhosts Now make sure you are running all the latest patches by doing an update: sudo apt-get updatesudo apt-get dist-upgrade Now we’re ready to start the OpenERP install. Step 2. Create the OpenERP user that will own and run the application sudo adduser –system –home=/opt/openerp –group […]
Checking Your Ubuntu Version
Your Ubuntu version can be found in two places: Under System > About Ubuntu On the System tab of System Monitor (System > Administration > System Monitor)
Magento redirecting to old URL after duplicating site
On sitea.com, you might want to take a look at its database and the core_config_data table for the base URL. OR, you could try and execute the following query: UPDATE `core_config_data` SET `value`=’http://sitea.com/’ WHERE `value` LIKE ‘http://%’ LIMIT 2; do the same on siteb.com’s database for good measure UPDATE `core_config_data` SET `value`=’http://siteb.com/’ WHERE `value` LIKE […]
where is the path of opConfig.reloadPrice(); in magento
For change custom option value, you should change in to js/varient/product.js and in that page you found, reload:function() that function call at the time of on change event. Good Luck
How To Add Tire Tier Pricing in magento?
Here’s how you do it: In the Magento admin, navigate to “Catalog -> Manage Products” Find and click the product that you want to add tier pricing to (or create a new product). Locate the “Prices” tab on the left and click on it. Click the button that says “Add Tier.” Enter the qty you […]
How to display category images in Magento static cms page
Follow the code which show images of sub category in static cms page. <?php$_categories=$this->getCurrentChildCategories() ?><?php if($_categories->count()): ?><ul class=”category-links”> <?php foreach ($_categories as $_category): ?> <?php if($_category->getIsActive()): $cur_category=Mage::getModel(‘catalog/category’)->load($_category->getId()); $layer = Mage::getSingleton(‘catalog/layer’); $layer->setCurrentCategory($cur_category); //$_imageUrl = $this->getCurrentCategory()->getImageUrl(); ?> <li class=”<?php echo $this->htmlEscape($_category->getUrlKey()) ?>”> <?php if($_imageUrl = $this->getCurrentCategory()->getImageUrl()){?> <img src=”<?php echo $_imageUrl; ?>” alt=”<?php echo $this->htmlEscape($_category->getName()) ?>” /> <? […]
magento show subcategories from categories in static block
For showing Subcategory please put this follow those steps <?php /** * ** Instructions for Use ** * * 1. Upload this page to your installation at: * /app/design/frontend/[INTERFACE]/[THEME]/template/catalog/navigation/custom-category.phtml * * 2. Enter the following code in a static block: * {{block type=”catalog/navigation” name=”catalog.navigation” template=”catalog/navigation/custom-category.phtml”}} * * 3. Select the static block as the […]
How to add Up-sells Products in Magento
To add up-sells Product in magento, you have to follow those steps Log in to the Magento admin Navigate to Catalog -> Manage Products Find the product to which you want to add Up-sells Select and edit this product Select the Up-sells tab From the products grid that appears, check any products you’d like to […]
How to See Magento Error Logs
Many ways we found to see error logs, here are the simple steps :1) Logg in to Admin> Configuration > Developer > Log Settings > Enabled = Yes2) Watch your var/log/system.log and var/log/exception.log for raw information from this.
Magento Error log record number: 909957918
To see reail error, for that go to /errors folder in the root of Magento and rename the file “local.xml.sample” to “local.xml”. After that Reload your sotre, you found actual Error which you facing.