Skip to content

Instantly share code, notes, and snippets.

<pre><?php
ini_set('max_execution_time', 60*5); // 5 minutes, increase as needed
include("./index.php");
$dir = new DirectoryIterator(wire('config')->paths->files);
foreach($dir as $file) {
if($file->isDot() || !$file->isDir()) continue;
$id = $file->getFilename();
if(!ctype_digit("$id")) continue;
$page = wire('pages')->get((int) $id);