摘要:
JAVA: JS: 转自http://blog.csdn.net/wangkai0681080/article/details/50178507 阅读全文
摘要:
$info = M('Order')->alias('a') ->field('count(DISTINCT(a.order_user_id)) as buy_user_num,count(*) as sum,sum(a.close_pay) as order_sum') ->join('__APP 阅读全文
摘要:
netstat -napo |grep "php-fpm" | wc -l 阅读全文
摘要:
转载自:http://blog.csdn.net/u014369799/article/details/51305788 在WebView中如果使用到支付宝,需要添加以下代码,否则操作系统会将支付宝的URL拦截,导致你打不开支付宝页面。 这里要注意的是上面需要加下try catch,因为你传过来的u 阅读全文
摘要:
function getSevertime(){ var xmlHttp = new XMLHttpRequest(); xmlHttp.open("get",location.href,false); xmlHttp.send(); var severtime=new Date(xmlHttp.g 阅读全文
摘要:
mysql 启动总是报错: 错误日志中显示: [ERROR] Fatal error: Can't open and lock privilege tables: Table 'mysql.host' doesn't exist 表不存在,肯定指定目录datadir错了 vi /etc/my.cnf 阅读全文
摘要:
NGINX下配置自定义的404页面是可行的,而且很简单,只需如下几步,需要的朋友可以参考下 NGINX下配置自定义的404页面是可行的,而且很简单,只需如下几步,需要的朋友可以参考下 1. 创建自己的404.html页面 2.更改nginx.conf在http定义区域加入: fastcgi_inte 阅读全文
摘要:
每周: select count(*) as cnt,week(editdate) as weekflg from projects where year(editdate)=2007 group by weekflg 每月: select count(*) as cnt,month(editdat 阅读全文
摘要:
nginx日志中访问最多的100个ip及访问次数 awk '{print $1}' /opt/software/nginx/logs/access.log| sort | uniq -c | sort -n -k 1 -r | head -n 100 阅读全文
摘要:
源文章: ubuntu下安装mcrypt 1、首先要下载三个软件 0libmcrypt-2.5.8.tar.gz 下载地址:http://sourceforge.net/project/showfiles.php?group_id=87941&package_id=91774&release_id= 阅读全文