Friday, 22 November 2013
Tuesday, 12 November 2013
How to create Layered Navigation for custom product collection?
http://stackoverflow.com/questions/17924813/how-to-create-layered-navigation-for-custom-product-collection
http://stackoverflow.com/questions/5726891/magento-layered-navigation-on-custom-product-collection
http://www.webdesign-gm.co.uk/news/web-design/magento-web-design/layered-navigation-on-home-page-or-any-cms-page-magento.php
https://www.sonassi.com/knowledge-base/magento-kb/yoast-landing-pages-module-with-layered-navigation/
http://stackoverflow.com/questions/5726891/magento-layered-navigation-on-custom-product-collection
http://www.webdesign-gm.co.uk/news/web-design/magento-web-design/layered-navigation-on-home-page-or-any-cms-page-magento.php
https://www.sonassi.com/knowledge-base/magento-kb/yoast-landing-pages-module-with-layered-navigation/
Product image zoom free extensions
http://www.magentocommerce.com/magento-connect/simple-zoom-slider-3972.html
http://www.magentocommerce.com/magento-connect/customproduct-1021.html
http://www.magentocommerce.com/magento-connect/colors-by-adverti-se-1816.html
http://www.magentocommerce.com/magento-connect/productview.html
http://www.magentocommerce.com/magento-connect/product-zoom-2310.html
http://www.magentocommerce.com/magento-connect/color-swicher-module-9707.html
http://www.magentocommerce.com/magento-connect/qaz-q-zoom-image-1316.html
http://www.magentocommerce.com/magento-connect/cueblocks-zoom.html
http://www.magentocommerce.com/magento-connect/vs-product-image-zoom-featurezoom.html
http://www.magentocommerce.com/magento-connect/customproduct-1021.html
http://www.magentocommerce.com/magento-connect/colors-by-adverti-se-1816.html
http://www.magentocommerce.com/magento-connect/productview.html
http://www.magentocommerce.com/magento-connect/product-zoom-2310.html
http://www.magentocommerce.com/magento-connect/color-swicher-module-9707.html
http://www.magentocommerce.com/magento-connect/qaz-q-zoom-image-1316.html
http://www.magentocommerce.com/magento-connect/cueblocks-zoom.html
http://www.magentocommerce.com/magento-connect/vs-product-image-zoom-featurezoom.html
One Step checkout free extensions
One Step checkout free extensions:
http://www.magentocommerce.com/magento-connect/onecheckout-checkout-in-one-step-on-one-page-2559.html
http://www.magentocommerce.com/magento-connect/express-checkout-one-step-checkout-free-8118.html
http://www.magentocommerce.com/magento-connect/iwd-free-one-page-one-step-checkout.html
http://www.magentocommerce.com/magento-connect/0-step-checkout-9378.html
http://www.magentocommerce.com/magento-connect/swiftcheckout-free-single-page-checkout.html
http://www.magentocommerce.com/magento-connect/skip-checkout-step-1.html
Add discount coupon code in checkout review step:
http://www.magentocommerce.com/magento-connect/add-discount-coupon-with-checkout-process.html
Quick contact form extension:
http://www.magentocommerce.com/magento-connect/freequickcontact-mageworld.html
http://www.magentocommerce.com/magento-connect/onecheckout-checkout-in-one-step-on-one-page-2559.html
http://www.magentocommerce.com/magento-connect/express-checkout-one-step-checkout-free-8118.html
http://www.magentocommerce.com/magento-connect/iwd-free-one-page-one-step-checkout.html
http://www.magentocommerce.com/magento-connect/0-step-checkout-9378.html
http://www.magentocommerce.com/magento-connect/swiftcheckout-free-single-page-checkout.html
http://www.magentocommerce.com/magento-connect/skip-checkout-step-1.html
Add discount coupon code in checkout review step:
http://www.magentocommerce.com/magento-connect/add-discount-coupon-with-checkout-process.html
Quick contact form extension:
http://www.magentocommerce.com/magento-connect/freequickcontact-mageworld.html
Monday, 11 November 2013
USPS shipping method not working in Magento | Important Patch for USPS API
Patch: Magento Community Edition Alert: Important Patch for USPS API
Installation Instructions: http://www.magentocommerce.com/boards/viewthread/484325/
Alternatively you can simply install the below extension:
http://www.goivvy.com/blog/magento-usps-july-2013-patch
Installation Instructions: http://www.magentocommerce.com/boards/viewthread/484325/
Alternatively you can simply install the below extension:
http://www.goivvy.com/blog/magento-usps-july-2013-patch
Sunday, 10 November 2013
Tuesday, 5 November 2013
CSR Generation : Apple Mac OS X Server
http://support.apple.com/kb/HT3976
http://support.godaddy.com/help/article/5269/generating-a-certificate-signing-request-csr-apache-2x
http://support.godaddy.com/help/article/6227/generating-a-certificate-signing-request-csr-mdash-mac-os-x-server-106
http://support.godaddy.com/help/article/5280/generating-a-certificate-signing-request-csr-mac-os-x-server-105
https://www.sslgenie.com/csr/csr-Apple-Mac-OS-X-Server.html
http://support.godaddy.com/help/article/5269/generating-a-certificate-signing-request-csr-apache-2x
http://support.godaddy.com/help/article/6227/generating-a-certificate-signing-request-csr-mdash-mac-os-x-server-106
http://support.godaddy.com/help/article/5280/generating-a-certificate-signing-request-csr-mac-os-x-server-105
https://www.sslgenie.com/csr/csr-Apple-Mac-OS-X-Server.html
Thursday, 31 October 2013
Monday, 14 October 2013
Perl script for documents backup
#!/usr/bin/perl
# Configuration params
$backup_dir = '/home/username/public_html';
$file_prefix = 'doc_backup_';
# Get the timestamp for today
$date = `date "+%Y%m%d"`;
chomp($date);
chdir('/home/username/backup/doc_backup') ;
`tar -cv -f $file_prefix$date.tar $backup_dir`;
`bzip2 $file_prefix$date.tar`;
# Below line is used to remove the backups older than 5 days to free up the server space
system("find . -mtime +5 -type f -name 'doc_backup_*' -exec rm {} \\;");
# Configuration params
$backup_dir = '/home/username/public_html';
$file_prefix = 'doc_backup_';
# Get the timestamp for today
$date = `date "+%Y%m%d"`;
chomp($date);
chdir('/home/username/backup/doc_backup') ;
`tar -cv -f $file_prefix$date.tar $backup_dir`;
`bzip2 $file_prefix$date.tar`;
# Below line is used to remove the backups older than 5 days to free up the server space
system("find . -mtime +5 -type f -name 'doc_backup_*' -exec rm {} \\;");
Perl script for Database backup
#Configuration params
$host = 'localhost';
$user = 'username';
$pass = 'password';
$database = 'dbname';
$backup_dir = '/home/username/backup/db_backup';
$file_prefix = 'database_backup_';
# Get the timestamp for today
$date = `date "+%Y%m%d"`;
chomp($date);
`mysqldump --host=$host --user=$user --pass=$pass $database | bzip2 -c > $backup_dir/$file_prefix$database$date.sql.bz2`;
Friday, 4 October 2013
Wednesday, 25 September 2013
Increase number of emails to be sent via Nesletter
To increase the number emails to be sent for every 5 min:
In app/code/core/Mage/Adminhtml/controllers/Newsletter/QueueController.php
Change the
$countOfSubscritions = 20;
To
$countOfSubscritions = 100; // whatever number you want
Also in app/code/core/Mage/Newsletter/Model/Oberver.php
Change the
$countOfSubscritions = 20;
To
$countOfSubscritions = 100; // whatever number you want
In app/code/core/Mage/Adminhtml/controllers/Newsletter/QueueController.php
Change the
$countOfSubscritions = 20;
To
$countOfSubscritions = 100; // whatever number you want
Also in app/code/core/Mage/Newsletter/Model/Oberver.php
Change the
$countOfSubscritions = 20;
To
$countOfSubscritions = 100; // whatever number you want
Extend the core admin controller
Working example can be found at :
http://www.magentocommerce.com/boards/viewthread/25942/P15/#t348401
http://www.magentocommerce.com/boards/viewthread/25942/P15/#t348401
Tuesday, 24 September 2013
Creating Virtual Host on Mac
Restart Apache on Mac:
http://www.cyberciti.biz/faq/restart-apache2-mac-osx/
http://www.cyberciti.biz/faq/restarting-apache-under-oxs-commandline/
Creating a Virtual Host on Mac:
http://foundationphp.com/tutorials/vhosts_leopard.php
Subdomain Setup on Mac:
http://content.websitegear.com/article/subdomain_setup.htm
http://www.cyberciti.biz/faq/restart-apache2-mac-osx/
http://www.cyberciti.biz/faq/restarting-apache-under-oxs-commandline/
Creating a Virtual Host on Mac:
http://foundationphp.com/tutorials/vhosts_leopard.php
Subdomain Setup on Mac:
http://content.websitegear.com/article/subdomain_setup.htm
Sunday, 22 September 2013
Get Default Magento store ID
$defaultStoreId = Mage::app()
->getWebsite(true)
->getDefaultGroup()
->getDefaultStoreId();
Thursday, 19 September 2013
Improve Magento native search
Follow the tips at http://markustenghamn.com/improve-search-function-magento
Install the following free extension:
http://www.magentocommerce.com/magento-connect/enhanced-default-search-9697.html
Install the following free extension:
http://www.magentocommerce.com/magento-connect/enhanced-default-search-9697.html
Subscribe to:
Posts (Atom)