| Server IP : 208.122.213.31 / Your IP : 216.73.216.45 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/cwd/wp-content/plugins/cornerstone/includes/classes/Util/ |
Upload File : |
<?php
namespace Themeco\Cornerstone\Util;
class Filesystem {
public function getFileSystem() {
if ( ! function_exists( 'WP_Filesystem' ) ) {
require_once ABSPATH . 'wp-admin/includes/file.php';
}
if (get_filesystem_method() !== 'direct' || ! WP_Filesystem()) {
throw new \Exception('Unable to use file system.');
}
global $wp_filesystem;
return $wp_filesystem;
}
public function sendFile( $file ) {
// clear any possible buffers to
// fix .tco issues on sites outputting stuff
// all the time
while (ob_get_level() !== 0) {
ob_end_clean();
}
header("Content-type: application/octet-stream");
echo $this->getFileSystem()->get_contents( $file );
exit;
}
}