Please give me the bypass method this method not work for me
<?php
/*
Plugin Name: Fanfox Manga Crawler
Plugin URI:
https://www.mangabooth.com
Description: Automatic crawl Manga from fanfox.net (MangaFox) and autopost
Version: 1.3.0.7
Author: WPStylish
Author URI:
https://www.mangabooth.com
License: Commercial (MangaBooth.com)
*/
if ( ! defined( 'WP_MCL_FF_PATH' ) ) {
define( 'WP_MCL_FF_PATH', plugin_dir_path( __FILE__ ) );
}
if ( ! defined( 'WP_MCL_FF_URL' ) ) {
define( 'WP_MCL_FF_URL', plugin_dir_url( __FILE__ ) );
}
if( ! defined( 'WP_MCL_TD' ) ){
define( 'WP_MCL_TD', 'madara' );
}
if ( ! class_exists( 'FF_CRAWLER_IMPLEMENT' ) ) {
class WP_MANGA_FF_CRAWLER {
public function __construct() {
$this->init();
$this->hooks();
}
private function hooks(){
add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
}
private function init(){
if( ini_get('max_execution_time') < 600 ){
ini_set('max_execution_time', 600);
}
if( ini_get('max_input_time') < 600 ){
ini_set('max_input_time', 600);
}
if( !function_exists( 'file_get_html' ) ){
require_once WP_MCL_FF_PATH . 'libs/simplehtmldom_1_5/simple_html_dom.php';
}
$includes = array(
'includes' => array(
'helper',
'JavaScriptUnpacker',
'import',
'crawl',
'implement' => array(
'helper',
'implement',
'crawl-single'
),
'cronjob',
'settings',
'debug'
)
);
foreach( $includes as $dir => $files ){
foreach( $files as $index => $file ){
if( is_array( $file ) ){
foreach( $file as $f ){
require_once( WP_MCL_FF_PATH . "{$dir}/{$index}/{$f}.php" );
}
}else{
require_once( WP_MCL_FF_PATH . "{$dir}/{$file}.php" );
}
}
}
}
public function admin_enqueue_scripts() {
if( class_exists('FF_CRAWLER_IMPLEMENT') && FF_CRAWLER_HELPERS::is_settings_page() ){
wp_enqueue_style( 'wp-crawler-style', WP_MCL_FF_URL . 'assets/css/admin.css' );
if( isset( $_GET['tab'] ) && $_GET['tab'] == 'crawl-progress' ){
wp_enqueue_script( 'ff-crawler-task', WP_MCL_FF_URL . 'assets/js/ff-crawler-task.js', array( 'jquery' ) );
}
}
}
}
require_once('admin/settings-page.php');
// $license_key = get_option(MDR_FF_CRAWLER_LICENSE_KEY);
// if ($license_key) {
$WP_MANGA_FF_CRAWLER = new WP_MANGA_FF_CRAWLER();
// register_activation_hook(__FILE__, 'fanfox_activation');
// } else {
// add_action('admin_notices', 'madara_fanfox_crawler_admin_notice__warning');
// }
}