moshaorui 5 달 전
부모
커밋
430e777f34
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      app/Distributor/Controllers/SitePagesController.php

+ 5 - 0
app/Distributor/Controllers/SitePagesController.php

@@ -35,6 +35,11 @@ class SitePagesController extends AdminDistController
      */
     protected function grid()
     {
+        // 检查是否支持 pcntl 扩展
+        if (!function_exists('pcntl_fork')) {
+            die('pcntl_fork() is not available on this system.');
+        }
+        exit;
         return Grid::make(SitePages::with(['pagesTag']), function (Grid $grid) {
             $grid->column('id')->sortable();
             $grid->column('title');