diff --git a/backend/app/service/runtime_utils.go b/backend/app/service/runtime_utils.go
index 2b5bfca7a..322e09910 100644
--- a/backend/app/service/runtime_utils.go
+++ b/backend/app/service/runtime_utils.go
@@ -62,7 +62,7 @@ func handleParams(image, runtimeType, runtimeDir string, params map[string]inter
if extendsArray, ok := extends.([]interface{}); ok {
strArray := make([]string, len(extendsArray))
for i, v := range extendsArray {
- strArray[i] = fmt.Sprintf("%v", v)
+ strArray[i] = strings.ToLower(fmt.Sprintf("%v", v))
}
params["PHP_EXTENSIONS"] = strings.Join(strArray, ",")
}
diff --git a/frontend/src/lang/modules/en.ts b/frontend/src/lang/modules/en.ts
index da22cea21..58a597bae 100644
--- a/frontend/src/lang/modules/en.ts
+++ b/frontend/src/lang/modules/en.ts
@@ -1558,9 +1558,11 @@ const message = {
toupgrade: 'To Upgrade',
edit: 'Edit runtime',
extendHelper:
- 'Extensions that do not exist in the list can be selected after manual input, for example: input sockets, and then select the first one in the drop-down list',
+ 'Extensions that do not exist in the list can be selected after manual input, for example: input sockets, and then select the first one in the drop-down list,',
rebuildHelper:
'After editing the extension, you need to go to the [App Store-Installed] page to rebuild the PHP application to take effect',
+ phpPluginHelper:
+ 'View PHP extension list ',
},
process: {
pid: 'Process ID',
diff --git a/frontend/src/lang/modules/zh.ts b/frontend/src/lang/modules/zh.ts
index 7a12093b5..ddf296c5f 100644
--- a/frontend/src/lang/modules/zh.ts
+++ b/frontend/src/lang/modules/zh.ts
@@ -1478,8 +1478,10 @@ const message = {
openrestryWarn: 'PHP 需要升级 OpenResty 至 1.21.4.1 版本以上才能使用',
toupgrade: '去升级',
edit: '编辑运行环境',
- extendHelper: '列表中不存在的扩展,可以手动输入之后选择,例:输入 sockets ,然后在下拉列表中选择第一个',
+ extendHelper: '列表中不存在的扩展,可以手动输入之后选择,例:输入 sockets ,然后在下拉列表中选择第一个,',
rebuildHelper: '编辑扩展后需要去【应用商店-已安装】页面【重建】PHP 应用之后才能生效',
+ phpPluginHelper:
+ "查看 PHP 扩展列表 ",
},
process: {
pid: '进程ID',
diff --git a/frontend/src/styles/common.scss b/frontend/src/styles/common.scss
index c56448e3e..205790846 100644
--- a/frontend/src/styles/common.scss
+++ b/frontend/src/styles/common.scss
@@ -334,3 +334,7 @@
background: none;
border: none;
}
+
+.common-prompt {
+ margin-bottom: 20px !important;
+}
diff --git a/frontend/src/views/app-store/detail/install/index.vue b/frontend/src/views/app-store/detail/install/index.vue
index 471a541dd..e45a5b034 100644
--- a/frontend/src/views/app-store/detail/install/index.vue
+++ b/frontend/src/views/app-store/detail/install/index.vue
@@ -11,12 +11,7 @@
-
+
-
+
diff --git a/frontend/src/views/container/container/upgrade/index.vue b/frontend/src/views/container/container/upgrade/index.vue
index 0f9ba33f5..a612e8fe7 100644
--- a/frontend/src/views/container/container/upgrade/index.vue
+++ b/frontend/src/views/container/container/upgrade/index.vue
@@ -9,7 +9,7 @@
diff --git a/frontend/src/views/container/setting/log/index.vue b/frontend/src/views/container/setting/log/index.vue
index fefc62451..389c8901a 100644
--- a/frontend/src/views/container/setting/log/index.vue
+++ b/frontend/src/views/container/setting/log/index.vue
@@ -10,7 +10,7 @@
-
+
- {{ $t('container.cutLogHelper1') }}
diff --git a/frontend/src/views/host/file-management/chown/index.vue b/frontend/src/views/host/file-management/chown/index.vue
index 3648d7035..b5846f510 100644
--- a/frontend/src/views/host/file-management/chown/index.vue
+++ b/frontend/src/views/host/file-management/chown/index.vue
@@ -5,7 +5,7 @@
-
+
diff --git a/frontend/src/views/setting/safe/mfa/index.vue b/frontend/src/views/setting/safe/mfa/index.vue
index 7c3723bdf..83011d28a 100644
--- a/frontend/src/views/setting/safe/mfa/index.vue
+++ b/frontend/src/views/setting/safe/mfa/index.vue
@@ -10,7 +10,7 @@
-
+
{{ $t('setting.mfaAlert') }}
diff --git a/frontend/src/views/website/runtime/create/index.vue b/frontend/src/views/website/runtime/create/index.vue
index bf196c044..dc4ebf298 100644
--- a/frontend/src/views/website/runtime/create/index.vue
+++ b/frontend/src/views/website/runtime/create/index.vue
@@ -83,13 +83,12 @@
v-model:rules="rules"
>
-
-
+
+ {{ $t('runtime.extendHelper') }}
+
+
+ {{ $t('runtime.rebuildHelper') }}
+