Server IP : 192.64.118.117 / Your IP : 18.191.171.58 Web Server : LiteSpeed System : Linux premium56.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64 User : thecgapy ( 1160) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/thecgapy/www/wp-content/plugins/litespeed-cache/tpl/page_optm/ |
Upload File : |
<?php namespace LiteSpeed ; defined( 'WPINC' ) || exit ; $menu_list = array( 'settings_css' => __( 'CSS Settings', 'litespeed-cache' ), 'settings_js' => __( 'JS Settings', 'litespeed-cache' ), 'settings_html' => __( 'Optimization', 'litespeed-cache' ), 'settings_media' => __( 'Media Settings', 'litespeed-cache' ), 'settings_media_exc' => __( 'Media Excludes', 'litespeed-cache' ), 'settings_localization' => __( 'Localization', 'litespeed-cache' ), 'settings_tuning' => __( 'Tuning', 'litespeed-cache' ), ); $db_count = DB_Optm::db_count( 'all_cssjs', true ); $maybe_show_warning = $db_count > wp_count_posts()->publish * 2 && $db_count > 10000; ?> <div class="wrap"> <h1 class="litespeed-h1"> <?php echo __( 'LiteSpeed Cache Page Optimization', 'litespeed-cache' ) ; ?> </h1> <span class="litespeed-desc"> v<?php echo Core::VER ; ?> </span> <hr class="wp-header-end"> </div> <div class="litespeed-wrap"> <?php if ( Optimize::need_db() && ! Data::get_instance()->tb_exist( 'cssjs' ) ) : ?> <div class="litespeed-callout notice notice-error inline"> <h4><?php echo __( 'WARNING', 'litespeed-cache' ) ; ?></h4> <p><?php echo sprintf( __( 'Failed to create Optimizer table. Please follow <a %s>Table Creation guidance from LiteSpeed Wiki</a> to finish setup.', 'litespeed-cache' ), 'href="https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:cache:lscwp:installation" target="_blank"' ) ; ?></p> </div> <?php endif; ?> <?php if ( $maybe_show_warning ): ?> <div class="litespeed-callout notice notice-warning inline"> <h4><?php echo __( 'NOTICE', 'litespeed-cache' ) ; ?></h4> <p> <?php echo sprintf( __( 'You are now having %s records in CSS/JS optimization table. You may need to check if you have random string issue or not.', 'litespeed-cache' ), '<code>' . $db_count . '</code>' ); ?> <?php Doc::learn_more( 'https://docs.litespeedtech.com/lscache/lscwp/ts-optimize/#find-and-exclude-the-random-string' ); ?> <p><?php echo sprintf( __( 'To clear the outdated CSS/JS optimization data, please go to %s menu.', 'litespeed-cache' ), '<a href="' . admin_url( 'admin.php?page=litespeed-db_optm' ) . '">' . __( 'Database' ) . '</a>' ); ?></p> </p> </div> <?php endif; ?> <div class="litespeed-callout notice notice-warning inline"> <h4><?php echo __( 'NOTICE', 'litespeed-cache' ) ; ?></h4> <p><?php echo __( 'Please test thoroughly when enabling any option in this list. After changing Minify/Combine settings, please do a Purge All action.', 'litespeed-cache' ) ; ?></p> </div> <h2 class="litespeed-header nav-tab-wrapper"> <?php $i = 1 ; foreach ($menu_list as $tab => $val){ $accesskey = $i <= 9 ? "litespeed-accesskey='$i'" : '' ; echo "<a class='litespeed-tab nav-tab' href='#$tab' data-litespeed-tab='$tab' $accesskey>$val</a>" ; $i ++ ; } ?> </h2> <div class="litespeed-body"> <?php $this->form_action() ; // include all tpl for faster UE foreach ($menu_list as $tab => $val) { echo "<div data-litespeed-layout='$tab'>" ; require LSCWP_DIR . "tpl/page_optm/$tab.tpl.php" ; echo "</div>" ; } $this->form_end() ; ?> </div> </div>