HEX
Server: Apache
System: Linux gains.linuxbigapps.com 4.18.0-553.74.1.lve.el8.x86_64 #1 SMP Tue Sep 9 14:25:24 UTC 2025 x86_64
User: mountains (1551)
PHP: 8.0.30
Disabled: allow_url_include, show_source, symlink, system, passthru, exec, popen, pclose, proc_open, proc_terminate,proc_get_status, proc_close, proc_nice, allow_url_fopen, shell-exec, shell_exec, fpassthru, base64_encodem, escapeshellcmd, escapeshellarg, crack_check,crack_closedict, crack_getlastmessage, crack_opendict, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid, dl, escap, phpinfo
Upload Files
File: /home/mountains/public_html/backup/wp-content/plugins/fluentform/fluentform.php
<?php
/*
Plugin Name: Fluent Forms
Description: Contact Form By Fluent Forms is the advanced Contact form plugin with drag and drop, multi column supported form builder plugin
Version: 4.3.11
Author: Contact Form - WPManageNinja LLC
Author URI: https://fluentforms.com
Plugin URI: https://wpmanageninja.com/wp-fluent-form/
License: GPLv2 or later
Text Domain: fluentform
Domain Path: /resources/languages
*/

defined('ABSPATH') or die;

defined('FLUENTFORM') or define('FLUENTFORM', true);
define('FLUENTFORM_DIR_PATH', plugin_dir_path(__FILE__));
defined('FLUENTFORM_VERSION') or define('FLUENTFORM_VERSION', '4.3.11');

if (!defined('FLUENTFORM_HAS_NIA')) {
    define('FLUENTFORM_HAS_NIA', true);
}

include FLUENTFORM_DIR_PATH . 'framework/Foundation/Bootstrap.php';

use FluentForm\Framework\Foundation\Bootstrap;

Bootstrap::run(__FILE__);

// Handle Newtwork new Site Activation
add_action('wp_insert_site', function ($blog) {
    switch_to_blog($blog->blog_id);
    include_once plugin_dir_path(__FILE__) . 'app/Modules/Activator.php';
    (new FluentForm\App\Modules\Activator)->migrate();
    restore_current_blog();
});