To shutdown pg_ctl immediately

Sometimes it doesn’t listen to the command pg_ctl stop, the following option can be used:

pg_ctl stop -m fast

or

pg_ctl stop . . . → Read More: To shutdown pg_ctl immediately

Command to vacuum pg_sql database

To improve the performance of pg_sql database, it is necessary to vacuum regularly. Here is the command

vacuum full . . . → Read More: Command to vacuum pg_sql database

Reverse the product list in Magento, to show newest product first

update the file
app/design/frontend/default/megastore2/template/catalog/product/list/toolbar.phtml

change the “asc” . . . → Read More: Reverse the product list in Magento, to show newest product first

Fix Magento Chinese PDF Wrong Charset

解决Magento中文订单PDF 输出乱码

这个BUG 是Magento本地化程度尚欠的一点体现。

这是由于 Magento 的 PDF 的字体是英文字体,并不支持中文,所以产生的 PDF 里中文无法显示,只显示为一个“口”。

可以通过重写Magento 的生成PDF 的核心代码,把字体修改为中文字体来实现修正。由此须准备一个 TTF 字体,如下,将标宋字体放在了$site_dir/media/fonts/STSONG.TTF,把 app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php 建一个副本到 app/code/local/Mage/Sales/Model/Order/Pdf/Abstract.php,然后大约在561 行:

protected function _setFontRegular($object, $size = 7)
{
$font = Zend_Pdf_Font::fontWithPath(Mage::getBaseDir() . ‘/media/fon
ts/STSONG.TTF’);
$object->setFont($font, $size);
return $font;
}

protected function _setFontBold($object, $size = 7)
{
$font = Zend_Pdf_Font::fontWithPath(Mage::getBaseDir() . ‘/media/fon
ts/STSONG.TTF’);
$object->setFont($font, $size);
return $font;
}

protected function _setFontItalic($object, $size = 7)
{
$font = Zend_Pdf_Font::fontWithPath(Mage::getBaseDir() . ‘/media/fon
ts/STSONG.TTF’);
$object->setFont($font, . . . → Read More: Fix Magento Chinese PDF Wrong Charset

Magento 1.4 toolbar bug

It is nice to have magento 1.4 released but there is a small bug in toolbar which makes the list and grid view error.

And I don’t like the error report in write in a number file stored in var/report, even though it is good to have it not showing in the frontend

It is a easy fix . . . → Read More: Magento 1.4 toolbar bug

Change Magento Directory Permission to enable magento connect

find . -type d -exec chmod 777 . . . → Read More: Change Magento Directory Permission to enable magento connect

Weoffer.com lanuch for production

Weoffer.com launch . . . → Read More: Weoffer.com lanuch for production