posted @ 2015-08-07 11:07 凤眠 阅读(4100) 评论(0) 推荐(0) 编辑
摘要:
1、从官网下载安装MySQL Installer。MySQL Installer 提供了简单易用、向导式的 MySQL 软件的安装体验过程(目前只支持 Windows),包含的产品有:MySQL Server,所有的 connectors,Workbench 和示例模型,示例数据库,文档。下载地址:... 阅读全文
摘要:
通过本机以外的机器访问 Gii,请求会被出于安全原因拒绝,在 config/web.php 配置 Gii 为其添加允许访问的 IP 地址:if (YII_ENV_DEV) { // configuration adjustments for 'dev' environment $conf... 阅读全文
posted @ 2015-08-06 12:51 凤眠 阅读(731) 评论(0) 推荐(0) 编辑
摘要:
nginx.conf#user nobody;worker_processes 1;#error_log logs/error.log;#error_log logs/error.log notice;#error_log logs/error.log info;#pid ... 阅读全文
posted @ 2015-08-06 10:55 凤眠 阅读(383) 评论(0) 推荐(0) 编辑
摘要:
启动php-cgi.bat@echo off E: cd E:\php-5.6.11-Win32-VC11-x64php-cgi.exe -b 127.0.0.1:9000 -cphp.ini-productionpause另:php.ini-production下载 阅读全文
posted @ 2015-08-06 10:27 凤眠 阅读(1126) 评论(0) 推荐(0) 编辑
摘要:
启动nginx.bat@echo off D: cd D:\Program Files\nginx-1.9.3tasklist | findstr /i "nginx.exe" echo "nginx is starting on port 80" start "" "nginx.exe" ... 阅读全文
posted @ 2015-08-06 09:42 凤眠 阅读(722) 评论(0) 推荐(0) 编辑
摘要:
在 php.ini 文件中设置 cgi.fix_pathinfo=0 ,能避免掉很多不必要的 stat() 系统调用。 阅读全文
posted @ 2015-08-06 09:30 凤眠 阅读(154) 评论(0) 推荐(0) 编辑
摘要:
E:\xampp\php>php-cgi.exe -b 127.0.0.1:9000 -c php.ini 阅读全文
posted @ 2015-08-05 22:54 凤眠 阅读(3119) 评论(0) 推荐(0) 编辑
摘要:
location / { root E:/xampp/htdocs/html5/php/yii2-rest-master/rest/web; index index.html index.htm; }注意将原路径中的“\”改成“/” 阅读全文
posted @ 2015-08-05 22:12 凤眠 阅读(749) 评论(0) 推荐(0) 编辑
摘要:
将apache-tomcat-8.0.23\lib下的servlet-api.jar拷贝到C:\Program Files\Java\jdk1.8.0_31\jre\lib\ext下即可 阅读全文
posted @ 2015-08-05 11:49 凤眠 阅读(1138) 评论(0) 推荐(0) 编辑