What is SSL? SSL certificates are what enable websites to move from HTTP to HTTPS, which is more secure. An SSL certificate is a data file hosted in a website's origin server. SSL certificates make SSL/TLS encryption possible, and they contain the website's public key and the website's identity, along with related information. Devices attempting to communicate with the origin…
Category Archives Magento
validate-password: (Please enter 6 or more characters. Leading or trailing spaces will be ignored) validate-admin-password: (Please enter 7 or more characters. Password should contain both numeric and alphabetic characters) validate-digits: (Please use numbers only in this field. Please avoid spaces or other characters such as dots or commas) validate-no-html-tags: (HTML tags are not allowed) validate-select: (Please select an option) required-entry:…
. app/locale/en_US/Mage_Checkout.csv app/locale/en_US/Mage_Customer.csv app/locale/en_US/Mage_Persistent.csv Where en_US is your current locale. Find the following line "Telephone","Telephone" and change the second part to your "Telephone","Mobile Number"
I have also facing the issue of when I click on Magento Connect Manager it redirects to the homepage of my site.Downloaded magento and reinstalled downloader to my store root directory - Deleted my var/cache and var/sessions- Deleted connect.cfg and cache.cfg from downloader folderRefresh site and again connect magento connect manager.If your problem solve please comment me.thanks
Go to System > Configuration > ADVANCED > System > Mail Sending Settings Disable Email Communications = No Host = I changed it from localhost to mail.mydomain.com Port (25) = 25 Set Return-Path = No Now, all email from Magento is normally sent.
Store has thousands of Products and Catalog Price Rules. The rules weren't being applied, and after debugging cron and other things that have been a problem in the past, I took a look at the catalogrule_product_price table to see what was there. I saw a single entry:Notice the value for rule_product_price_id -- Indeed, the max value for an INT(10) field.…
How to call Related product in static Block in Magento 1. Login in admin panel 2. CMC->> statick Blog3. Paste Code whose blog wheer you display related product {{block type="catalog/product_list_related" name="catalog.product.related" before="-" template="catalog/product/list/related.phtml"}}
Learn how to remove the Newsletter from MagentoIn this tutorial we will show you how to remove some of the default blocks from your site using only the Magento admin panel.With the help of the panel you can remove the Newsletter blocks from your Magento site.To remove the Newsletter in to your Magento admin panel, go to System > Configuration,…
Find Outapp/design/adminhtml/default/default/template/sales/order/view/items.phtmlSuppose we want to add product images then we have to add with an extra table head with the current haead <th><?php echo $this->helper('sales')->__('Images') ?></th> // line No 39And Next Step Again find outapp/design/adminhtml/default/default/template/sales/order/view/items/renderer/default.phtml<td> <?php $obj = Mage::getModel('catalog/product'); $_product = $obj->load($_item->getProductId());?> <img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(150); ?>" alt="images" /></td>
Add the Magento contact form to a CMS page as a static block Magento has a built-in contact form . You may for example want to add your company address, contact details or even a Google Map. This can quite easily be done by creating a CMS page and including the contact form portion of the standard Magento contact form…