Index: /branches/comu-ver2/html/install/index.php
===================================================================
--- /branches/comu-ver2/html/install/index.php	(revision 18192)
+++ /branches/comu-ver2/html/install/index.php	(revision 18193)
@@ -366,5 +366,5 @@
 }
 
-// STEP0画面の表示(ファイル権限チェック)
+// STEP0画面の表示(チェック)
 function lfDispStep0($objPage) {
     global $objWebParam;
@@ -392,5 +392,5 @@
 
     $mess = "";
-    $err_file = false;
+    $hasErr = false;
     foreach($arrWriteFile as $val) {
         // listdirsの保持データを初期化
@@ -411,5 +411,5 @@
                     if(!is_writable($path)) {
                         $mess.= ">> ×：$real_path($filemode) <br>ユーザ書込み権限(777, 707等)を付与して下さい。<br>";
-                        $err_file = true;
+                        $hasErr = true;
                     } else {
                         GC_Utils_Ex::gfPrintLog("WRITABLE：".$path, INSTALL_LOG);
@@ -418,5 +418,5 @@
                     if(!is_writable($path)) {
                         $mess.= ">> ×：$real_path($filemode) <br>ユーザ書込み権限(666, 606等)を付与して下さい。<br>";
-                        $err_file = true;
+                        $hasErr = true;
                     } else {
                         GC_Utils_Ex::gfPrintLog("WRITABLE：".$path, INSTALL_LOG);
@@ -425,11 +425,16 @@
             } else {
                 $mess.= ">> ×：$path が見つかりません。<br>";
-                $err_file = true;
+                $hasErr = true;
             }
         }
     }
 
+    if (ini_get('safe_mode')) {
+        $mess .= ">> ×：PHPのセーフモードが有効になっています。<br>";
+        $hasErr = true;
+    }
+
     // 問題点を検出している場合
-    if ($err_file) {
+    if ($hasErr) {
         $objPage->tpl_mode = 'return_step0';
     }
@@ -474,5 +479,5 @@
 
     $objPage->mess = $mess;
-    $objPage->err_file = $err_file;
+    $objPage->hasErr = $hasErr;
 
     return $objPage;
Index: /branches/comu-ver2/html/install/templates/step0.tpl
===================================================================
--- /branches/comu-ver2/html/install/templates/step0.tpl	(revision 18144)
+++ /branches/comu-ver2/html/install/templates/step0.tpl	(revision 18193)
@@ -30,5 +30,5 @@
 
 <tr><td height="30"></td></tr>
-<tr><td align="left" class="fs12st">■アクセス権限のチェック</td></tr>
+<tr><td align="left" class="fs12st">■チェック結果</td></tr>
 <tr>
     <td bgcolor="#cccccc">
@@ -47,5 +47,5 @@
     <tr><td height="15"></td></tr>
     <tr><td align="left" class="fs12">
-        <!--{if $err_file}-->
+        <!--{if $hasErr}-->
             <p>[次へ進む] をクリックすると、チェックを再実行します。</p>
             <div><input type="checkbox" name="mode_overwrite" value="step0" id="mode_overwrite"> <label for="mode_overwrite">問題点を無視して次へ進む (上級者向け)</label></div>
