解决win7 64位下 php curl扩展无法使用问题

21. May 2013
在win7 64位下运行wamp,提示“系统没有安装CURL扩展” 在wamp 任务栏上启用扩展也没有作用。 copy几个dll到windows\system32下也无效。   这里有个解决方法 http://stackoverflow.com/questions/10939248/php-curl-not-working-wamp-on-windows... [More]

写程序 ,

安全的导入utf8编码的mysql dump 数据

21. May 2013
    mysql -u username -p database < dump_file # this is bad 简单的说:为了避免shell的编码影响导入,在导出时使用-r参数指定编码,然后使用source命令导入数据。     安全地dump导出: 不要这样做,会把编码搞砸:   mysqldump -uroot -p databa... [More]

写程序

curl获取302跳转之后的内容

29. March 2013
很简单,只需要在curl上增加一个设置即可 $ch = curl_init($url); $headers = array( "Content-type: text/xml;charset=\"utf-8\"", "Accept: text/html, application/xml;q=0.9, application/x... [More]

写程序

公共Web站点开发最佳实践(ASP.NET)

29. December 2011
最近刚刚完成了一个公共网站项目的开发,进行一些总结。 此站点的大致情况如下: 不需要用户登录 架构需要高可用 用户访问量不高,日10万PV 页面数量<100 具体方案: 1 系统架构   2 Web服务器集群 通过F5(硬件)或增加Nginx服务器(软件)实现负载平衡和容灾处理 在使用集群时需要保证各服务器的MachineKey一致,以保证页面... [More]

写程序

<Yellow> Coldplay 纪念乔布斯

13. December 2011

听音乐

Green Day <Basket Case> 万人大合唱

19. November 2011
 Do you have the time, To listen to me whine, About nothing and everything all at once? I am one of those, Melodramatic fools, Neurotic to the bone, No doubt about it. Sometimes I give myself the... [More]

听音乐

【根本不算什么】老尾巴+黄大根=尾巴二根

15. November 2011
 老是带着斗笠,  拿着琴唱遍全国的朋克民谣行者 “地球啊,你的球如此的痛,我的痛又算个球 ”

听音乐

老男孩 - 筷子兄弟

9. November 2011
一首缅怀青春的歌曲

听音乐

CWOW 4.2 插件整理

14. October 2011
插件 类型 版本 下载地址 ArkInventory 背包整合 3.02.82i http://www.wowace.com/media/files/535/713/ArkInventory-3.02.82.zip Grid 团队框架 4.2.0.1442 http://www.wowace.com/media/files/530/708/Gri... [More]

玩游戏

Microsoft.SqlServer.msxml6_interop.dll causes VS2010 cannot compile

14. October 2011
The main situation I faced is my project references SSIS package Microsoft.SQLServer.ManagedDTS.dll, in VS2010 compile as .Net 3.5. I have both SqlServer 2005 and 2008 on the same machine. Here are th... [More]

写程序