TP5 在虚拟主机下 自带验证码不显示问题解决方案2020-05-08

此方法在百度虚拟机上也是可以的,亲测有效,如果此文对你有帮助,麻烦给个赞

我的TP5项目放到西部数码下 自带的验证码功能不显示 在网上找到了一种可使用的方法

清除缓冲区就应该可以了,解决的办法是在vendor/topthink/think-captcha/src/CaptchaController.php中加上这个ob_clean();就可以了

namespace think\captcha;
 
use think\Config;
 
class CaptchaController
{
    public function index($id = "")
    {
        $captcha = new Captcha((array)Config::get('captcha'));
        ob_clean();
        return $captcha->entry($id);
 
    }
}

用此即可解决验证码不出来的问题。

原文链接:https://blog.csdn.net/wanganji5252/article/details/86471528

你可能感兴趣的:(TP5 在虚拟主机下 自带验证码不显示问题解决方案2020-05-08)