UAPI Functions - Mime::add_hotlink

This function adds hotlink protection for a site. Hotlink protection will redirect users to another URL if they navigate to a file with a specified extension, but an allowed URL did not refer them.


 cPanel or Webmail Session URL

https://hostname.example.com:2083/cpsess##########/execute/Mime/add_hotlink?urls=http%3A%2F%2Fexample.com%2F&extensions=foo&allow_null=1&redirect_url=http%3A%2F%2Fredirect.example.com%2F

 LiveAPI PHP Class

$cpanel new CPANEL(); // Connect to cPanel - only do this once.
  
// Add a hotlink protection for extension ".foo"
$mime_add_hotlink_protection $cpanel->uapi(
    'Mime''add_hotlink',
    array(
        'extensions'   => 'foo',
        'urls'         => 'http://example.com/',
        'allow_null'   => '1',
        'redirect_url' => 'http://redirect.example.com/',
  )
);

 LiveAPI Perl Module

my $cpliveapi = Cpanel::LiveAPI->new(); # Connect to cPanel - only do this once.
  
# Add a hotlink protection for extension ".foo"
my $mime_add_hotlink_protection $cpliveapi->uapi(
    'Mime''add_hotlink',
    {
        'extensions'   => 'foo',
        'urls'         => 'http://example.com/',
        'allow_null'   => '1',
        'redirect_url' => 'http://redirect.example.com/',
    }
);

 cPanel Template Toolkit

<!--  Add a hotlink protection for extension ".foo" -->
[% data = execute( 'Mime', 'add_hotlink', {'extensions'=> 'foo', 'urls' => 'http://example.com/', 'allow_null' => '1', 'redirect_url' => 'http://redirect.example.com/', } ); %]

 Command Line

uapi --user=username add_hotlink urls=http%3A%2F%2Fexample.com%2F extensions=foo allow_null=1 redirect_url=http%3A%2F%2Fredirect.example.com%2F

 

Notes:

  • You must URI-encode values.
  • username represents your account-level username.

 Output (JSON)

{
  "messages": null,
  "errors": null,
  "status": 1,
  "data": null
}

 

Note:

Use cPanel's API Shell interface (Home >> Advanced >> API Shell) to directly test cPanel API calls.

 

 Parameter 

Type

Description

Possible values

Example

urls

string

Required

The site to hotlink protect.

A valid URL.

Note:

 To protect multiple URLs, separate each URL with a newline character. 

http://example.com/

extensions

string

Required

File types to hotlink protect. 

A valid file extension.

Note:

To protect multiple file types, use a comma-separated list.

foo

allow_null

 Boolean 

Whether the domain allows hotlinks.

  • 1 — Allows.
  • 0 — Does not allow.

 1

redirect_url

string

Required

 The URL to which the system sends hotlinkers. 

A valid URL.

 http://redirect.example.com/ 

 

This function only returns metadata.

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

The cPanel Interface

For  cPanel  &  WHM  version  58 Overview The cPanel interface is...

User Preferences

For cPanel & WHM version 58 Overview This document outlines how to access your cPanel...

Manage External Authentications

For cPanel & WHM version 58 Overview Manage credentials Additional documentation...

What is cPanelID?

In This Article:  Overview ServicesHow to get a cPanelID cPanelID External...

Guide to cPanel Interface Customization - cPanel Style Development

Introduction You can develop custom styles that modify the appearance of the cPanel interface....