Mar 8, 2011 ·
1 minute read
linux
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 How many times have you edited a file in Vim, made your changes and then realised you don’t have write permissions when it comes to save it.
Read On →
Mar 7, 2011 ·
1 minute read
javascript
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 struggling to debug why some ajax, perhaps using jquery etc is working fine when you access the page via http, but if you use https then it fails silently with very little error messaging to work on then this could be your solution.
Read On →
Mar 2, 2011 ·
1 minute read
linux
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 struggling to figure out why your Sed script is failing this could well be the solution. Every example you see using sed specifies / as a delimiter.
Read On →
Feb 28, 2011 ·
2 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 manage a few servers, you might often find yourself with a few terminal windows open and it can get tricky to remember which terminal window is which.
Read On →
Feb 24, 2011 ·
1 minute read
linux
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 finding it takes ages for a password prompt to come up when trying to connect to a CentOS server (and possibly others) this is a solution.
Read On →
Feb 17, 2011 ·
1 minute read
magento
If you are struggling to understand why Magento is not finding images that are definitely there, the problem may well be that you are not prefixing your image with a slash, i.e for a new image we would put: /image.jpg and the image would be in media/import/image.jpg Unfortunately whoever wrote the Dataflow product importer though it would be a good idea to silently capture all exceptions on image imports which removes any useful error messages that might occur (such as no image at media/importimage.jpg) If you would prefer to fix this, you can override Mage_Catalog_Model_Convert_Adapter_Product Copy the saveRow() method into your overriding class and then change this bit foreach ($imageData as $file => $fields) { try { $filepath = Mage::getBaseDir('media') .
Read On →