From eafa053e219cb7c96d9724883852b47e06d81b0c Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Thu, 13 Jun 2024 23:19:05 +0800 Subject: [PATCH] update --- plugins/php-apt/index.py | 4 ++-- plugins/php-yum/index.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/php-apt/index.py b/plugins/php-apt/index.py index ca88c5065..2d2fe9306 100755 --- a/plugins/php-apt/index.py +++ b/plugins/php-apt/index.py @@ -830,11 +830,11 @@ def uninstallLib(version): return mw.returnJson(False, '卸载错误信息!:' + data[1]) def getConfAppStart(): - pstart = mw.getServerDir() + '/php/app_start.php' + pstart = mw.getServerDir() + '/php-apt/app_start.php' return pstart def opcacheBlacklistFile(): - op_bl = mw.getServerDir() + '/php/opcache-blacklist.txt' + op_bl = mw.getServerDir() + '/php-apt/opcache-blacklist.txt' return op_bl def installPreInspection(version): diff --git a/plugins/php-yum/index.py b/plugins/php-yum/index.py index efd901315..cab7d6d74 100755 --- a/plugins/php-yum/index.py +++ b/plugins/php-yum/index.py @@ -803,11 +803,11 @@ def uninstallLib(version): return mw.returnJson(False, '卸载错误信息!:' + data[1]) def getConfAppStart(): - pstart = mw.getServerDir() + '/php/app_start.php' + pstart = mw.getServerDir() + '/php-yum/app_start.php' return pstart def opcacheBlacklistFile(): - op_bl = mw.getServerDir() + '/php/opcache-blacklist.txt' + op_bl = mw.getServerDir() + '/php-yum/opcache-blacklist.txt' return op_bl def installPreInspection(version):