SIMON Master Console Rebuild
True command center for SIMON + WEB360
This rebuild gives you a cleaner production spine: interactive tree, live viewer, guarded editor, dynamic graphics, architecture map, and note storage. It is designed to sit beside your existing
console.php
and become the stronger replacement path.
Dashboard
Tree
Viewer
System Map
File Registry
Notes
Files
15,680
Folders
433
Scanned Size
3.89 GB
PHP Files
988
Editable Text Files
12,938
File viewer
guarded to /htdocs
/infinity/old/louie/louie_dedupe.php
<?php // louie_dedupe.php – find exact duplicate files in louie5 and move them aside $folder = __DIR__ . '/louie5'; $dupsFolder = __DIR__ . '/louie5_dups'; if (!is_dir($folder)) { die("louie5 folder not found.\n"); } if (!is_dir($dupsFolder)) { mkdir($dupsFolder, 0775, true); } $seen = []; $moved = 0; $dh = opendir($folder); while (($file = readdir($dh)) !== false) { if ($file === '.' || $file === '..') continue; $path = $folder . '/' . $file; if (!is_file($path)) continue; // hash file contents to detect true duplicates $hash = md5_file($path); if ($hash === false) continue; if (isset($seen[$hash])) { // duplicate: move to louie5_dups $target = $dupsFolder . '/' . $file; $n = 1; while (file_exists($target)) { $target = $dupsFolder . '/' . $n . '_' . $file; $n++; } rename($path, $target); $moved++; } else { $seen[$hash] = $file; } } echo "Done. Moved $moved duplicate file(s) to louie5_dups.\n";
Save file
Quick jump
open a path
Open