Вопрос, как обновить таблицу из локал, АКТУАЛЕН.
Баг.
Сканирование сайта.
Выодит ошибку, что ограничен лимит 30 сек
и ссылается на функционс.пхп , где функция листинга файлов
<?
Сканирование сайта
Fatal error: Maximum execution time of 30 seconds exceeded in W:\home\сайт.com\www\includes\functions.php on line (номер строки)
Сам код
<?
if (is_file($dirname . '/' . $file)) {
$ext = strtolower(substr($file, strrpos($file, '.') + 1));
if (!in_array($ext, $no_check)) {
$arr['files'][] = $dirname . '/' . $file . ' - ' . date_fixed(filemtime($dirname . '/' . $file), 'j.m.Y / H:i') . ' - ' . read_file($dirname . '/' . $file);
$arr['totalfiles']++;
}
}
Изменил: GodZiLLa (14.10.2010 / 00:38)