PluginProbe ʕ •ᴥ•ʔ
Really Simple Security – Simple and Performant Security (formerly Really Simple SSL) / 9.5.0.1
Really Simple Security – Simple and Performant Security (formerly Really Simple SSL) v9.5.0.1
9.5.11 9.5.10.1 9.5.10 trunk 9.4.0 9.4.1 9.4.2 9.4.3 9.5.0 9.5.0.1 9.5.0.2 9.5.1 9.5.2 9.5.2.2 9.5.2.3 9.5.3 9.5.3.1 9.5.3.2 9.5.4 9.5.5 9.5.6 9.5.7 9.5.8 9.5.9
really-simple-ssl / lets-encrypt / integrations / integrations.php
really-simple-ssl / lets-encrypt / integrations Last commit date
cloudways 1 year ago cpanel 1 year ago directadmin 1 year ago hostgator 3 years ago plesk 1 year ago index.php 2 years ago integrations.php 3 years ago
integrations.php
18 lines
1 <?php defined( 'ABSPATH' ) or die();
2 $other_host = rsssl_get_other_host();
3 if (file_exists( rsssl_le_path . "integrations/$other_host/$other_host.php" )) {
4 require_once( rsssl_le_path . "integrations/$other_host/$other_host.php" );
5 }
6 if (file_exists( rsssl_le_path . "integrations/$other_host/functions.php" )){
7 require_once( rsssl_le_path . "integrations/$other_host/functions.php" );
8 }
9
10 if ( rsssl_is_cpanel() ) {
11 require_once( rsssl_le_path . 'integrations/cpanel/cpanel.php' );
12 } else if ( rsssl_is_plesk() ) {
13 require_once( rsssl_le_path . 'integrations/plesk/plesk.php' );
14 } else if ( rsssl_is_directadmin() ) {
15 require_once( rsssl_le_path . 'integrations/directadmin/directadmin.php' );
16 }
17
18