php8安装

./buildconf --force
./configure \
    --prefix=/usr/local/php \
    --with-curl \
    --with-gettext \
    --with-mysqli \
    --with-pear \
    --with-pdo-mysql \
    --with-xsl \
    --with-zlib \ …

阅读更多

php8安装ssl

No package ‘openssl’ found / Package ’libssl’, required by ‘openssl’, not found

错误

  • No package ‘openssl’ found - Package ’libssl’, required …

阅读更多

php上传文件 size为0

上传文件size为0,原因是超过了php.ini中配置的upload_max_filesize值 目前服务器配置的是5M size为0时$file[’error’] = 1

nginx配置client_max_body_size

阅读更多

pip安装supervisor

/usr/local/bin/echo_supervisord_conf > /etc/supervisord.conf

修改


[inet_http_server]         ; inet (TCP) server disabled by default
port=*:9001        ; ip_address:port specifier, *:port for all …

阅读更多