@@ -86,29 +86,41 @@ discard block |
||
| 86 | 86 | <ul> |
| 87 | 87 | <?php if (version_compare(PHP_VERSION, '7.2.0', '>=')) : ?> |
| 88 | 88 | <li class="bullet success">Your version of PHP is 7.2.0 or higher (detected <?php echo PHP_VERSION ?>).</li> |
| 89 | - <?php else : ?> |
|
| 89 | + <?php else { |
|
| 90 | + : ?> |
|
| 90 | 91 | <li class="bullet problem">Your version of PHP is too low. You need PHP 7.2.0 or higher to use CakePHP (detected <?php echo PHP_VERSION ?>).</li> |
| 91 | - <?php endif; ?> |
|
| 92 | + <?php endif; |
|
| 93 | +} |
|
| 94 | +?> |
|
| 92 | 95 | |
| 93 | 96 | <?php if (extension_loaded('mbstring')) : ?> |
| 94 | 97 | <li class="bullet success">Your version of PHP has the mbstring extension loaded.</li> |
| 95 | - <?php else : ?> |
|
| 98 | + <?php else { |
|
| 99 | + : ?> |
|
| 96 | 100 | <li class="bullet problem">Your version of PHP does NOT have the mbstring extension loaded.</li> |
| 97 | - <?php endif; ?> |
|
| 101 | + <?php endif; |
|
| 102 | +} |
|
| 103 | +?> |
|
| 98 | 104 | |
| 99 | 105 | <?php if (extension_loaded('openssl')) : ?> |
| 100 | 106 | <li class="bullet success">Your version of PHP has the openssl extension loaded.</li> |
| 101 | 107 | <?php elseif (extension_loaded('mcrypt')) : ?> |
| 102 | 108 | <li class="bullet success">Your version of PHP has the mcrypt extension loaded.</li> |
| 103 | - <?php else : ?> |
|
| 109 | + <?php else { |
|
| 110 | + : ?> |
|
| 104 | 111 | <li class="bullet problem">Your version of PHP does NOT have the openssl or mcrypt extension loaded.</li> |
| 105 | - <?php endif; ?> |
|
| 112 | + <?php endif; |
|
| 113 | +} |
|
| 114 | +?> |
|
| 106 | 115 | |
| 107 | 116 | <?php if (extension_loaded('intl')) : ?> |
| 108 | 117 | <li class="bullet success">Your version of PHP has the intl extension loaded.</li> |
| 109 | - <?php else : ?> |
|
| 118 | + <?php else { |
|
| 119 | + : ?> |
|
| 110 | 120 | <li class="bullet problem">Your version of PHP does NOT have the intl extension loaded.</li> |
| 111 | - <?php endif; ?> |
|
| 121 | + <?php endif; |
|
| 122 | +} |
|
| 123 | +?> |
|
| 112 | 124 | </ul> |
| 113 | 125 | </div> |
| 114 | 126 | <div class="column"> |
@@ -116,22 +128,31 @@ discard block |
||
| 116 | 128 | <ul> |
| 117 | 129 | <?php if (is_writable(TMP)) : ?> |
| 118 | 130 | <li class="bullet success">Your tmp directory is writable.</li> |
| 119 | - <?php else : ?> |
|
| 131 | + <?php else { |
|
| 132 | + : ?> |
|
| 120 | 133 | <li class="bullet problem">Your tmp directory is NOT writable.</li> |
| 121 | - <?php endif; ?> |
|
| 134 | + <?php endif; |
|
| 135 | +} |
|
| 136 | +?> |
|
| 122 | 137 | |
| 123 | 138 | <?php if (is_writable(LOGS)) : ?> |
| 124 | 139 | <li class="bullet success">Your logs directory is writable.</li> |
| 125 | - <?php else : ?> |
|
| 140 | + <?php else { |
|
| 141 | + : ?> |
|
| 126 | 142 | <li class="bullet problem">Your logs directory is NOT writable.</li> |
| 127 | - <?php endif; ?> |
|
| 143 | + <?php endif; |
|
| 144 | +} |
|
| 145 | +?> |
|
| 128 | 146 | |
| 129 | 147 | <?php $settings = Cache::getConfig('_cake_core_'); ?> |
| 130 | 148 | <?php if (!empty($settings)) : ?> |
| 131 | 149 | <li class="bullet success">The <em><?php echo $settings['className'] ?>Engine</em> is being used for core caching. To change the config edit config/app.php</li> |
| 132 | - <?php else : ?> |
|
| 150 | + <?php else { |
|
| 151 | + : ?> |
|
| 133 | 152 | <li class="bullet problem">Your cache is NOT working. Please check the settings in config/app.php</li> |
| 134 | - <?php endif; ?> |
|
| 153 | + <?php endif; |
|
| 154 | +} |
|
| 155 | +?> |
|
| 135 | 156 | </ul> |
| 136 | 157 | </div> |
| 137 | 158 | </div> |
@@ -157,9 +178,12 @@ discard block |
||
| 157 | 178 | <ul> |
| 158 | 179 | <?php if ($connected) : ?> |
| 159 | 180 | <li class="bullet success">CakePHP is able to connect to the database.</li> |
| 160 | - <?php else : ?> |
|
| 181 | + <?php else { |
|
| 182 | + : ?> |
|
| 161 | 183 | <li class="bullet problem">CakePHP is NOT able to connect to the database.<br /><?php echo $errorMsg ?></li> |
| 162 | - <?php endif; ?> |
|
| 184 | + <?php endif; |
|
| 185 | +} |
|
| 186 | +?> |
|
| 163 | 187 | </ul> |
| 164 | 188 | </div> |
| 165 | 189 | <div class="column"> |
@@ -167,9 +191,12 @@ discard block |
||
| 167 | 191 | <ul> |
| 168 | 192 | <?php if (Plugin::isLoaded('DebugKit')) : ?> |
| 169 | 193 | <li class="bullet success">DebugKit is loaded.</li> |
| 170 | - <?php else : ?> |
|
| 194 | + <?php else { |
|
| 195 | + : ?> |
|
| 171 | 196 | <li class="bullet problem">DebugKit is NOT loaded. You need to either install pdo_sqlite, or define the "debug_kit" connection name.</li> |
| 172 | - <?php endif; ?> |
|
| 197 | + <?php endif; |
|
| 198 | +} |
|
| 199 | +?> |
|
| 173 | 200 | </ul> |
| 174 | 201 | </div> |
| 175 | 202 | </div> |