fpoller
Forum Replies Created
-
Hi,
Sorry for the late reply (and the embarrassing error).
I’ve released a new version, should be available shortly
Forum: Plugins
In reply to: [Pingdom Status] [Plugin: Pingdom Status] Problems using pluginParmalink settings: /%year%/%monthnum%/%postname%/
The link points to ?page_id=0. 0 is for some reason returned by $wp_query->query_vars[“page_id”]
The following seems to be working better, for me at least.
$overview_link = get_permalink($wp_query->post->ID);
Forum: Plugins
In reply to: [Pingdom Status] [Plugin: Pingdom Status] Problems using pluginGreat!
One more thing. The “Go back to all services” link points to the blog front page, not the current page.
Forum: Plugins
In reply to: [Pingdom Status] [Plugin: Pingdom Status] Problems using pluginThanks for a quick fix, this solved issue #1 and #2.
Issue #3 was because the PDO mysql driver was required, with that installed the error went away.
A new issue did however reveal itself; the template files uses short open tags as well.
Forum: Fixing WordPress
In reply to: [Plugin: Private WP suite] Not workingWhen protecting uploaded files, the php script reads the file on request and serves it if the user is either logged in or exempt.
The problem could be that memory_limit needs to be increased for PHP. Or that the wp_check_filetype function doesn’t find the mime type for the file.
It could also be that ob_clean() or flush() is outputting some error, that corrupts the file. Try adding error_reporting(0); before that.