📁
SKYSHELL MANAGER
PHP v8.1.34
Create
Create
Path:
root
/
home
/
terracebizon
/
public_html
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
config.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
13693.44 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: admin-settings.js
"use strict"; /*! SSL Insecure Content Fixer admin settings script https://ssl.webaware.net.au/ */ (function ($) { $.ajax({ url: sslfix.ajax_url_ssl, data: { action: "sslfix-get-recommended", sslfix_nonce: sslfix.test_nonce }, dataType: "json", method: "GET", success: showRecommended }); /** * show recommended settings * @param {Object} response */ function showRecommended(response) { if (response.recommended) { var label = $("label[for=" + response.recommended_element + "]"); label.addClass("sslfix-recommended"); label.html(label.html() + "<br/><span>" + sslfix.msg.recommended + "</span>"); } } $.ajax({ url: sslfix.ajax_url_wp, data: { action: "sslfix-test-https" }, dataType: "json", method: "GET", xhrFields: { withCredentials: true }, success: showHttpsDetected }); /** * show whether HTTPS was detected correctly within WordPress * @param {Object} response */ function showHttpsDetected(response) { if (response.https) { $("#sslfix-https-detection").addClass("dashicons dashicons-" + response.https); } } })(jQuery);
Save