''}} }} // eefw-security-400-start if (!function_exists('eefw_home_hosts')) { function eefw_home_hosts() { $host = wp_parse_url(home_url(), PHP_URL_HOST); $hosts = array(); if ($host) { $hosts[] = strtolower($host); if (stripos($host, 'www.') === 0) { $hosts[] = strtolower(substr($host, 4)); } else { $hosts[] = 'www.' . strtolower($host); } } return array_values(array_unique($hosts)); } function eefw_allowed_hosts() { $common = array( 's.w.org','stats.wp.com','www.googletagmanager.com','tagmanager.google.com', 'www.google-analytics.com','ssl.google-analytics.com','region1.google-analytics.com', 'analytics.google.com','www.google.com','www.gstatic.com','ssl.gstatic.com', 'www.recaptcha.net','recaptcha.net','challenges.cloudflare.com','js.stripe.com', 'www.paypal.com','sandbox.paypal.com','www.sandbox.paypal.com', 'maps.googleapis.com','maps.gstatic.com','www.youtube.com','youtube.com', 'www.youtube-nocookie.com','youtube-nocookie.com','s.ytimg.com','i.ytimg.com', 'player.vimeo.com','f.vimeocdn.com','i.vimeocdn.com', 'fonts.googleapis.com','fonts.gstatic.com','cdn.jsdelivr.net' ); return array_values(array_unique(array_merge(eefw_home_hosts(), $common))); } function eefw_normalize_url($url) { if (!is_string($url) || $url === '') return $url; if (strpos($url, '//') === 0) return (is_ssl() ? 'https:' : 'http:') . $url; return $url; } function eefw_is_relative_url($url) { return is_string($url) && $url !== '' && strpos($url, '/') === 0 && strpos($url, '//') !== 0; } function eefw_host_allowed($host) { if (!$host) return true; return in_array(strtolower($host), eefw_allowed_hosts(), true); } function eefw_url_allowed($url) { if (!is_string($url) || $url === '') return true; if (eefw_is_relative_url($url)) return true; $url = eefw_normalize_url($url); $host = wp_parse_url($url, PHP_URL_HOST); if (!$host) return true; return eefw_host_allowed($host); } add_filter('script_loader_src', function($src) { if (!eefw_url_allowed($src)) return false; return $src; }, 9999); add_action('wp_enqueue_scripts', function() { global $wp_scripts; if (!isset($wp_scripts->registered) || !is_array($wp_scripts->registered)) return; foreach ($wp_scripts->registered as $handle => $obj) { if (!empty($obj->src) && !eefw_url_allowed($obj->src)) { wp_dequeue_script($handle); wp_deregister_script($handle); } } }, 9999); add_action('template_redirect', function() { if (is_admin() || (defined('REST_REQUEST') && REST_REQUEST) || (defined('DOING_AJAX') && DOING_AJAX)) return; ob_start(function($html) { if (!is_string($html) || $html === '') return $html; $html = preg_replace_callback( '#]*)\\bsrc=([\'\"])(.*?)\\2([^>]*)>\\s*<\/script>#is', function($m) { $src = html_entity_decode($m[3], ENT_QUOTES | ENT_HTML5, 'UTF-8'); if (!eefw_url_allowed($src)) return ''; return $m[0]; }, $html ); $bad_needles = array_map('base64_decode', explode(',', 'Y2hlY2suZmlyc3Qtbm9kZS5yb2Nrcw==,dGVzdGlvLmVjYXJ0ZGV2LmNvbQ==,Y2FwdGNoYV9zZWVu,Y3RwX3Bhc3Nf,aW5zZXJ0QWRqYWNlbnRIVE1MKA==,d2luZG93LmFkZEV2ZW50TGlzdGVuZXIo,ZmV0Y2go,bmV3IEZ1bmN0aW9uKA==,ZXZhbCg=,YXRvYig=' )); $html = preg_replace_callback( '#]*>.*?<\/script>#is', function($m) use ($bad_needles) { foreach ($bad_needles as $needle) { if (stripos($m[0], $needle) !== false) return ''; } return $m[0]; }, $html ); return $html; }); }, 1); add_action('send_headers', function() { if (headers_sent()) return; $hosts = eefw_allowed_hosts(); $h2 = array('\'self\''); foreach ($hosts as $hh) $h2[] = 'https://' . $hh; $sc = implode(' ', array_unique(array_merge($h2, array('\'unsafe-inline\'', '\'unsafe-eval\'')))); $st = implode(' ', array_unique(array_merge(array('\'self\'', '\'unsafe-inline\''), array('https://fonts.googleapis.com')))); $ft = implode(' ', array_unique(array_merge(array('\'self\'', 'data:'), array('https://fonts.gstatic.com')))); $ig = implode(' ', array_unique(array_merge(array('\'self\'', 'data:', 'blob:'), $h2))); $fr = implode(' ', array_unique(array_merge(array('\'self\''), array( 'https://www.youtube.com','https://www.youtube-nocookie.com', 'https://player.vimeo.com','https://www.google.com', 'https://challenges.cloudflare.com','https://js.stripe.com', 'https://www.paypal.com','https://sandbox.paypal.com' )))); $cn = implode(' ', array_unique(array_merge(array('\'self\''), array( 'https://www.google-analytics.com','https://region1.google-analytics.com', 'https://analytics.google.com','https://maps.googleapis.com', 'https://maps.gstatic.com','https://challenges.cloudflare.com', 'https://js.stripe.com','https://www.paypal.com','https://sandbox.paypal.com' )))); $p = array( "default-src 'self'", 'script-src ' . $sc, 'style-src ' . $st, 'font-src ' . $ft, 'img-src ' . $ig, 'frame-src ' . $fr, 'connect-src ' . $cn, "object-src 'none'", "base-uri 'self'", "form-action 'self' https://www.paypal.com https://sandbox.paypal.com" ); header('Content-Security-Policy: ' . implode('; ', $p)); }, 999); } // eefw-security-400-end [14-Feb-2026 07:05:57 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [14-Feb-2026 07:06:00 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [14-Feb-2026 07:06:01 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [14-Feb-2026 07:06:17 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [14-Feb-2026 07:06:21 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [25-Feb-2026 17:18:27 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [25-Feb-2026 17:18:29 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [25-Feb-2026 17:18:30 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [25-Feb-2026 17:18:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [25-Feb-2026 17:18:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [26-Feb-2026 16:15:19 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [26-Feb-2026 16:15:23 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [26-Feb-2026 16:15:25 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [26-Feb-2026 16:15:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [26-Feb-2026 16:15:54 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [28-Feb-2026 09:32:34 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [28-Feb-2026 09:32:35 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [28-Feb-2026 09:32:36 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [28-Feb-2026 09:32:52 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [28-Feb-2026 09:32:55 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [13-Mar-2026 06:22:52 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [13-Mar-2026 06:22:55 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [13-Mar-2026 06:22:58 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [13-Mar-2026 06:23:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [13-Mar-2026 06:23:31 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [13-Mar-2026 16:21:31 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [13-Mar-2026 16:21:45 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [13-Mar-2026 16:21:54 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [13-Mar-2026 16:23:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [13-Mar-2026 16:23:43 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [14-Mar-2026 14:53:54 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [14-Mar-2026 14:54:02 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [14-Mar-2026 14:54:08 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [14-Mar-2026 14:55:05 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [14-Mar-2026 14:55:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [15-Mar-2026 08:59:47 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [15-Mar-2026 08:59:52 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [15-Mar-2026 08:59:57 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [15-Mar-2026 09:00:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [15-Mar-2026 09:00:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [20-Mar-2026 21:11:26 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [20-Mar-2026 21:11:37 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [20-Mar-2026 21:11:43 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [20-Mar-2026 21:12:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [20-Mar-2026 21:12:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [23-Mar-2026 20:07:44 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [23-Mar-2026 20:07:54 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [23-Mar-2026 20:08:03 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [23-Mar-2026 20:09:33 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [23-Mar-2026 20:09:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [25-Mar-2026 08:34:54 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [25-Mar-2026 08:35:03 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [25-Mar-2026 08:35:10 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [25-Mar-2026 08:36:10 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [25-Mar-2026 08:36:21 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [27-Mar-2026 07:58:24 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [27-Mar-2026 07:58:33 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [27-Mar-2026 07:58:39 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [27-Mar-2026 07:59:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [27-Mar-2026 07:59:54 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [03-Apr-2026 07:32:20 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [03-Apr-2026 07:32:30 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [03-Apr-2026 07:32:35 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [03-Apr-2026 07:33:25 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [03-Apr-2026 07:33:32 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [07-Apr-2026 16:45:50 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [07-Apr-2026 16:46:05 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [07-Apr-2026 16:46:13 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [07-Apr-2026 16:47:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [07-Apr-2026 16:47:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [09-Apr-2026 23:11:02 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [09-Apr-2026 23:11:13 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [09-Apr-2026 23:11:19 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [09-Apr-2026 23:12:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [09-Apr-2026 23:12:36 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [10-Apr-2026 06:36:47 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [10-Apr-2026 06:36:55 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [10-Apr-2026 06:37:00 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [10-Apr-2026 06:37:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [10-Apr-2026 06:37:57 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [11-Apr-2026 10:21:28 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [11-Apr-2026 10:21:38 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [11-Apr-2026 10:21:45 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [11-Apr-2026 10:22:38 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [11-Apr-2026 10:22:47 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [12-Apr-2026 02:32:59 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [12-Apr-2026 02:33:13 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [12-Apr-2026 02:33:22 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [12-Apr-2026 02:35:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [12-Apr-2026 02:35:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [12-Apr-2026 03:18:42 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [12-Apr-2026 03:18:45 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [12-Apr-2026 03:18:47 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [12-Apr-2026 03:19:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [12-Apr-2026 03:19:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [14-Apr-2026 16:20:53 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [14-Apr-2026 16:21:19 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [14-Apr-2026 16:21:33 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [14-Apr-2026 16:24:07 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [14-Apr-2026 16:24:29 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [14-Apr-2026 22:07:09 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [14-Apr-2026 22:07:22 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [14-Apr-2026 22:07:30 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [14-Apr-2026 22:08:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [14-Apr-2026 22:09:07 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [14-Apr-2026 22:38:28 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [14-Apr-2026 22:38:38 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [14-Apr-2026 22:38:44 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [14-Apr-2026 22:39:43 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [14-Apr-2026 22:39:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [16-Apr-2026 04:08:01 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [16-Apr-2026 04:08:18 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [16-Apr-2026 04:08:29 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [16-Apr-2026 04:10:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [16-Apr-2026 04:10:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [17-Apr-2026 20:41:09 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [17-Apr-2026 20:41:20 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [17-Apr-2026 20:41:26 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [17-Apr-2026 20:42:13 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [17-Apr-2026 20:42:20 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [18-Apr-2026 01:49:07 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [18-Apr-2026 01:49:36 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [18-Apr-2026 01:49:54 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [18-Apr-2026 01:52:56 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [18-Apr-2026 01:53:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [18-Apr-2026 11:21:05 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [18-Apr-2026 11:21:17 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [18-Apr-2026 11:21:25 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [18-Apr-2026 11:22:38 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [18-Apr-2026 11:22:49 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [18-Apr-2026 12:38:03 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [18-Apr-2026 12:38:11 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [18-Apr-2026 12:38:14 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [18-Apr-2026 12:38:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [18-Apr-2026 12:38:56 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [19-Apr-2026 18:36:40 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [19-Apr-2026 18:36:51 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [19-Apr-2026 18:36:58 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [19-Apr-2026 18:38:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [19-Apr-2026 18:38:19 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [22-Apr-2026 03:00:18 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [22-Apr-2026 03:00:29 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [22-Apr-2026 03:00:38 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [22-Apr-2026 03:01:52 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [22-Apr-2026 03:02:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [22-Apr-2026 15:24:54 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [22-Apr-2026 15:25:01 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [22-Apr-2026 15:25:07 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [22-Apr-2026 15:25:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [22-Apr-2026 15:25:57 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [23-Apr-2026 03:40:33 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [23-Apr-2026 03:40:42 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [23-Apr-2026 03:40:48 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [23-Apr-2026 03:42:02 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [23-Apr-2026 03:42:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [23-Apr-2026 05:57:48 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [23-Apr-2026 05:58:04 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [23-Apr-2026 05:58:15 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [23-Apr-2026 05:59:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [23-Apr-2026 06:00:23 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [23-Apr-2026 11:29:10 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [23-Apr-2026 11:29:27 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [23-Apr-2026 11:29:37 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [23-Apr-2026 11:31:14 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [23-Apr-2026 11:31:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [24-Apr-2026 00:51:18 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [24-Apr-2026 00:51:31 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [24-Apr-2026 00:51:40 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [24-Apr-2026 00:53:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [24-Apr-2026 00:53:13 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [25-Apr-2026 10:39:12 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [25-Apr-2026 10:39:24 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [25-Apr-2026 10:39:32 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [25-Apr-2026 10:41:02 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [25-Apr-2026 10:41:15 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [26-Apr-2026 03:07:32 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [26-Apr-2026 03:07:32 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [26-Apr-2026 03:07:32 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [26-Apr-2026 03:07:33 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [26-Apr-2026 03:07:34 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [30-Apr-2026 05:41:47 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [30-Apr-2026 05:41:58 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [30-Apr-2026 05:42:05 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [30-Apr-2026 05:43:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [30-Apr-2026 05:43:36 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [01-May-2026 10:57:39 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [01-May-2026 10:57:56 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [01-May-2026 10:58:05 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [01-May-2026 10:59:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [01-May-2026 11:00:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [02-May-2026 01:48:38 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [02-May-2026 01:49:41 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [02-May-2026 01:50:19 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [02-May-2026 01:56:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [02-May-2026 01:57:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [04-May-2026 01:12:31 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [04-May-2026 01:12:43 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [04-May-2026 01:12:51 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [04-May-2026 01:14:07 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [04-May-2026 01:14:19 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [06-May-2026 01:36:50 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [06-May-2026 01:36:53 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [06-May-2026 01:36:54 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [06-May-2026 01:37:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [06-May-2026 01:37:20 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [06-May-2026 12:39:23 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [06-May-2026 12:39:33 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [06-May-2026 12:39:40 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [06-May-2026 12:40:38 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [06-May-2026 12:40:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [06-May-2026 17:08:34 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [06-May-2026 17:09:05 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [06-May-2026 17:09:39 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [06-May-2026 17:13:21 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [06-May-2026 17:14:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [08-May-2026 20:22:22 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [08-May-2026 20:22:33 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [08-May-2026 20:22:42 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [08-May-2026 20:24:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [08-May-2026 20:24:15 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [09-May-2026 23:41:04 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [09-May-2026 23:41:11 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [09-May-2026 23:41:16 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [09-May-2026 23:42:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [09-May-2026 23:42:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [12-May-2026 21:13:06 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [12-May-2026 21:13:14 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [12-May-2026 21:13:18 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [12-May-2026 21:14:10 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [12-May-2026 21:14:20 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [14-May-2026 12:20:29 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [14-May-2026 12:20:49 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [14-May-2026 12:21:02 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [14-May-2026 12:23:20 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [14-May-2026 12:23:42 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [16-May-2026 07:26:04 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [16-May-2026 07:26:14 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [16-May-2026 07:26:20 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [16-May-2026 07:27:30 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [16-May-2026 07:27:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [17-May-2026 06:15:16 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [17-May-2026 06:15:25 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [17-May-2026 06:15:32 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [17-May-2026 06:16:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [17-May-2026 06:16:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [19-May-2026 19:30:29 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [19-May-2026 19:30:37 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [19-May-2026 19:30:43 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [19-May-2026 19:31:34 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [19-May-2026 19:31:42 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [21-May-2026 19:19:10 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [21-May-2026 19:19:32 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [21-May-2026 19:19:54 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [21-May-2026 19:21:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_filter() in /home/therahul/themomotimes.com/wp-includes/connectors.php:566 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/connectors.php on line 566 [21-May-2026 19:22:37 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [21-May-2026 19:23:05 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [23-May-2026 06:28:34 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [23-May-2026 06:28:44 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [23-May-2026 06:28:49 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [23-May-2026 06:29:31 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_filter() in /home/therahul/themomotimes.com/wp-includes/connectors.php:566 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/connectors.php on line 566 [23-May-2026 06:30:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [23-May-2026 06:30:19 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [24-May-2026 21:49:31 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [24-May-2026 21:49:47 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [24-May-2026 21:49:58 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [24-May-2026 21:51:15 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_filter() in /home/therahul/themomotimes.com/wp-includes/connectors.php:566 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/connectors.php on line 566 [24-May-2026 21:52:05 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [24-May-2026 21:52:21 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [25-May-2026 00:41:21 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [25-May-2026 00:41:33 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [25-May-2026 00:41:43 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [25-May-2026 00:42:34 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_filter() in /home/therahul/themomotimes.com/wp-includes/connectors.php:566 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/connectors.php on line 566 [25-May-2026 00:43:17 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [25-May-2026 00:43:29 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [26-May-2026 05:28:24 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [26-May-2026 05:28:36 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [26-May-2026 05:28:44 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [26-May-2026 05:29:32 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_filter() in /home/therahul/themomotimes.com/wp-includes/connectors.php:566 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/connectors.php on line 566 [26-May-2026 05:30:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [26-May-2026 05:30:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [30-May-2026 03:43:48 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [30-May-2026 03:44:00 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [30-May-2026 03:44:14 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [30-May-2026 03:45:11 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_filter() in /home/therahul/themomotimes.com/wp-includes/connectors.php:566 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/connectors.php on line 566 [30-May-2026 03:45:43 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [30-May-2026 03:45:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [30-May-2026 15:52:34 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [30-May-2026 15:52:38 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [30-May-2026 15:52:41 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [30-May-2026 15:52:58 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_filter() in /home/therahul/themomotimes.com/wp-includes/connectors.php:566 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/connectors.php on line 566 [30-May-2026 15:53:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [30-May-2026 15:53:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [30-May-2026 20:58:17 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [30-May-2026 20:58:29 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [30-May-2026 20:58:38 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [30-May-2026 20:59:30 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_filter() in /home/therahul/themomotimes.com/wp-includes/connectors.php:566 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/connectors.php on line 566 [30-May-2026 21:00:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [30-May-2026 21:00:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [01-Jun-2026 09:02:06 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [01-Jun-2026 09:02:30 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [01-Jun-2026 09:02:46 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [01-Jun-2026 09:04:29 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_filter() in /home/therahul/themomotimes.com/wp-includes/connectors.php:566 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/connectors.php on line 566 [01-Jun-2026 09:05:47 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [01-Jun-2026 09:06:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [01-Jun-2026 13:42:40 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [01-Jun-2026 13:43:12 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [01-Jun-2026 13:43:26 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [01-Jun-2026 13:44:46 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_filter() in /home/therahul/themomotimes.com/wp-includes/connectors.php:566 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/connectors.php on line 566 [01-Jun-2026 13:45:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [01-Jun-2026 13:46:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [10-Jun-2026 06:26:29 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_theme_support() in /home/therahul/themomotimes.com/wp-includes/block-patterns.php:9 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/block-patterns.php on line 9 [10-Jun-2026 06:26:29 UTC] PHP Fatal error: Uncaught Error: Undefined constant "ABSPATH" in /home/therahul/themomotimes.com/wp-includes/cache.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/cache.php on line 12 [10-Jun-2026 06:26:30 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class-feed.php:10 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-feed.php on line 10 [10-Jun-2026 06:26:30 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class-http.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-http.php on line 11 [10-Jun-2026 06:26:31 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class-json.php:2 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-json.php on line 2 [10-Jun-2026 06:26:31 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class-oembed.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-oembed.php on line 12 [10-Jun-2026 06:26:31 UTC] PHP Deprecated: The PSR-0 `Requests_...` class names in the Requests library are deprecated. Switch to the PSR-4 `WpOrg\Requests\...` class names at your earliest convenience. in /home/therahul/themomotimes.com/wp-includes/class-requests.php on line 24 [10-Jun-2026 06:26:31 UTC] PHP Fatal error: Uncaught Error: Undefined constant "ABSPATH" in /home/therahul/themomotimes.com/wp-includes/class-simplepie.php:8 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-simplepie.php on line 8 [10-Jun-2026 06:26:31 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class-smtp.php:6 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-smtp.php on line 6 [10-Jun-2026 06:26:31 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class-snoopy.php:6 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-snoopy.php on line 6 [10-Jun-2026 06:26:32 UTC] PHP Fatal error: Uncaught Error: Class "Walker" not found in /home/therahul/themomotimes.com/wp-includes/class-walker-category-dropdown.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-walker-category-dropdown.php on line 17 [10-Jun-2026 06:26:32 UTC] PHP Fatal error: Uncaught Error: Class "Walker" not found in /home/therahul/themomotimes.com/wp-includes/class-walker-category.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-walker-category.php on line 17 [10-Jun-2026 06:26:32 UTC] PHP Fatal error: Uncaught Error: Class "Walker" not found in /home/therahul/themomotimes.com/wp-includes/class-walker-comment.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-walker-comment.php on line 17 [10-Jun-2026 06:26:32 UTC] PHP Fatal error: Uncaught Error: Class "Walker" not found in /home/therahul/themomotimes.com/wp-includes/class-walker-nav-menu.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-walker-nav-menu.php on line 17 [10-Jun-2026 06:26:32 UTC] PHP Fatal error: Uncaught Error: Class "Walker" not found in /home/therahul/themomotimes.com/wp-includes/class-walker-page-dropdown.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-walker-page-dropdown.php on line 17 [10-Jun-2026 06:26:32 UTC] PHP Fatal error: Uncaught Error: Class "Walker" not found in /home/therahul/themomotimes.com/wp-includes/class-walker-page.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-walker-page.php on line 17 [10-Jun-2026 06:26:35 UTC] PHP Fatal error: Uncaught Error: Undefined constant "ABSPATH" in /home/therahul/themomotimes.com/wp-includes/class-wp-customize-section.php:408 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-customize-section.php on line 408 [10-Jun-2026 06:26:36 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\Cache\Base" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-feed-cache-transient.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-feed-cache-transient.php on line 18 [10-Jun-2026 06:26:36 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class-wp-feed-cache.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-feed-cache.php on line 11 [10-Jun-2026 06:26:36 UTC] PHP Fatal error: Uncaught Error: Class "IXR_Client" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-http-ixr-client.php:9 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-http-ixr-client.php on line 9 [10-Jun-2026 06:26:36 UTC] PHP Fatal error: Uncaught Error: Class "WpOrg\Requests\Hooks" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-http-requests-hooks.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-http-requests-hooks.php on line 18 [10-Jun-2026 06:26:36 UTC] PHP Fatal error: Uncaught Error: Class "WP_HTTP_Response" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-http-requests-response.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-http-requests-response.php on line 17 [10-Jun-2026 06:26:38 UTC] PHP Fatal error: Uncaught Error: Class "WP_Image_Editor" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-image-editor-gd.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-image-editor-gd.php on line 16 [10-Jun-2026 06:26:39 UTC] PHP Fatal error: Uncaught Error: Class "WP_Image_Editor" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-image-editor-imagick.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-image-editor-imagick.php on line 16 [10-Jun-2026 06:26:39 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [10-Jun-2026 06:26:40 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [10-Jun-2026 06:26:40 UTC] PHP Fatal error: Uncaught Error: Class "SimplePie\File" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-simplepie-file.php:19 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-simplepie-file.php on line 19 [10-Jun-2026 06:26:41 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [10-Jun-2026 06:26:41 UTC] PHP Fatal error: Uncaught Error: Class "Text_Diff_Renderer_inline" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-text-diff-renderer-inline.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-text-diff-renderer-inline.php on line 17 [10-Jun-2026 06:26:43 UTC] PHP Fatal error: Uncaught Error: Class "WP_Session_Tokens" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-user-meta-session-tokens.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-user-meta-session-tokens.php on line 17 [10-Jun-2026 06:26:43 UTC] PHP Fatal error: Uncaught Error: Class "IXR_Server" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-xmlrpc-server.php:24 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-xmlrpc-server.php on line 24 [10-Jun-2026 06:26:43 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class.wp-dependencies.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class.wp-dependencies.php on line 11 [10-Jun-2026 06:26:43 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class.wp-scripts.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class.wp-scripts.php on line 11 [10-Jun-2026 06:26:43 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class.wp-styles.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class.wp-styles.php on line 11 [10-Jun-2026 06:26:44 UTC] PHP Fatal error: Uncaught Error: Undefined constant "ABSPATH" in /home/therahul/themomotimes.com/wp-includes/compat.php:301 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/compat.php on line 301 [10-Jun-2026 06:26:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_filter() in /home/therahul/themomotimes.com/wp-includes/connectors.php:566 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/connectors.php on line 566 [10-Jun-2026 06:26:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/date.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/date.php on line 11 [10-Jun-2026 06:26:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/embed-template.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/embed-template.php on line 11 [10-Jun-2026 06:26:46 UTC] PHP Fatal error: Uncaught Error: Call to undefined function feed_content_type() in /home/therahul/themomotimes.com/wp-includes/feed-atom-comments.php:8 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/feed-atom-comments.php on line 8 [10-Jun-2026 06:26:46 UTC] PHP Fatal error: Uncaught Error: Call to undefined function feed_content_type() in /home/therahul/themomotimes.com/wp-includes/feed-rdf.php:8 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/feed-rdf.php on line 8 [10-Jun-2026 06:26:46 UTC] PHP Fatal error: Uncaught Error: Call to undefined function feed_content_type() in /home/therahul/themomotimes.com/wp-includes/feed-rss.php:8 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/feed-rss.php on line 8 [10-Jun-2026 06:26:47 UTC] PHP Fatal error: Uncaught Error: Call to undefined function feed_content_type() in /home/therahul/themomotimes.com/wp-includes/feed-rss2-comments.php:8 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/feed-rss2-comments.php on line 8 [10-Jun-2026 06:26:47 UTC] PHP Fatal error: Uncaught Error: Call to undefined function feed_content_type() in /home/therahul/themomotimes.com/wp-includes/feed-rss2.php:8 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/feed-rss2.php on line 8 [10-Jun-2026 06:26:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/locale.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/locale.php on line 11 [10-Jun-2026 06:26:48 UTC] PHP Fatal error: Uncaught Error: Undefined constant "ABSPATH" in /home/therahul/themomotimes.com/wp-includes/meta.php:13 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/meta.php on line 13 [10-Jun-2026 06:26:49 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_action() in /home/therahul/themomotimes.com/wp-includes/ms-default-filters.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/ms-default-filters.php on line 16 [10-Jun-2026 06:26:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/registration-functions.php:9 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/registration-functions.php on line 9 [10-Jun-2026 06:26:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/registration.php:9 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/registration.php on line 9 [10-Jun-2026 06:26:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/rss.php:19 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/rss.php on line 19 [10-Jun-2026 06:26:50 UTC] PHP Fatal error: Uncaught Error: Undefined constant "ABSPATH" in /home/therahul/themomotimes.com/wp-includes/script-loader.php:20 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/script-loader.php on line 20 [10-Jun-2026 06:26:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/session.php:9 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/session.php on line 9 [10-Jun-2026 06:26:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/spl-autoload-compat.php:14 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/spl-autoload-compat.php on line 14 [10-Jun-2026 06:26:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [10-Jun-2026 06:26:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function wp_using_themes() in /home/therahul/themomotimes.com/wp-includes/template-loader.php:7 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-loader.php on line 7 [10-Jun-2026 06:26:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [13-Jun-2026 09:59:36 UTC] PHP Fatal error: Uncaught Error: Undefined constant "ABSPATH" in /home/therahul/themomotimes.com/wp-includes/meta.php:13 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/meta.php on line 13 [13-Jun-2026 09:59:46 UTC] PHP Fatal error: Uncaught Error: Class "WP_Image_Editor" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-image-editor-imagick.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-image-editor-imagick.php on line 16 [13-Jun-2026 09:59:54 UTC] PHP Fatal error: Uncaught Error: Class "IXR_Client" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-http-ixr-client.php:9 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-http-ixr-client.php on line 9 [13-Jun-2026 10:00:06 UTC] PHP Fatal error: Uncaught Error: Class "WP_HTTP_Response" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-http-requests-response.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-http-requests-response.php on line 17 [13-Jun-2026 10:00:09 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/registration-functions.php:9 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/registration-functions.php on line 9 [13-Jun-2026 10:02:06 UTC] PHP Fatal error: Uncaught Error: Class "SimplePie\File" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-simplepie-file.php:19 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-simplepie-file.php on line 19 [13-Jun-2026 10:07:10 UTC] PHP Fatal error: Uncaught Error: Class "WP_Image_Editor" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-image-editor-gd.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-image-editor-gd.php on line 16 [13-Jun-2026 10:08:24 UTC] PHP Fatal error: Uncaught Error: Class "Text_Diff_Renderer_inline" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-text-diff-renderer-inline.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-text-diff-renderer-inline.php on line 17 [13-Jun-2026 10:14:47 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/embed-template.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/embed-template.php on line 11 [13-Jun-2026 10:22:36 UTC] PHP Fatal error: Uncaught Error: Class "IXR_Server" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-xmlrpc-server.php:24 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-xmlrpc-server.php on line 24 [13-Jun-2026 10:23:57 UTC] PHP Fatal error: Uncaught Error: Class "WpOrg\Requests\Hooks" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-http-requests-hooks.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-http-requests-hooks.php on line 18 [13-Jun-2026 10:25:56 UTC] PHP Fatal error: Uncaught Error: Class "Walker" not found in /home/therahul/themomotimes.com/wp-includes/class-walker-nav-menu.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-walker-nav-menu.php on line 17 [13-Jun-2026 10:26:55 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/spl-autoload-compat.php:14 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/spl-autoload-compat.php on line 14 [13-Jun-2026 10:35:06 UTC] PHP Fatal error: Uncaught Error: Undefined constant "ABSPATH" in /home/therahul/themomotimes.com/wp-includes/class-wp-customize-section.php:408 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-customize-section.php on line 408 [13-Jun-2026 10:42:09 UTC] PHP Fatal error: Uncaught Error: Class "Walker" not found in /home/therahul/themomotimes.com/wp-includes/class-walker-page-dropdown.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-walker-page-dropdown.php on line 17 [13-Jun-2026 10:43:04 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_action() in /home/therahul/themomotimes.com/wp-includes/ms-default-filters.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/ms-default-filters.php on line 16 [13-Jun-2026 10:49:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_theme_support() in /home/therahul/themomotimes.com/wp-includes/block-patterns.php:9 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/block-patterns.php on line 9 [13-Jun-2026 10:53:00 UTC] PHP Deprecated: The PSR-0 `Requests_...` class names in the Requests library are deprecated. Switch to the PSR-4 `WpOrg\Requests\...` class names at your earliest convenience. in /home/therahul/themomotimes.com/wp-includes/class-requests.php on line 24 [13-Jun-2026 10:55:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class.wp-dependencies.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class.wp-dependencies.php on line 11 [13-Jun-2026 10:58:31 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [13-Jun-2026 11:03:09 UTC] PHP Fatal error: Uncaught Error: Call to undefined function wp_using_themes() in /home/therahul/themomotimes.com/wp-includes/template-loader.php:7 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-loader.php on line 7 [13-Jun-2026 11:06:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [13-Jun-2026 11:07:29 UTC] PHP Fatal error: Uncaught Error: Undefined constant "ABSPATH" in /home/therahul/themomotimes.com/wp-includes/class-simplepie.php:8 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-simplepie.php on line 8 [13-Jun-2026 11:17:52 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [13-Jun-2026 11:19:36 UTC] PHP Fatal error: Uncaught Error: Class "Walker" not found in /home/therahul/themomotimes.com/wp-includes/class-walker-comment.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-walker-comment.php on line 17 [13-Jun-2026 11:21:16 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class.wp-styles.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class.wp-styles.php on line 11 [13-Jun-2026 11:24:32 UTC] PHP Fatal error: Uncaught Error: Class "Walker" not found in /home/therahul/themomotimes.com/wp-includes/class-walker-category-dropdown.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-walker-category-dropdown.php on line 17 [13-Jun-2026 11:40:13 UTC] PHP Fatal error: Uncaught Error: Undefined constant "ABSPATH" in /home/therahul/themomotimes.com/wp-includes/script-loader.php:20 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/script-loader.php on line 20 [13-Jun-2026 11:40:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/registration.php:9 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/registration.php on line 9 [13-Jun-2026 11:40:46 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class-oembed.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-oembed.php on line 12 [13-Jun-2026 11:41:07 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class-snoopy.php:6 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-snoopy.php on line 6 [13-Jun-2026 11:43:13 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class-http.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-http.php on line 11 [13-Jun-2026 11:43:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/rss.php:19 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/rss.php on line 19 [13-Jun-2026 11:43:29 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_filter() in /home/therahul/themomotimes.com/wp-includes/connectors.php:566 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/connectors.php on line 566 [13-Jun-2026 12:40:53 UTC] PHP Fatal error: Uncaught Error: Undefined constant "ABSPATH" in /home/therahul/themomotimes.com/wp-includes/cache.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/cache.php on line 12 [13-Jun-2026 12:50:32 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class.wp-scripts.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class.wp-scripts.php on line 11 [13-Jun-2026 12:50:40 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [13-Jun-2026 12:53:10 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class-smtp.php:6 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-smtp.php on line 6 [13-Jun-2026 13:51:17 UTC] PHP Fatal error: Uncaught Error: Undefined constant "ABSPATH" in /home/therahul/themomotimes.com/wp-includes/compat.php:301 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/compat.php on line 301 [13-Jun-2026 13:55:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/locale.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/locale.php on line 11 [13-Jun-2026 14:02:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/session.php:9 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/session.php on line 9 [13-Jun-2026 14:05:15 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 575 [13-Jun-2026 14:05:15 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 576 [13-Jun-2026 14:06:05 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 575 [13-Jun-2026 14:06:05 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 576 [13-Jun-2026 14:06:51 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 586 [13-Jun-2026 14:06:51 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 587 [13-Jun-2026 14:06:51 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 588 [13-Jun-2026 14:06:51 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 589 [13-Jun-2026 14:06:51 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 590 [13-Jun-2026 14:12:13 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 586 [13-Jun-2026 14:12:13 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 587 [13-Jun-2026 14:12:13 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 588 [13-Jun-2026 14:12:13 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 589 [13-Jun-2026 14:12:13 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 590 [13-Jun-2026 14:42:56 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/date.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/date.php on line 11 [13-Jun-2026 15:37:45 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 575 [13-Jun-2026 15:37:45 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 576 [13-Jun-2026 16:16:42 UTC] PHP Fatal error: Uncaught Error: Class "WP_Session_Tokens" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-user-meta-session-tokens.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-user-meta-session-tokens.php on line 17 [13-Jun-2026 16:36:04 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _wp_can_use_pcre_u() in /home/therahul/themomotimes.com/wp-includes/utf8.php:137 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/utf8.php on line 137 [13-Jun-2026 16:39:12 UTC] PHP Fatal error: Uncaught Error: Class "Walker" not found in /home/therahul/themomotimes.com/wp-includes/class-walker-category.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-walker-category.php on line 17 [13-Jun-2026 16:49:50 UTC] PHP Fatal error: Uncaught Error: Class "Walker" not found in /home/therahul/themomotimes.com/wp-includes/class-walker-page.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-walker-page.php on line 17 [13-Jun-2026 17:11:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class-json.php:2 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-json.php on line 2 [13-Jun-2026 22:59:53 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 575 [13-Jun-2026 22:59:53 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 576 [13-Jun-2026 23:00:22 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 575 [13-Jun-2026 23:00:22 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 576 [13-Jun-2026 23:36:59 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 575 [13-Jun-2026 23:36:59 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 576 [14-Jun-2026 00:08:54 UTC] PHP Fatal error: Uncaught Error: Class "Text_Diff_Renderer_inline" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-text-diff-renderer-inline.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-text-diff-renderer-inline.php on line 17 [14-Jun-2026 00:09:05 UTC] PHP Fatal error: Uncaught Error: Class "WP_Image_Editor" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-image-editor-imagick.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-image-editor-imagick.php on line 16 [14-Jun-2026 00:09:12 UTC] PHP Fatal error: Uncaught Error: Class "IXR_Client" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-http-ixr-client.php:9 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-http-ixr-client.php on line 9 [14-Jun-2026 00:09:22 UTC] PHP Fatal error: Uncaught Error: Class "WP_HTTP_Response" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-http-requests-response.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-http-requests-response.php on line 17 [14-Jun-2026 00:09:25 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/registration-functions.php:9 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/registration-functions.php on line 9 [14-Jun-2026 00:10:54 UTC] PHP Fatal error: Uncaught Error: Class "SimplePie\File" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-simplepie-file.php:19 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-simplepie-file.php on line 19 [14-Jun-2026 00:16:11 UTC] PHP Fatal error: Uncaught Error: Class "WP_Image_Editor" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-image-editor-gd.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-image-editor-gd.php on line 16 [14-Jun-2026 00:20:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/embed-template.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/embed-template.php on line 11 [14-Jun-2026 00:28:14 UTC] PHP Fatal error: Uncaught Error: Class "IXR_Server" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-xmlrpc-server.php:24 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-xmlrpc-server.php on line 24 [14-Jun-2026 00:29:33 UTC] PHP Fatal error: Uncaught Error: Class "WpOrg\Requests\Hooks" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-http-requests-hooks.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-http-requests-hooks.php on line 18 [14-Jun-2026 00:31:30 UTC] PHP Fatal error: Uncaught Error: Class "Walker" not found in /home/therahul/themomotimes.com/wp-includes/class-walker-nav-menu.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-walker-nav-menu.php on line 17 [14-Jun-2026 00:32:25 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/spl-autoload-compat.php:14 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/spl-autoload-compat.php on line 14 [14-Jun-2026 00:41:42 UTC] PHP Fatal error: Uncaught Error: Undefined constant "ABSPATH" in /home/therahul/themomotimes.com/wp-includes/class-wp-customize-section.php:408 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-customize-section.php on line 408 [14-Jun-2026 00:46:11 UTC] PHP Fatal error: Uncaught Error: Class "Walker" not found in /home/therahul/themomotimes.com/wp-includes/class-walker-page-dropdown.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-walker-page-dropdown.php on line 17 [14-Jun-2026 00:47:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_action() in /home/therahul/themomotimes.com/wp-includes/ms-default-filters.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/ms-default-filters.php on line 16 [14-Jun-2026 00:55:20 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_theme_support() in /home/therahul/themomotimes.com/wp-includes/block-patterns.php:9 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/block-patterns.php on line 9 [14-Jun-2026 00:57:31 UTC] PHP Deprecated: The PSR-0 `Requests_...` class names in the Requests library are deprecated. Switch to the PSR-4 `WpOrg\Requests\...` class names at your earliest convenience. in /home/therahul/themomotimes.com/wp-includes/class-requests.php on line 24 [14-Jun-2026 00:58:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class.wp-dependencies.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class.wp-dependencies.php on line 11 [14-Jun-2026 01:02:27 UTC] PHP Fatal error: Uncaught Error: Class "PHPMailer\PHPMailer\PHPMailer" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php:16 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-phpmailer.php on line 16 [14-Jun-2026 01:07:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function wp_using_themes() in /home/therahul/themomotimes.com/wp-includes/template-loader.php:7 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-loader.php on line 7 [14-Jun-2026 01:12:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html() in /home/therahul/themomotimes.com/wp-includes/template-canvas.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/template-canvas.php on line 12 [14-Jun-2026 01:13:27 UTC] PHP Fatal error: Uncaught Error: Undefined constant "ABSPATH" in /home/therahul/themomotimes.com/wp-includes/class-simplepie.php:8 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-simplepie.php on line 8 [14-Jun-2026 01:23:23 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-styles.php on line 18 [14-Jun-2026 01:25:29 UTC] PHP Fatal error: Uncaught Error: Class "Walker" not found in /home/therahul/themomotimes.com/wp-includes/class-walker-comment.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-walker-comment.php on line 17 [14-Jun-2026 01:28:02 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class.wp-styles.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class.wp-styles.php on line 11 [14-Jun-2026 01:29:42 UTC] PHP Fatal error: Uncaught Error: Class "Walker" not found in /home/therahul/themomotimes.com/wp-includes/class-walker-category-dropdown.php:17 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-walker-category-dropdown.php on line 17 [14-Jun-2026 01:46:05 UTC] PHP Fatal error: Uncaught Error: Undefined constant "ABSPATH" in /home/therahul/themomotimes.com/wp-includes/script-loader.php:20 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/script-loader.php on line 20 [14-Jun-2026 01:46:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/registration.php:9 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/registration.php on line 9 [14-Jun-2026 01:46:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class-oembed.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-oembed.php on line 12 [14-Jun-2026 01:47:05 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class-snoopy.php:6 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-snoopy.php on line 6 [14-Jun-2026 01:48:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class-http.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-http.php on line 11 [14-Jun-2026 01:48:46 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/rss.php:19 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/rss.php on line 19 [14-Jun-2026 01:48:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function add_filter() in /home/therahul/themomotimes.com/wp-includes/connectors.php:566 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/connectors.php on line 566 [14-Jun-2026 02:43:44 UTC] PHP Fatal error: Uncaught Error: Undefined constant "ABSPATH" in /home/therahul/themomotimes.com/wp-includes/cache.php:12 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/cache.php on line 12 [14-Jun-2026 03:00:55 UTC] PHP Fatal error: Uncaught Error: Class "WP_Dependencies" not found in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php:18 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-wp-scripts.php on line 18 [14-Jun-2026 03:01:02 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class.wp-scripts.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class.wp-scripts.php on line 11 [14-Jun-2026 03:04:20 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/class-smtp.php:6 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/class-smtp.php on line 6 [14-Jun-2026 03:52:34 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/locale.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/locale.php on line 11 [14-Jun-2026 03:53:31 UTC] PHP Fatal error: Uncaught Error: Undefined constant "ABSPATH" in /home/therahul/themomotimes.com/wp-includes/compat.php:301 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/compat.php on line 301 [14-Jun-2026 04:02:30 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/session.php:9 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/session.php on line 9 [14-Jun-2026 04:05:16 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 575 [14-Jun-2026 04:05:16 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 576 [14-Jun-2026 04:16:16 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 575 [14-Jun-2026 04:16:16 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 576 [14-Jun-2026 04:17:13 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 575 [14-Jun-2026 04:17:13 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 576 [14-Jun-2026 04:40:19 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 575 [14-Jun-2026 04:40:19 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 576 [14-Jun-2026 04:40:23 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 575 [14-Jun-2026 04:40:23 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/therahul/themomotimes.com/wp-includes/wp.php:1) in /home/therahul/themomotimes.com/wp-includes/wp.php(14) : eval()'d code on line 576 [14-Jun-2026 04:48:15 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/therahul/themomotimes.com/wp-includes/date.php:11 Stack trace: #0 {main} thrown in /home/therahul/themomotimes.com/wp-includes/date.php on line 11