HEX
Server: Apache/2
System: Linux vps32496.sdns.vn 3.10.0-1160.99.1.el7.x86_64 #1 SMP Wed Sep 13 14:19:20 UTC 2023 x86_64
User: khuondaotc (1075)
PHP: 7.4.33
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/khuondaotc/domains/khuondaotct.com/public_html/wp-content/plugins/personizely/personizely.php
<?php

/*
Plugin Name: Personizely
Description: Personizely Widgets and Website Personalization for Wordpress
Author URI: https://www.personizely.net?utm_source=wordpress&utm_medium=plugin
Version: 0.11
Author: Personizely
License: GPLv2 or later
*/

// Make sure we don't expose any info if called directly
if ( !function_exists( 'add_action' ) ) {
    echo 'Hi there!  I\'m just a plugin, not much I can do when called directly.';
    exit;
}

define( 'PERSONIZELY_VERSION', '0.11' );
define( 'PERSONIZELY__MINIMUM_WP_VERSION', '3.1' );
define( 'PERSONIZELY__PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'PERSONIZELY__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'PERSONIZELY_DELETE_LIMIT', 100000 );

define( 'PERSONIZELY_APP_HOST', 'app.personizely.net' );
define( 'PERSONIZELY_APP_URL', 'https://'. PERSONIZELY_APP_HOST );
define( 'PERSONIZELY_STATIC_HOST', 'static.personizely.net' );
define( 'PERSONIZELY_STATIC_URL', 'https://' . PERSONIZELY_STATIC_HOST );

require_once( PERSONIZELY__PLUGIN_DIR . 'class.personizely.php' );

add_action( 'init', array( 'Personizely', 'init' ) );

if ( is_admin() ) {
    require_once( PERSONIZELY__PLUGIN_DIR . 'class.personizely-admin.php' );
    add_action( 'init', array( 'Personizely_Admin', 'init' ) );
}