function serverInformation()
 {
     @ob_start();
     MainWP_Child_Server_Information::render();
     $output['information'] = @ob_get_contents();
     @ob_end_clean();
     @ob_start();
     MainWP_Child_Server_Information::renderCron();
     $output['cron'] = @ob_get_contents();
     @ob_end_clean();
     @ob_start();
     MainWP_Child_Server_Information::renderErrorLogPage();
     $output['error'] = @ob_get_contents();
     @ob_end_clean();
     @ob_start();
     MainWP_Child_Server_Information::renderWPConfig();
     $output['wpconfig'] = @ob_get_contents();
     @ob_end_clean();
     @ob_start();
     MainWP_Child_Server_Information::renderhtaccess();
     $output['htaccess'] = @ob_get_contents();
     @ob_end_clean();
     MainWP_Helper::write($output);
 }