afavinger
Forum Replies Created
Viewing 2 replies - 1 through 2 (of 2 total)
-
Forum: Plugins
In reply to: [WP Super Cache] First page not cachedIt 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 $bufferForum: Plugins
In reply to: [MM Forms Community] [Plugin: MM Forms Community] no output on fresh installFor 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)