Viewing 1 to 10 of 19 items
Archive | Miscellany RSS feed for this section

Magento – Get comment history of the order

You can use the below code to get the comment history of the order. $orderId = 100000454 ; $order = Mage::getModel(‘sales/order’)->loadByIncrementId($orderId); $commentsObject = $order->getStatusHistoryCollection(true); foreach ($commentsObject as $commentObj) { echo $commentObj->getComment() .” created at”.$commentObj->getCreatedAt() ; }

0

Mac OS X – Changing DNS settings

Here we'll show you how to manually assign DNS (Domain Name Service) servers for your Internet connection using OS X 10.6 Open System Preferences (either by clicking the icon on the dock or by clicking the Apple Icon and selecting it from the list). Double-click the Network icon. Double-click the connection you want to change DNS for. The connection  Full Article…

0

Magento – User manual for Delivery Extension

Delivery Schedule User Guide Admin can easily configure the Delivery Schedule module at Backend => Delivery Schedule => Configuration. Configuration Format Date: Allow admin to choose format date. At Frontend, each time slot will be displayed as the selected format. Weeks: Maximum number of weeks that customers can select delivery date. For example: When admin inserts 4 in this field,  Full Article…

0

Setting Up Git on Windows in Four Easy Steps

Introduction Setting up Git can be intimidating, especially for those that are trying a version control system for the first time or moving from Subversion. It use to be the case that Git was a huge hassle to install and use on Windows. However, today it’s very easy to use Git on Windows either through  Full Article…

1

The Mailinator

What is Mailinator? Mailinator is a different kind of email service. The biggest difference is that you don’t need to sign up. Any email name you can think of already exists @mailinator.com and you can use any of them. Want [email protected]? You got it. Want PrettyMothra? ScaryGavyn? No problem. Those and any other mailboxes you  Full Article…

0

Simple PHP Mail test

Prerequisites Access to your hosting via SSH or FTP Overview This is a handy little script to help test your hosting to ensure you can send emails from PHP based sites which include a contact form or similar. This includes CMS systems such as WordPress and Joomla as well as eCommerce platforms such as Magento. If  Full Article…

0

Formatting Text In Skype

Today I found out some features of the Skype chat that must have sneaked in in the last versions, since nobody has posted about it yet. I was having a hard time when pasting text into the chat which contained character that were easily misinterpreted as emoticons, e. g. (0) as well as using basic text formatting like  Full Article…

0

Skype – What are chat commands and roles?

I faced the issues when i am in many groups chat on Skype, Skype will notify me when there is a message in any groups, it may not relate to me, but it will make me focus on that content. I spent a lot of time on reading these content is not related to me on Skype, it  Full Article…

0