Feb 18, 2010 ·
1 minute read
magento
If you use table prefixes (you should) but you need to get the name of a table without having to hardcode in the table prefix, use this little snippet: $tableName = Mage::getSingleton('core/resource')->getTableName('catalog_product_option');
Feb 17, 2010 ·
1 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 A nice little shell script for quickly install WordPress on Linux:: #!/bin/bash wget http://wordpress.org/latest.zip unzip latest.zip cp -rf ./wordpress/* ./
Feb 17, 2010 ·
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 1] Download the latest version of ( XAMPP For Linux ) here 2] Install it. To install lampp, extract and put in /opt directory. Remember to extract it as ROOT.
Read On →
Feb 15, 2010 ·
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 need to work collaboratively on some Javascript then check out JS Bin It’s just like pastebin, but with Javascript compatability, handy.
Feb 15, 2010 ·
1 minute read
magento
If your shiny new Magento 1.4 is displaying this error message at the bottom of the page then you might want to apply this fix. Fatal error: Exception thrown without a stack frame in Unknown on line 0 The solution is to comment out a small section of code in app/code/core/Mage/Core/Model/Cache.php line 180 /*try { if (class_exists($type, true)) { $implements = class_implements($type, true); if (in_array('Zend_Cache_Backend_Interface', $implements)) { $backendType = $type;
Read On →
Feb 15, 2010 ·
2 minute read
magento
The latest and greatest version of Magneto has just been released (last Friday). This release includes some great new features like WYSIWYG editors on the admin side, performance improvements and loads more. Here’s what has been added: Implemented 3D Secure credit card validation (Visa and Mastercard) Full reimplementation of PayPal modules, includes lot of new functionality and numerous bugfixes Full review of frontend themes, introduced design cross-package fallback and the base/default theme.
Read On →