WARNING: WordPress\'s built-in Object cache is not Enabled, You may find a performance increase if you are running on a reliable webhost.
'); } if( isset($_POST['submit_general']) ){ check_admin_referer('wpupdate-general-options'); $update_notification_enable = isset($_POST['update_notification_enable']); $update_install_enable = isset($_POST['update_install_enable']); $update_upgrade_enable = isset($_POST['update_upgrade_enable']); $update_autoinstall_enable = isset($_POST['update_autoinstall_enable']); $update_check_inactive = isset($_POST['update_check_inactive']); $update_location_search = isset($_POST['update_location_search']); $update_location_custom = isset($_POST['update_location_custom']); $update_autocheck_nightly = isset($_POST['update_autocheck_nightly']); $update_email_enable = isset($_POST['update_email_enable']); $update_email_email = isset($_POST['update_email_email']) ? $_POST['update_email_email'] : get_option('update_email_email'); $update_plugin_search_enable = isset($_POST['update_plugin_search_enable']); $update_theme_search_enable = isset($_POST['update_theme_search_enable']); if( ! $update_autocheck_nightly ){ wp_clear_scheduled_hook('wpupdate_cron'); } else { if ( ! wp_next_scheduled('wpupdate_cron')) { wp_schedule_event( time(), 'daily', 'wpupdate_cron' ); } } update_option('update_notification_enable', $update_notification_enable); update_option('update_install_enable', $update_install_enable); update_option('update_upgrade_enable', $update_upgrade_enable); update_option('update_autoinstall_enable', $update_autoinstall_enable); update_option('update_check_inactive', $update_check_inactive); update_option('update_location_search', $update_location_search); update_option('update_location_custom', $update_location_custom); update_option('update_autocheck_nightly', $update_autocheck_nightly); update_option('update_email_enable', $update_email_enable); update_option('update_email_email', $update_email_email); update_option('update_plugin_search_enable',$update_plugin_search_enable); update_option('update_theme_search_enable', $update_theme_search_enable); echo '' . __('General Options Saved') . '.
' . __('Note:With the current server configuration, "Direct" Filesystem access is recomended.') . '
'; else echo '' . __('Note:With the current server configuration, "FTP" Filesystem access is recomended.') . '
' . __('Filesystem Options Saved') . '.