Jun 17, 2009 ·
1 minute read
magento
Recently spoke to a client about the possiblity of setting up Magento on EC2 and remembered that I had seen a pre optimised AMI including caching etc to hopefully run Magento well. A quick bit of Googling though and I saw that the top results are all people charging for AMI’s. That can’t be right, so I thought I would do a quick post to give the free optimsed AMI an SEO booster.
Read On →
Jun 15, 2009 ·
1 minute read
magento
After a few hours of intense googling I have finally figured out why my Magento custom module is refusing to activate. I finally figured it out. It’s all because the snippet of XML that I copied and pasted off a tutorial somewhere did not have the right capitalisation. doesn’t work - EC_All.xml <?xml version="1.0"?> <config> <modules> <EC_CatalogSearch> <active>true</active> <codepool>local</codepool> </EC_CatalogSearch> </modules> </config> does work - EC_All.xml <?xml version="1.0"?> <config> <modules> <EC_CatalogSearch> <active>true</active> <codePool>local</codePool> </EC_CatalogSearch> </modules> </config> I think next time I’m just going to use the module creator!
Jun 15, 2009 ·
2 minute read
magento
If you fancy having a select box allowing people to search within a top level category on your site directly from the quick search box, check out this little modification. This gives your search a bit of an Amazon feel. This idea could easily be extended if required. You can drop this file in as a straight replacement to app/design/frontend/###/###/template/catalogsearch/form.mini.phtml <?php /** * Magento * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE_AFL.txt.
Read On →
Jun 15, 2009 ·
2 minute read
apache
This is post is now quite old and the the information it contains may be out of date or innacurate. If you find any errors or have any suggestions to update the information please let us know or create a pull request on GitHub If you are trying to modify your mod_security configuration on a plesk server and have tried using htaccess files you have probably realised that it won’t work.
Read On →
Jun 12, 2009 ·
1 minute read
zend framework
This is post is now quite old and the the information it contains may be out of date or innacurate. If you find any errors or have any suggestions to update the information please let us know or create a pull request on GitHub After losing an afternoon trying to get my extended Zend Dojo Form class to give me HTML array notation, I have finally found a solution that works.
Read On →
Jun 12, 2009 ·
2 minute read
php
This is post is now quite old and the the information it contains may be out of date or innacurate. If you find any errors or have any suggestions to update the information please let us know or create a pull request on GitHub CRE Loaded osCommerce (by far my favourite and most highly recommended flavour of osCommerce) have recently posted on their blog about becoming the first open source ecommerce cart to be given PCI Approval.
Read On →