博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mac下phpstorm 浏览器出现 502 bad gateway 解决办法
阅读量:4969 次
发布时间:2019-06-12

本文共 1216 字,大约阅读时间需要 4 分钟。

 

重新安装PHP

安装php7.1

brew install php71

会提示安装在哪里

==> php@7.1To enable PHP in Apache add the following to httpd.conf and restart Apache:    LoadModule php7_module /usr/local/opt/php@7.1/lib/httpd/modules/libphp7.so    
SetHandler application/x-httpd-php
Finally, check DirectoryIndex includes index.php DirectoryIndex index.php index.htmlThe php.ini and php-fpm.ini file can be found in: /usr/local/etc/php/7.1/php@7.1 is keg-only, which means it was not symlinked into /usr/local,because this is an alternate version of another formula.If you need to have php@7.1 first in your PATH run: echo 'export PATH="/usr/local/opt/php@7.1/bin:$PATH"' >> ~/.bash_profile echo 'export PATH="/usr/local/opt/php@7.1/sbin:$PATH"' >> ~/.bash_profileFor compilers to find php@7.1 you may need to set: export LDFLAGS="-L/usr/local/opt/php@7.1/lib" export CPPFLAGS="-I/usr/local/opt/php@7.1/include"To have launchd start php@7.1 now and restart at login: brew services start php@7.1Or, if you don't want/need a background service you can just run: php-fpm

点击配置

配置cgi,将/usr/local/opt/php@7.1/bin 粘贴到下方输入框中,就会自动补全

 

新建文件,在PHPstorm 中打开

如图

结果

参考:

转载于:https://www.cnblogs.com/sea-stream/p/11184177.html

你可能感兴趣的文章
cryptoJS AES 加解密简单使用
查看>>
面向对象
查看>>
Lua学习笔记(4): 字符串
查看>>
从C#的Singleton设计模式
查看>>
smtp outlook邮件发送非授权码模式
查看>>
在ubuntu14.04上漏洞环境vulndocker的DOCKER搭建
查看>>
HTML 上传图片实用小技巧
查看>>
Android入门:向TextView添加滚动条
查看>>
LeetCode Sparse Matrix Multiplication
查看>>
【转】 《基于MFC的OpenGL编程》Part 8 Colors
查看>>
LeetCode Find K Pairs with Smallest Sums
查看>>
C#XML配置链接Oracle数据库
查看>>
颜色字符串转换
查看>>
Hdu 1011 Starship Troopers 树形dp
查看>>
C++中bool类型变量初值对程序的影响
查看>>
详细介绍如何自研一款"博客搬家"功能
查看>>
PreparedStatement 在mysql下中文乱码解决方案
查看>>
C#_ProgressBar 显示进度数字
查看>>
欧拉回路与欧拉路径
查看>>
奇葩锁
查看>>