5 * * * * /usr/bin/lynx -source http://example.com/cron.php 45 * * * * /usr/bin/wget -O - -q -t 1 http://www.example.com/cron.php 45 * * * * curl -s http://example.com/cron.php
Month: October 2014
Git操作:强制删除提交到远程版本库的数据与版本记录
git reset --hard HEAD~2 # 取消当前版本之前的两次提交 git push origin HEAD --force # 强制提交到远程版本库,从而删除之前的两次提交数据
Magento active filtre by costume attribute
1. setting in coustume attribute Use In Layered Navigation ->select fitrable 2. setting in categories Is Anchor->yes
solution for qtranslate not support custom post
Add this function to function.php and wordpress will support qtranslate custom url with lang parameter function qtrans_menuitem( $menu_item ) { if ($menu_item->type == 'custom' && stripos($menu_item->url, get_site_url()) !== false){ $menu_item->url = qtrans_convertURL($menu_item->url); } return $menu_item; } add_filter('wp_setup_nav_menu_item', 'qtrans_menuitem', 0); //add...