Laravel 6 proc_open修复「建议收藏」

2022-08-09 20:33:31 浏览数 (1)

大家好,又见面了,我是你们的朋友全栈君。

Laravel版本:6 PHP版本:7.3 描述:安装Laravel 6后,我收到以下错误消息:

The Process class relies on proc_open, which is not available on your PHP installation.

这是因为在调试模式下启用了Flare错误报告服务,因此有一种解决方法。

发布flare配置文件 php artisan vendor:publish –tag=flare-config

并在config / flare.php中

代码语言:javascript复制
'collect_git_information' => false 
代码语言:javascript复制
'reporting' => [
        'anonymize_ips' => true,
        'collect_git_information' => false,
        'report_queries' => true,
        'maximum_number_of_collected_queries' => 200,
        'report_query_bindings' => true,
        'report_view_data' => true,
    ],

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/105794.html原文链接:https://javaforall.cn

0 人点赞