Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 18.191.223.30
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/wavevlvu/diixadigital.com/wp-content/plugins/jetpack/3rd-party/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/wavevlvu/diixadigital.com/wp-content/plugins/jetpack/3rd-party//bitly.php
<?php
/**
 * Fixes issues with the Official Bitly for WordPress
 * https://wordpress.org/plugins/bitly/
 *
 * @package automattic/jetpack
 */

if ( isset( $GLOBALS['bitly'] ) ) {
	if ( method_exists( $GLOBALS['bitly'], 'og_tags' ) ) {
		remove_action( 'wp_head', array( $GLOBALS['bitly'], 'og_tags' ) );
	}
		add_action( 'wp_head', 'jetpack_bitly_og_tag', 100 );
}

/**
 * Adds bitly OG tags.
 */
function jetpack_bitly_og_tag() {
	if ( has_filter( 'wp_head', 'jetpack_og_tags' ) === false ) {
		// Add the bitly part again back if we don't have any jetpack_og_tags added.
		if ( method_exists( $GLOBALS['bitly'], 'og_tags' ) ) {
			$GLOBALS['bitly']->og_tags();
		}
	} elseif (
		isset( $GLOBALS['posts'] )
		&& $GLOBALS['posts'][0]->ID > 0
		&& method_exists( $GLOBALS['bitly'], 'get_bitly_link_for_post_id' )
	) {
		printf(
			"<meta property=\"bitly:url\" content=\"%s\" /> \n",
			esc_attr( $GLOBALS['bitly']->get_bitly_link_for_post_id( $GLOBALS['posts'][0]->ID ) )
		);
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit