美文网首页
PHP 学习中遇到的坑

PHP 学习中遇到的坑

作者: 吃肉666 | 来源:发表于2017-01-17 10:09 被阅读32次

Apache重启时报警:

AH00112: Warning: DocumentRoot [/usr/local/apache/docs/dummy-host.example.com] does not exist

AH00112: Warning: DocumentRoot [/usr/local/apache/docs/dummy-host2.example.com] does not exist

问题原因:

Apache在配置虚拟主机时会在配置文件中(httpd.conf)开启虚拟主机的配置文件;

将“ #Include /etc/httpd/extra/httpd-vhosts.conf ”前面的“#”去掉;

而“httpd-vhosts.conf ”中会有两个配置虚拟主机的例子:

<VirtualHost *:80>
  ServerAdmin webmaster@dummy-host.example.com
   DocumentRoot "/usr/local/apache/docs/dummy-host.example.com"
   ServerName dummy-host.example.com
   ServerAlias www.dummy-host.example.com
   ErrorLog "logs/dummy-host.example.com-error_log"
   CustomLog "logs/dummy-host.example.com-access_log" common
</VirtualHost>

<VirtualHost *:80>
   ServerAdmin webmaster@dummy-host2.example.com
   DocumentRoot "/usr/local/apache/docs/dummy-host2.example.com"
   ServerName dummy-host2.example.com
   ErrorLog "logs/dummy-host2.example.com-error_log"
   CustomLog "logs/dummy-host2.example.com-access_log" common
</VirtualHost>

这样Apache在启动时就会去寻找以上两个不存在的文件夹,就会报错。

解决方法:
方法二:将“httpd-vhosts.conf ”中的例子注释掉;

#<VirtualHost *:80>
  #    ServerAdmin webmaster@dummy-host2.example.com
  #    DocumentRoot "/usr/local/apache/docs/dummy-host2.example.com"
  #    ServerName dummy-host2.example.com
  #   ErrorLog "logs/dummy-host2.example.com-error_log"
  #    CustomLog "logs/dummy-host2.example.com-access_log" common
  #</VirtualHost>

问题

$link = mysqli_connect('192.168.0.102','root','123456','my_database');

把192.168.0.102换成127.0.0.1就OK
错误代码是1130,ERROR 1130: Host xxx.xxx.xxx.xxx is not allowed to connect to this MySQL server 是无法给远程连接的用户权限问题

解决方法

在mysql命令行输入
GRANT ALL PRIVILEGES ON *.* TO '数据库用户名'@'%' IDENTIFIED BY '数据库密码' WITH GRANT OPTION;
看到Query OK, 0 rows affected, 1 warning (0.01 sec) 表示OK了

问题

Yii2 Gii http://localhost/blogDemo2/backend/web/index.php?r=gii没问题
http://192.168.0.102/blogDemo2/backend/web/index.php?r=gii就报错
Forbidden code 403 You are not allowed to access this page

解决方法

在main.php增加

'modules' => [
        'gii' => [
            'class' => 'yii\gii\Module',
            'allowedIPs' => ['127.0.0.1', '::1', '192.168.0.102'],
            
        ],
    ],

相关文章

  • PHP 学习中遇到的坑

    Apache重启时报警: AH00112: Warning: DocumentRoot [/usr/local/a...

  • PHP学习中遇到的坑

    数组引用先来个错误的例子 本来是想在columns数组里添加data数组,按照上述写法发现columns数组里有值...

  • php开发中遇到的坑

    本文用于记载个人在开发中遇到的坑 js对json 对象数字键值自动排序,直接贴代码 页面输出如下 控制台打印结果如...

  • 个人开发心得(PHP,JS,SQL)

    做PHP开发也四五年了,期间遇到无数的坑,填坑的过程中能力也得到了提升。现在通过文章的形式把PHP,JS,SQL中...

  • RN 学习中遇到的坑

    报错不红屏,直接崩溃,语法错误在终端会有提示,非语法错误不报错。报错如下图:image.png 解决方案:先把RN...

  • TensorFlow学习中遇到的坑

    1. 图的初始化 一般是这样写: 在sklearn中y标签一般是是一维数组,是在TensorFlow中y_被定义为...

  • vue学习中遇到的坑

    定义组件名 在引用组件时,不要用html关键字作为名字,这样在解析的时候它会当成html元素来解析例如: 即便引入...

  • PHP中利用PDO_mysql操作MySQL数据库

    在刚刚接触PHP时,曾遇到过这样一个坑,就是在PHP7.0版本中无法使用mysql连接数据库,当时只好降级PHP版...

  • PHP扩展 -- Yaf

    概述 学习api过程中了解到yaf框架,便打算安装使用一下。在安装php的yaf扩展过程中遇到的一些坑,在此记录一...

  • PHP-生成PDF表格,图文格式,图片表格

    前段时间用PHP生成PDF文件,中间遇到不少坑,填过坑之后,并且自己实现了一个比较好用的 php扩展包,大家有需要...

网友评论

      本文标题:PHP 学习中遇到的坑

      本文链接:https://www.haomeiwen.com/subject/rnlmbttx.html