2016年6月21日
摘要: 主要的一点: xdebug.remote_connect_back=0 这里xdebug.remote_connect_back=1将会使xdebug.remote_host的设置无效,从而无法debug。虽然xdebug.remote_connect_back=1,官方说明是自动检测浏览器的IP地 阅读全文
posted @ 2016-06-21 20:09 merryfreespace 阅读(337) 评论(0) 推荐(0) 编辑
  2015年12月22日
摘要: 在$home/.ssh/config中写入如下内容Host 192.168.1.1IdentityFile $PATH\.ssh\id_rsaHost 192.168.1.2IdentityFile $PATH\.ssh\id_rsa2 阅读全文
posted @ 2015-12-22 01:12 merryfreespace 阅读(497) 评论(0) 推荐(0) 编辑
  2015年12月1日
摘要: 改方法是调试drush所执行的php代码的方法,同样适用于普通的cli方式运行的php程序的调试。 1、首先需要调整cli方式的xdebug.ini配置: sudo vi /etc/php5/cli/conf.d/xdebug.ini 其中的 xdebug.remote_host=192.168.x 阅读全文
posted @ 2015-12-01 05:01 merryfreespace 阅读(409) 评论(0) 推荐(0) 编辑
  2015年8月26日
摘要: mysqld --install MySql --defaults-file={path}\my.ini 阅读全文
posted @ 2015-08-26 04:00 merryfreespace 阅读(135) 评论(0) 推荐(0) 编辑
  2015年4月2日
摘要: 1、要确保所有使用git的用户处于同一个组里面2、使用 chmod g+w 对该git仓库所在目录授权,组内所有用户可以执行写操作3、需要执行(非常重要):find . -type d -exec chmod g+s '{}' +否则可能报目录、文件权限错误。 阅读全文
posted @ 2015-04-02 01:09 merryfreespace 阅读(974) 评论(0) 推荐(0) 编辑
  2015年1月11日
摘要: http://www.phpied.com/non-onload-blocking-async-js/http://tokkonopapa.github.io/Non-Onload-Blocking-Async-Evolved/ 阅读全文
posted @ 2015-01-11 11:09 merryfreespace 阅读(143) 评论(0) 推荐(0) 编辑
  2015年1月10日
摘要: http://www.moosefs.org/download.html 阅读全文
posted @ 2015-01-10 01:29 merryfreespace 阅读(160) 评论(0) 推荐(0) 编辑
  2015年1月8日
摘要: https://github.com/woothemes/woocommerce-language-packshttp://ymb.me/downloads/blanco-%E8%87%AA%E9%80%82%E5%BA%94%E8%B4%AD%E7%89%A9-wordpress%E4%B8%BB... 阅读全文
posted @ 2015-01-08 00:12 merryfreespace 阅读(94) 评论(0) 推荐(0) 编辑
  2014年10月1日
摘要: https://www.drupal.org/project/jplayer采用了第三方的库jplayer,jplayer可以用在其他的开发语言中。 阅读全文
posted @ 2014-10-01 20:29 merryfreespace 阅读(158) 评论(0) 推荐(0) 编辑
  2014年9月21日
摘要: Drupal的主题机制当中存在很多种预处理函数和处理函数,看起来让人犯晕。本文为大家总结了它们执行的基本规律。Drupal的所有预处理函数在处理函数之前运行。template前缀的函数首先运行,module前缀的函数其次运行,theme前缀的函数最后运行。Drupal的多钩子函数在特定钩子函数之前运... 阅读全文
posted @ 2014-09-21 10:04 merryfreespace 阅读(226) 评论(0) 推荐(0) 编辑