| Server IP : 68.183.124.220 / Your IP : 216.73.217.137 Web Server : Apache/2.4.18 (Ubuntu) System : Linux Sandbox-A 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : gavin ( 1000) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/plugins/ajax-search-lite/backend/ |
Upload File : |
<?php
/* Prevent direct access */
defined( 'ABSPATH' ) or die( "You can't access this file directly." );
$cache_options = wd_asl()->o['asl_performance'];
?>
<div id="wpdreams" class='wpdreams wrap<?php echo isset($_COOKIE['asl-accessibility']) ? ' wd-accessible' : ''; ?>'>
<?php if (wd_asl()->o['asl_performance']['use_custom_ajax_handler'] == 1): ?>
<p class='noticeMsgBox'>AJAX SEARCH LITE NOTICE: The custom ajax handler is enabled. In case you experience issues, please
<a href='<?php echo get_admin_url() . "admin.php?page=ajax-search-lite/backend/performance_options.php"; ?>'>turn it off.</a></p>
<?php endif; ?>
<div class="wpdreams-box" style="float:left;">
<?php ob_start(); ?>
<div class="item">
<p class='infoMsg'>Turn it OFF if the search stops working correctly after enabling.</p>
<?php $o = new wpdreamsYesNo( "use_custom_ajax_handler", "Use custom ajax handler", wpdreams_setval_or_getoption( $cache_options, 'use_custom_ajax_handler', 'asl_performance_def' ) ); ?>
<p class="descMsg">The queries will be posted to a custom ajax handler file, which does not wait for whole WordPress loading process. Usually it has great performance impact.</p>
</div>
<div class="item">
<?php $o = new wpdreamsYesNo( "image_cropping", "Crop images for caching?",
wpdreams_setval_or_getoption( $cache_options, 'image_cropping', 'asl_performance_def' ) ); ?>
<p class="descMsg">When turned OFF, it disables thumbnail generator, and the full sized images are used as cover. Not much difference visually, but saves a lot of CPU.</p>
</div>
<div class="item">
<?php $o = new wpdreamsYesNo( "load_in_footer", "Load JavaScript in site footer?",
wpdreams_setval_or_getoption( $cache_options, 'load_in_footer', 'asl_performance_def' ) ); ?>
<p class="descMsg">Will load the JavaScript files in the site footer for better performance.</p>
</div>
<div class="item">
<input type='submit' class='submit' value='Save options'/>
</div>
<?php $_r = ob_get_clean(); ?>
<?php
$updated = false;
if ( isset( $_POST ) && isset( $_POST['asl_performance'] ) ) {
$values = array(
"use_custom_ajax_handler" => $_POST['use_custom_ajax_handler'],
"image_cropping" => $_POST['image_cropping'],
"load_in_footer" => $_POST['load_in_footer']
);
update_option( 'asl_performance', $values );
$updated = true;
}
?>
<div class='wpdreams-slider'>
<form name='asl_performance_form' method='post'>
<?php if ( $updated ): ?>
<div class='successMsg'>Performance settings successfuly updated!</div><?php endif; ?>
<fieldset>
<legend>Performance Options</legend>
<?php print $_r; ?>
<input type='hidden' name='asl_performance' value='1'/>
</fieldset>
</form>
</div>
</div>
<div id="asl-side-container">
<a class="wd-accessible-switch" href="#"><?php echo isset($_COOKIE['asl-accessibility']) ? 'DISABLE ACCESSIBILITY' : 'ENABLE ACCESSIBILITY'; ?></a>
</div>
<div class="clear"></div>
</div>