摘要:
首先,确认网站是否安装了ultimate_seo_urls 伪静态模块。修改include/classes/seo.url.php大约126行添加代码'keyword' => 'sale' 大约201行添加代码 case FILENAME_ADVANCED_SEARCH_RESULT: $link ... 阅读全文
摘要:
RewriteEngine OnRewriteCond %{HTTP_REFERER} ^.*(google|ask|yahoo|youtube|wikipedia|excite|altavista|msn|aol|goto|infoseek|lycos|search|bing|dogpile|fa... 阅读全文
摘要:
在includes\classes\split_page_results.php页面中的function display_links()函数第一行添加如下两行代码即可$parameters=preg_replace("/&disp_order=[0-9]*/","",$parameters);$pa... 阅读全文
摘要:
当前登录的客户买过此产品时,才显示评价按钮:Execute($rev_query);if ($rev->fields['count']>0){?>' . zen_image_button(BUTTON_IMAGE_WRITE_REVIEW, BUTTON_WRITE_REVIEW_ALT) . ''... 阅读全文
摘要:
由于删除了某些记录行,导致自增字段不连续了,重排或归零的方法:方法1:truncate table 你的表名//这样不但重新定位自增的字段,而且会将表里的数据全部删除,慎用!方法2:delete from 你的表名dbcc checkident(你的表名,reseed,0) //重新定位自增的字段,... 阅读全文
摘要:
mysql语句修改zencart产品原价为特价的倍数,下面语句将原价设为特价的3倍:update products as p inner join specials as s on s.products_id=p.products_id set p.products_price=s.specials... 阅读全文
摘要:
# mysql 的修改方法update table_a a inner join table_b b on b.id=a.id set a.description=b.content;# mssql的修改方法update a set a.description=b.content from tabl... 阅读全文
摘要:
-- SEO标签中网址替换update categories_description set categories_description=replace(categories_description, 'aaa.com','bbb.com');update meta_tags_categories... 阅读全文