Get Table Name in Magento (eg with Table Prefix)

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');

WordPress Installer Shell Script

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/* ./

Ubuntu XAMPP XDebug Install

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 →

Collaborative Javascript Debugging - JSBin

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.

Magento 1.4 Fatal Error Stack Frame + Solution

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 →

Magento 1.4 Stable Released

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 →