1.安装Nginx和php

1
2
sudo apt update
sudo apt install nginx php-fpm

2.安装相关php模块
sudo apt install php-zip
sudo apt install php-mbstring
sudo apt install php php-mysql php-gd php-curl
sudo apt install php-xml

3.修改 Nginx 配置文件,使用PHP-FPM处理PHP文件
sudo vi /etc/nginx/sites-available/default

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
server {
listen 80 defaultserver;
listen [::]:80 defaultserver;

root /var/www/html; # 网站目录

index index.php index.html index.htm index.nginx-debian.html; # 添加index.php
servername ;

location / {
tryfiles $uri $uri/ =404;
}

location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgipass unix:/var/run/php/php7.4-fpm.sock; # 确保版本与安装的匹配
}

location ~ /\.ht {
deny all;
}
}

3.重启niginx和php

1
2
sudo systemctl restart nginx
sudo systemctl restart php7.4-fpm # 确保版本与安装的匹配
  1. 创建一个PHP文件以测试:
1
echo "<?php phpinfo(); ?>" | sudo tee /var/www/html/info.php
  1. 在浏览器中打开 http://your_server_ip/info.php,应该会看到PHP信息页面

https://github.com/sharkbaby12345/CMS10--MXoneV10.8-mxone?tab=readme-ov-file
8. 修改:
热门推荐功能:获取视频数据中"平均分"前14的视频。
视频数据:
添加平均分查询:
(1)后端修改
D:\phpstudy_pro\www\application\admin\controller\Vod.php
修改97行,添加平均分查询:
image.png
(2)前端修改
image.png

D:\phpstudy_pro\www\application\admin\view\vod\index.html
添加查询参数:
image.png