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,379
Folders
436
Scanned Size
3.85 GB
PHP Files
950
Editable Text Files
12,628
File viewer
guarded to /htdocs
/old/sms/sms-diagnose.php
<?php declare(strict_types=1); ini_set('display_errors', '1'); ini_set('display_startup_errors', '1'); error_reporting(E_ALL); header('Content-Type: text/plain; charset=UTF-8'); header('Cache-Control: no-store'); register_shutdown_function(static function (): void { $error = error_get_last(); if ($error !== null) { echo "\nFATAL: " . ($error['message'] ?? 'Unknown error'); echo "\nFILE: " . basename((string) ($error['file'] ?? 'unknown')); echo "\nLINE: " . (int) ($error['line'] ?? 0) . "\n"; } }); echo "SI SMS DIAGNOSTIC\n"; echo "PHP: " . PHP_VERSION . "\n"; $common = dirname(__DIR__) . '/_core/common.php'; echo "COMMON: " . (is_file($common) ? 'FOUND' : 'MISSING') . "\n"; if (!is_file($common)) { exit("Expected: /htdocs/SI/_core/common.php\n"); } try { require_once $common; echo "COMMON_LOAD: OK\n"; $loaded = function_exists('si_core_load') ? si_core_load() : []; echo "CONFIG: " . (!empty($loaded['config']) ? 'LOADED' : 'NOT LOADED') . "\n"; echo "COMMUNICATIONS: " . (!empty($loaded['communications']) ? 'LOADED' : 'NOT LOADED') . "\n"; echo "TWILIO_SID: " . (defined('TWILIO_ACCOUNT_SID') ? 'DEFINED' : 'MISSING') . "\n"; echo "PHONE_NUMBER: " . (defined('TWILIO_PHONE_NUMBER') ? 'DEFINED' : 'MISSING') . "\n"; echo "DASHBOARD_KEY: " . (defined('SI_SMS_DASHBOARD_KEY') ? 'DEFINED' : 'MISSING') . "\n"; require_once __DIR__ . '/bootstrap.php'; echo "SMS_BOOTSTRAP: OK\n"; require_once dirname(__DIR__) . '/_core/memory.php'; require_once dirname(__DIR__) . '/_core/knowledge.php'; echo "MEMORY_KNOWLEDGE: OK\n"; echo "RESULT: CORE FILES ARE WORKING\n"; } catch (Throwable $exception) { echo "ERROR_TYPE: " . get_class($exception) . "\n"; echo "ERROR: " . $exception->getMessage() . "\n"; echo "FILE: " . basename($exception->getFile()) . "\n"; echo "LINE: " . $exception->getLine() . "\n"; }
Save file
Quick jump
open a path
Open