Posts

Showing posts from 2015

Magento: Google Checkout Warning: include(Mage/Googlecheckout/Block/Adminhtml/Shipping/Merchant.php): failed to open stream: No such file or directory in app/code/local/Varien/Autoload.php on line 98

Whenever you see this error: Warning: include(Mage/Googlecheckout/Block/Adminhtml/Shipping/Merchant.php): failed to open stream: No such file or directory  in app/code/local/Varien/Autoload.php on line 98 It only means that in app/code/core/Mage/GoogleCheckout/etc/config.xml, the block was not declared. So you just have to add this inside the global node:         <blocks>             <googlecheckout>                 <class>Mage_GoogleCheckout_Block</class>             </googlecheckout>         </blocks> Did that solve the issue? Please leave your comment. Thanks! P.S. If you want the other way of solving this issue (which is the more appropriate one), just let me know.

Magento 1.9: How to re-arrange Wishlist page headings

On wishlist.xml wishlist_index_index, just re-arrange the children under customer.wishlist.items from top to bottom which will result to left to right arrangement on the Wishlist page Also, a bonus. You can also set the heading title there.

Ubuntu 14.04: How to install Compass and Ruby

Simple. sudo apt-get install ruby-compass Done.

Ubuntu 14.04: Can't install phing

It's really such a headache when I migrated to Ubuntu 14.04. Lots of headaches! But anyway, here we go: First you need to install pear first by doing the following command on Terminal: sudo apt-get install php-pear Then add pear channel: sudo pear channel-discover pear.phing.info Install Phing: sudo pear install -Z phing/phing The -Z option will download .tar file instead of the damn .tgz (which always throws this error):  could not extract the package.xml file from "/build/buildd/php5-5.5.9+dfsg/pear-build-download/phing-2.9.1.tgz" Download of "phing/phing" succeeded, but it is not a valid package archive Error: cannot download "phing/phing" Download failed install failed Hopefully it works on your end. Please comment below if it worked.