Title: afavinger's Replies | WordPress.org

---

# afavinger

  [  ](https://wordpress.org/support/users/afavinger/)

 *   [Profile](https://wordpress.org/support/users/afavinger/)
 *   [Topics Started](https://wordpress.org/support/users/afavinger/topics/)
 *   [Replies Created](https://wordpress.org/support/users/afavinger/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/afavinger/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/afavinger/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/afavinger/engagements/)
 *   [Favorites](https://wordpress.org/support/users/afavinger/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Super Cache] First page not cached](https://wordpress.org/support/topic/first-page-not-cached/)
 *  [afavinger](https://wordpress.org/support/users/afavinger/)
 * (@afavinger)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/first-page-not-cached/#post-6602856)
 * It looks like it’s related to xmlrpc.php hits. There are constant spam attacks
   hitting xmlrpc.php, and it looks like each one causes wp-super-cache to clear
   cache files if “Cache Rebuild” is checked:
 *     ```
       21:21:37 7816 /xmlrpc.php wp_cache_ob_callback clearing rebuilt files in /home/www-nxhm/blog/wp-content/cache/supercache/blogdomain.com/
       ```
   
 * More Details:
 *     ```
       21:21:37 7816 /xmlrpc.php wp_cache_get_cookies_values: return:
       21:21:37 7816 /xmlrpc.php In WP Cache Phase 2
       21:21:37 7816 /xmlrpc.php Setting up WordPress actions
       21:21:37 7816 /xmlrpc.php Created output buffer
       21:21:37 7816 /xmlrpc.php wp_cache_get_cookies_values: return:
       21:21:37 7816 /xmlrpc.php supercache dir: /home/www-nxhm/blog/wp-content/cache/supercache/blogdomain.com/
       21:21:37 7816 /xmlrpc.php Not caching POST request.
       21:21:37 7816 /xmlrpc.php wp_cache_ob_callback clearing rebuilt files in /home/www-nxhm/blog/wp-content/cache/supercache/blogdomain.com/
       21:21:37 7816 /xmlrpc.php wp_cache_maybe_dynamic: returned $buffer
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MM Forms Community] [Plugin: MM Forms Community] no output on fresh install](https://wordpress.org/support/topic/plugin-mm-forms-community-no-output-on-fresh-install/)
 *  [afavinger](https://wordpress.org/support/users/afavinger/)
 * (@afavinger)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/plugin-mm-forms-community-no-output-on-fresh-install/#post-1661361)
 * For those having issues and are using SSL (https) for your wordpress admin:
 * I was able to resolve my mm-forms-community issues (not saving forms, etc) by
   making the “$base_url” variable reflect the proper https url for admin pages:
 * Add this function to the bottom of mm-forms.php:
 *     ```
       function get_mmforms_base_url() {
       	$url = get_option('siteurl');
   
       	if (defined('FORCE_SSL_ADMIN') && constant('FORCE_SSL_ADMIN'))
       		$url = preg_replace('|^http://|i', 'https://', $url);
   
       	return $url;
       }
       ```
   
 * On line 1141 AND line 1557 of mm-forms.php, change:
    `$base_url = get_option('
   siteurl') . '/wp-admin/options-general.php';` to `$base_url = get_mmforms_base_url().'/
   wp-admin/options-general.php';`

Viewing 2 replies - 1 through 2 (of 2 total)