2-14.Angular-phpstorm配置php运行地址

phpstorm配置php运行地址

1.phpstorm配置

  1. 默认所有服务器文件在 wamp中的www文件夹中 , 点击www directory 能看到. 如果被修改,查寻Dircotory 前面 DocumentRoot 查看配置文件, 确认路径.
  2. 把文件夹,创建在服务器的目录当中。
  3. 在浏览器当中,查看文件 http://localhost/day2-code/
  4. 到phpstorm当中,进行配置 setting ->deployment
  5. 点击绿色添加,把文件地址,贴入进去。
PS: wamp 解释
W: windows  操作系统
A: apache   提供网页服务的应用程序
M: mysql    数据库
P: php      编程语言

问题1.PHP Interpreter is not configured

  • 1.当右上角弹出这个警告时,表示phpstrom没有获取到PHP服务器,点击蓝色链接手动配置服务器。
  • 2.配置Interpreter选项,点击后面的方块配置PHP。然后点击左上角的加号添加PHP,选择Other Local。

  • 3.在PHP executable 中添加wamp路径,例如:D:\soft\wamp\bin\php\php5.3.10\php.exe

  • 4.配置成功后,会显示PHP版本号。最后将External Libraries配置一下,项目就部署完成了。


问题2 本地搭建wamp,输入 http://127.0.0.1 访问正常,当输入http://localhost/ ,apache 出现You don't have permission to access/on this server.的提示

  • 1.找到httpd.conf,用记事本打开httpd.conf,

    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all

  • 然后将
    Deny from all 改为:Allow from all ,然后重新启动所有服务。
  • 2.还有将下面将 Deny from all 改为:Allow from all ,然后重新启动所有服务。
#   onlineoffline tag - don't remove
    Order Deny,Allow
    Deny from all
    Allow from 127.0.0.1

你可能感兴趣的:(2-14.Angular-phpstorm配置php运行地址)