https://programming-review.com/installing-xdebug-on-centos/
install xenserver 6.5 from USB Stick
http://www.davethijssen.nl/2013/07/install-citrix-xenserver-62-from-usb.html
Display a Magento category path in SQL
https://blog.kyp.fr/magento-tips-display-a-magento-category-path-in-sql/
magento api debug
ob_start();
Mage::run($mageRunCode, $mageRunType);
if(preg_match('/api/', $_SERVER['REQUEST_URI'])) {
Mage::log('<<< request '.$_SERVER['REQUEST_METHOD'].': '.$_SERVER['REQUEST_URI'], null, 'api.log');
if($_SERVER['REQUEST_METHOD'] == 'POST') {
Mage::log('<<< '.file_get_contents('php://input'), null, 'api.log');
}
Mage::log('>>> '.ob_get_contents(), null, 'api.log');
}
ob_end_flush();
http://stackoverflow.com/questions/12084772/magento-api-logs