Nov 17, 2009 ·
1 minute read
barcode
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 Just found this MySQL snippet for validating EAN numbers. http://snipplr.com/view.php?codeview&id=17928 I have modified it a bit to suit my requirements (namely totally corrupted EAN data). SELECT
Read On →
Nov 11, 2009 ·
2 minute read
magento
Currently working on a project that requires some fairly complex integration between Magento and Mail Chimp. I’m really impressed with Mail Chimp so far - the API is really well documented and a pleasure to work on. A breath of fresh air compared to most API’s that I have worked on before. It’s amazing what a difference decent documentation does. Magento on the other hand - well I’m sure you know that Magento documentation is a bit like rocking horse ****.
Read On →
Nov 11, 2009 ·
2 minute read
seo
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 We are big believers in the power of blogs and regular blog posts to boost the SEO performance of sites. Especially ecommerce style sites that can sometimes struggle to get the kind of SEO focus that is required to rank at the top of the search engine results pages.
Read On →
Nov 7, 2009 ·
1 minute read
ubuntu
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 like me you have a Linux drive, but also run NTFS drives for windows/buntu compatability reasons (in my case, simply archive drives that I haven’t got around to moving from NTFS to EXT).
Read On →
Nov 5, 2009 ·
1 minute read
ubuntu
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 using Ubuntu (or probably other versions of linux as well) and the OSE version of Virtualbox, then after upgrading you might find that your virtual machine images no longer run.
Read On →
Nov 3, 2009 ·
1 minute read
magento
If your Magento custom options with multiple file uploads isn’t working properly, its because of a bug in the core Magento code. You can either edit the core file Open magento\app\code\core\Mage\Catalog\Model\Product\Option\Type\File.php and change: at line 145 if (!$upload->receive()) { To: if (!$upload->receive($file)) { Or alternatively I have put together a small module to override this bit of code. If you want it drop me a comment and I will package it up.