| Server IP : 34.87.99.72 / Your IP : 216.73.217.31 Web Server : Apache/2.4.46 (Unix) OpenSSL/1.1.1n System : Linux zlock-bitnami-lamp-prod-v2-vm 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 User : bitnami ( 1000) PHP Version : 7.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /opt/bitnami/apache/htdocs/web/wp-content/plugins/better-search-replace/templates/ |
Upload File : |
<?php /** * Displays the main "Settings" tab. * * @link https://bettersearchreplace.com * @since 1.1 * * @package Better_Search_Replace * @subpackage Better_Search_Replace/templates */ // Prevent direct/unauthorized access. if ( ! defined( 'BSR_PATH' ) ) exit; // Other settings. $page_size = get_option( 'bsr_page_size' ) ? absint( get_option( 'bsr_page_size' ) ) : 20000; ?> <?php settings_fields( 'bsr_settings_fields' ); ?> <table class="form-table"> <tbody> <tr valign="top"> <th scope="row" valign="top"> <?php _e( 'Max Page Size', 'better-search-replace' ); ?> </th> <td> <div id="bsr-page-size-slider" class="bsr-slider"></div> <br><span id="bsr-page-size-info"><?php _e( 'Current Setting: ', 'better-search-replace' ); ?></span><span id="bsr-page-size-value"><?php echo $page_size; ?></span> <input id="bsr_page_size" type="hidden" name="bsr_page_size" value="<?php echo $page_size; ?>" /> <p class="description"><?php _e( 'If you\'re noticing timeouts or getting a white screen while running a search replace, try decreasing this value.', 'better-search-replace' ); ?></p> </td> </tr> </tbody> </table> <?php submit_button(); ?>