Traffic Usage by Zones Please note that in our new cloud panel, Zones are named as CDN Resources. (Zone ID = CDN Resource ID) You can obtain and view the traffic distribution based on the type of your zone (Large, Small, or Aksela object). Parameters Return Values Example PHP Code <?php $curl = curl_init(); curl_setopt_array($curl, […]
All posts by Ahmet Yasin Yılmaz
Zone Usage Report
Zone Usage Report Shows total usage details regarding your zone. Parameters Return Values Example PHP Code <?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => “https://api.medianova.com/v1/report/total”, CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => “”, CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => false, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => “GET”, )); $response = curl_exec($curl); curl_close($curl); echo $response; Example Output […]
How to create a CNAME record?
How to create a CNAME record? Canonical Name (CNAME) is a nickname given to URL records. Instead of the CDN URL provided to you by Medianova, you can use a URL determined by you. Below you can find the steps to add a CNAME on Medianova panel. You can access the Medianova cloud panel by […]
Medianova CDN Integration
Medianova CDN Integration You can easily manage your CDN accounts and add new zones via Medianova Panel by logging in from the login screen. Follow the steps below to integrate our CDN service to your website through the panel. First of all, you should create your CDN zone compatible with your content type that you want to […]
Progressive Geoblock Edit
Progressive Geoblock Edit Please note that in our new cloud panel, Zones are named as CDN Resources. (Zone ID = CDN Resource ID) This operation allows you to edit Geoblocks for your progressive zone. Parameters Return Values Example PHP Code <?php $data = array( “user_key” => “Your User Key”, “user_secret” =>”Your User Secret”, “zone_ids” => […]
Stream Zone Update
Stream Zone Update Please note that in our new cloud panel, Zones are named as CDN Resources. (Zone ID = CDN Resource ID) You can update your created stream zones in order to their types. Parameters Parameter Type Required Description user_key string Yes API User Token user_secret string Yes API User Secret Token zone_id integer […]
Stream Zone Status (Active/Passive)
Stream Zone Status (Active/Passive) Please note that in our new cloud panel, Zones are named as CDN Resources. (Zone ID = CDN Resource ID) You can activate or deacivate your stream zones. Method PUT Link-(for active) https://api.medianova.com/v1/zone/stream/active Link-(for passive) https://api.medianova.com/v1/zone/stream/passive Parameters Parameter Type Required Description user_key string Yes API User Token user_secret string Yes API User […]
Page Rules
Page Rules This feature allows you to define rules on files or file formats for content they hold under our CDN structure. To use this feature; You can access the Medianova cloud panel by logging in with your username and password at cloud.medianova.com. You can reach the Page Rule settings screen by clicking on the […]
Hit / Miss Report for the VOD Object
Hit / Miss Report for the VOD Object Please note that in our new cloud panel, Zones are named as CDN Resources. (Zone ID = CDN Resource ID) Returns the hit/miss ratio for the progressive zone for VOD object Parameters Return Values Example PHP Code <?php $user_key=”Your User Key”; $user_secret=”Your User Secret”; $service_url = ‘https://api.medianova.com/v1/report/cache-status?user_key=’.$user_key.’&user_secret=’.$user_secret.’&zone_ids[]={zone_id}&from={date}&to={date}’; […]
Histogram Zoom in Feature
Histogram Zoom Feature Did you know the histogram zoom feature on the Medianova Panel? When you log in to the panel, you can see the traffic details during the peak times using the historical data zoom feature in the “traffic, hits & bandwidth” histogram. Go to “Site Visit” tab and choose the time you would […]