/home/techb158/balacoffee.com/wp-content/plugins/wp-rocket/inc/deprecated
NameSizeModeActions
classes/-0755rm
Engine/-0755rm
subscriber/-0755rm
vendors/-0755rm
3.2.php123370644editdlrm
3.3.php314600644editdlrm
3.4.php180620644editdlrm
3.5.php298090644editdlrm
3.6.php345000644editdlrm
3.7.php86290644editdlrm
3.8.php101740644editdlrm
3.9.php37580644editdlrm
3.10.php43610644editdlrm
3.11.php78870644editdlrm
3.12.php221620644editdlrm
3.13.php28500644editdlrm
3.14.php131230644editdlrm
deprecated.php1072530644editdlrm
DeprecatedClassTrait.php29180644editdlrm
Edit: /home/techb158/balacoffee.com/wp-content/plugins/wp-rocket/inc/deprecated/3.9.php (3758B)
pagination_base ); rocket_godaddy_request( 'PURGE', $home_url ); rocket_godaddy_request( 'PURGE', $home_pagination_url ); } /** * Perform the call to the Varnish server to purge * * @since 3.9.1 deprecated * @since 2.9.5 * @source WPaaS\Cache * * @param string $method can be BAN or PURGE. * @param string $url URL to purge. * @return void */ function rocket_godaddy_request( $method, $url = null ) { _deprecated_function( __FUNCTION__ . '()', '3.9.0.4', '\WP_Rocket\ThirdParty\Hostings\Godaddy::godaddy_request' ); if ( ! method_exists( 'WPaas\Plugin', 'vip' ) ) { return; } if ( empty( $url ) ) { $url = home_url(); } $host = rocket_extract_url_component( $url, PHP_URL_HOST ); $url = set_url_scheme( str_replace( $host, WPaas\Plugin::vip(), $url ), 'http' ); wp_cache_flush(); // This forces the APC cache to flush across the server. update_option( 'gd_system_last_cache_flush', time() ); wp_remote_request( esc_url_raw( $url ), [ 'method' => $method, 'blocking' => false, 'headers' => [ 'Host' => $host, ], ] ); }