DVWA安装后File Inclusion出现问题The PHP function allow_url_include is not enabled.

在安装DVWA来做实验环境时,在File Inclusion模块出现The PHP function allow_url_include is not enabled.

这里贴出来,方便以后遇到的小伙伴们。

解决问题办法,修改php.ini配置文件

我的事kali上面,使用find / -name php.ini //查找路径

vi XXXX/php.ini  //修改配置文件

在配置文件里面按shift+:然后再按 /allow_url_include //定位字符

DVWA安装后File Inclusion出现问题The PHP function allow_url_include is not enabled._第1张图片

把allow_url_include = off 修改成allow_url_include = on

然后重启apache,问题解决。

DVWA安装后File Inclusion出现问题The PHP function allow_url_include is not enabled._第2张图片

你可能感兴趣的:(The,PHP,function,is,not,enabled.)