摘要:
安装: 1.获取redis资源 wget http://download.redis.io/releases/redis-4.0.8.tar.gz 2.解压 tar xzvf redis-4.0.8.tar.gz 3.安装 cd redis-4.0.8 make cd src make instal 阅读全文
摘要:
加上这个配置: if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) { webSetting.setMediaPlaybackRequiresUserGesture(false); } 就可以啦 阅读全文
摘要:
PQ8PP6VBIC-eyJsaWNlbnNlSWQiOiJQUThQUDZWQklDIiwibGljZW5zZWVOYW1lIjoi5b285bK4IDMiLCJhc3NpZ25lZU5hbWUiOiIiLCJhc3NpZ25lZUVtYWlsIjoiIiwibGljZW5zZVJlc3RyaWN 阅读全文
摘要:
1.阿里云后台安全实例,添加开启mysql端口3306,入方向 2.登录到mysql, 授权外部可链接 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '密码' WITH GRANT OPTION; FLUSH PRIVILEGES; 阅读全文
摘要:
1.安装svn yum install subversion 2. 配置服务 mkdir -p /data/wwwsvn/myrepo #创建svn仓库的目录 这里可以自定义创建的目录,注意不是网站的文件目录。 svnadmin create /data/wwwsvn/myrepo #与上面的目录相 阅读全文
摘要:
安装composer必须要和对应的php版本匹配,否则后面是个坑!php70的一半安装composer1.4.1,php71的安装1.4.2版本 本机是php版本是7.0.20, 所以安装1.4.1版本composer; 1. https://getcomposer.org/download/ 下载 阅读全文
摘要:
1.卸载mac自带的apache和php,有用集成环境,建议也删掉 先停掉apache: sudo apachectl stop 然后统统删掉 sudo rm /usr/sbin/httpd sudo rm -r /etc/apache2/ 2.安装Nginx 安装完后,先不急着修改配置文件 先设置 阅读全文
摘要:
具体参考官网:https://brew.sh/index_zh-cn.html 1.安装homebrew /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install) 阅读全文
摘要:
$new_ship = array( array('firstprice'=>6,'secondprice'=>4,), array('firstprice'=>7,'secondprice'=>4,), array('firstprice'=>5,'secondprice'=>7,), array 阅读全文
摘要:
修改乱码进入目录:配置目录 /etc1. 编辑 gitconfig 文件 文件中增加内容[gui]encoding=utf-8#代码库统一使用utf-8[i18n]commitencoding=GB2312#log编码,window下默认gb2312,声明后发到服务器才不会乱码[svn]path... 阅读全文