zoukankan      html  css  js  c++  java
  • PHP——安装ThinkPHP框架报错

    前言

    安装ThinkPHP框架报错,因为之前的报错总结使用的不是markdown编写的,整理起来有点麻烦,所以先单独记录下。

    步骤

    # composer create-project topthink/think tp
    Composer is operating slower than normal because you have Xdebug enabled. See https://getcomposer.org/xdebug
    Creating a "topthink/think" project at "./tp"
    Installing topthink/think (v6.0.7)
      - Installing topthink/think (v6.0.7): Extracting archive
        The Process class relies on proc_open, which is not available on your PHP installation.
        The archive may contain identical file names with different capitalization (which fails on case insensitive filesystems)
        Unzip with unzip command failed, falling back to ZipArchive class
    

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

    1. 修改php.ini配置文件

    删除proc_open,proc_get_status并保存配置文件

    disable_functions = passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,popen,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server
    

    1. 重启服务
    service php-fpm restart
    
    1. 安装框架
    # composer create-project topthink/think tp
    

    学无止境,谦卑而行.
  • 相关阅读:
    组原——④存储器4
    sdk和api的区别
    转载:直播测试
    生成短链接
    H5调原生
    Android Intent 启动方法和启动Action大全
    ps和top的区别
    安卓知识点
    正则基础之——捕获组(capture group)
    正则基础之——反向引用
  • 原文地址:https://www.cnblogs.com/wangyang0210/p/14527305.html
Copyright © 2011-2022 走看看