vmqphp icon indicating copy to clipboard operation
vmqphp copied to clipboard

点击登录没反应

Open sisyphus1212 opened this issue 2 years ago • 7 comments

[root@10-60-27-108 vmqphp]# php php php-cgi php-fpm phpize [root@10-60-27-108 vmqphp]# php -v PHP 7.2.24 (cli) (built: Oct 22 2019 08:28:36) ( NTS ) Copyright (c) 1997-2018 The PHP Group Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies

sisyphus1212 avatar Oct 28 '23 19:10 sisyphus1212

image

sisyphus1212 avatar Oct 28 '23 19:10 sisyphus1212

image 大哥你这你的返回有问题吧?

sisyphus1212 avatar Oct 28 '23 19:10 sisyphus1212

server { listen 8090; server_name 0.0.0.0;

root /root/vmqphp/public;

location / {
    index index.html;
}

location ~ \.php$ {
    root /root/vmqphp/public/;
    include /usr/conf/fastcgi.conf;
    fastcgi_pass unix:/run/php-fpm/www.sock;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
}

location ~ /\.ht {
    deny all;
}

}

sisyphus1212 avatar Oct 29 '23 12:10 sisyphus1212

看我的仓库有基于原版修改好的

Jiu-ci avatar Mar 25 '24 01:03 Jiu-ci

把thinkphp升级以下即可,可以看看我的仓库https://github.com/wujingquan/vmqphp,兼容PHP8.0

wujingquan avatar May 28 '24 12:05 wujingquan

php改为7.4

CaizheZhou avatar Jul 17 '24 12:07 CaizheZhou