HEX
Server: Apache/2.4.59 (Ubuntu) mod_fcgid/2.3.9 OpenSSL/3.0.2
System: Linux panel.ctvbarranquilla.com 5.15.0-102-generic #112-Ubuntu SMP Tue Mar 5 16:50:32 UTC 2024 x86_64
User: bastidas (1002)
PHP: 8.2.18
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,exec,system,passthru,shell_exec,proc_open,popen
Upload Files
File: /home/bastidas/web/bastidas.tv/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' ) );
}