WINDOW安装:
1、首先在此网站 https://www.bt.cn/ 下载宝塔;
2、安装在D盘中,安装完成后在软件面版的右上角菜单设置账号和密码;
3、访问127.0.0.1:888 ,用刚才设置的账号密码登录;
4、在软件管理-->运行环境-->安装(Apache或Nginx,mysql5.6,php5.6);
5、配置XDebug断点调试,如不需断点调试可以跳过此步骤:在运行环境->php5.6->设置->配置文件 ,找到Xdebug,将以下代码复制进去;
注:以下路径要记得看是否跟自己安装宝塔的路径一致
zend_extension = D:\BtSoft\WebSoft\php\5.6\ext\php_xdebug.dll
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir ="D:\BtSoft\WebSoft\temp\xdebug"
xdebug.trace_output_dir ="D:\BtSoft\WebSoft\temp\xdebug"
xdebug.profiler_output_name = "cache.out.%t-%s"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.remote_mode = req
xdebug.remote_port = 9001
xdebug.idekey=PHPSTORM
xdebug.remote_log=D:/wnlp/php-5.6.32/debug.log
6、添加网站域名:
7、网站目录设置,以下为Thinkphp5为例:
8、设置伪静态为thinkphp:
9、修改window的hocts文件,配置刚才设置的域名,按住ctrl+r,输入 C:\Windows\System32\drivers\etc,快速找到文件:
在文件底部,按以下图设置,(如有文件保存不了,请自行百度设置账号的权限):
10、数据库连接,在安全里面开放3306端口,然后就可以新建数据库了;
11、在phpstorm编译中配置断点调试,直接上图(不需断点调试可以跳过此步骤):
LINUX下安装:
1、命令行输入:
yum install -y wget && wget -O install.sh http://download.bt.cn/install/install.sh && sh install.sh
安装完成会返回账户及密码;
2、放行端口:20/21/22/80/888/8888/39000-40000;
3、访问 ip:8888 登录宝塔面板安装集成环境及相关配置即可;