| @@ -1,23 +1,25 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | 3 | * Plugin Name: BerqWP |
| 4 | - * Plugin URI: https://berqwp.com | |
| 5 | - * Description: Automatically pass Core Web Vitals for WordPress and boost your speed score to 90+ for both mobile and desktop without any technical skills. | |
| 6 | - * Version: 4.0.21 | |
| 4 | + * Plugin URI: https://berqwp.com/ | |
| 5 | + * Description: Automatically boost your WordPress website speed. Includes full-page caching, image optimization, CSS/JS delivery, and Core Web Vitals improvements. | |
| 6 | + * Version: 4.1.16 | |
| 7 | 7 | * Requires at least: 5.3 |
| 8 | 8 | * Requires PHP: 7.4 |
| 9 | 9 | * Author: BerqWP |
| 10 | - * Author URI: https://berqwp.com | |
| 10 | + * Author URI: https://berqwp.com/ | |
| 11 | 11 | * Text Domain: searchpro |
| 12 | 12 | * Domain Path: /languages |
| 13 | 13 | * Network: true |
| 14 | + * License: GPL-2.0-or-later | |
| 15 | + * License URI: https://www.gnu.org/licenses/gpl-2.0.html | |
| 14 | 16 | */ |
| 15 | 17 | |
| 16 | 18 | if (!defined('ABSPATH')) exit; |
| 17 | 19 | |
| 18 | 20 | if (!defined('BERQWP_VERSION')) { |
| 19 | - define('BERQWP_VERSION', '4.0.21'); | |
| 21 | + define('BERQWP_VERSION', '4.1.16'); | |
| 20 | 22 | } |
| 21 | 23 | |
| 22 | 24 | if (!defined('optifer_PATH')) { |
| 23 | 25 | define('optifer_PATH', plugin_dir_path(__FILE__)); |
| @@ -57,8 +59,9 @@ | ||
| 57 | 59 | // require_once optifer_PATH . '/BerqWP/src/Vendor/SimpleHtmlDom/simple_html_dom.php'; |
| 58 | 60 | |
| 59 | 61 | require_once optifer_PATH . '/inc/crawler/berqDetectCrawler.php'; |
| 60 | 62 | require_once optifer_PATH . '/inc/class-berqconfigs.php'; |
| 63 | +require_once optifer_PATH . '/inc/class-berqdatabase.php'; | |
| 61 | 64 | // require_once optifer_PATH . '/vendor/autoload.php'; |
| 62 | 65 | // require_once optifer_PATH . '/vendor/woocommerce/action-scheduler/action-scheduler.php'; |
| 63 | 66 | require_once optifer_PATH . '/inc/class-berqlogs.php'; |
| 64 | 67 | require_once optifer_PATH . '/inc/helper-functions.php'; |
| @@ -154,4 +157,5 @@ | ||
| 154 | 157 | } |
| 155 | 158 | } |
| 156 | 159 | |
| 157 | 160 | bwp_lock_cache_directory(); |
| 161 | +bwp_serve_advanced_cache(); | |