Added check for writability of logs directory

Signed-off-by: Woody Gilk <woody.gilk@kohanaphp.com>
This commit is contained in:
Ralph Janke 2009-07-24 06:33:56 +08:00 committed by Woody Gilk
parent ba16a683d0
commit d3eeae4acf

View file

@ -70,6 +70,13 @@
<td class="fail">The <code><?php echo APPPATH.'cache/' ?></code> directory is not writable.</td>
<?php endif ?>
</tr>
<tr>
<th>Logs Directory</th>
<?php if (is_dir(APPPATH) AND is_dir(APPPATH.'logs') AND is_writable(APPPATH.'logs')): ?>
<td class="pass"><?php echo APPPATH.'logs/' ?></td>
<?php else: $failed = TRUE ?>
<td class="fail">The <code><?php echo APPPATH.'logs/' ?></code> directory is not writable.</td>
<?php endif ?>
<tr>
<th>PCRE UTF-8</th>
<?php if ( ! @preg_match('/^.$/u', 'ñ')): $failed = TRUE ?>
@ -181,4 +188,4 @@
</table>
</body>
</html>
</html>