Michael
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 4.5 causes infinite redirect on static front pageThank you Andrew for posting your solution which does not require editing the core.
I had the problem in 4.5.2 and fixed it by editing wp-includes/canonical.php because it needed to be fixed immediately. But then an upgrade to 4.5.3 brought the problem back.
Disabling the canonical redirect on the home page should survive upgrades.
And maybe WordPress will eventually fix the bug?
Forum: Plugins
In reply to: [XML Sitemap & Google News] Cannot apply_filters() to plugins_url()I tried this more recent development version linked above, and it produces site maps as normal. Also, this newer version allows me to filter the plugin url. Therefore I would say this new change works for me and the issue can be closed.
Forum: Plugins
In reply to: [XML Sitemap & Google News] Cannot apply_filters() to plugins_url()Hi Ravan. Thanks for the quick response about this. I did try the version you linked above, but it might have an internal error because it didn’t produce a sitemap. I got this WordPress error:
ERROR: This is not a valid feed template.😕
Forum: Plugins
In reply to: [XML Sitemap & Google News] Feature Request: Use separate configuration pageYes, I figured it was a case of initially very few settings, with more settings being added over time. I’m glad to know you have this on the todo list. Thanks!
Forum: Plugins
In reply to: [User Photo] User Photo throwing some debug errorsThank you nddery, that thread you linked to contained fixes for the errors I was seeing. It seems as if the fixes are not very difficult, but the plugin just hasn’t been updated in a while.
If one is using version 0.9.5.2 of user-photo, then patching it is not so difficult. Here is the reader’s digest version.
1. Change this line:
load_plugin_textdomain('user-photo', PLUGINDIR . '/user-photo/localization');…to this:
load_plugin_textdomain('user-photo', false, dirname( plugin_basename( __FILE__ ) ) . '/localization/');2. Change this line:
add_options_page('User Photo', 'User Photo', 8, __FILE__, 'userphoto_options_page');…to this:
add_options_page('User Photo', 'User Photo', 'add_users', __FILE__, 'userphoto_options_page');Patching the plugin will only work as long as you don’t update the plugin. More information and ideas can be found in the thread that nddery linked to above.
Forum: Plugins
In reply to: [User Photo] User Photo throwing some debug errorsI just wanted to pitch in that I get the exact same two errors.
- load_plugin_textdomain called with a deprecated argument
- has_cap called with a deprecated argument.
I am also using 3.5.1 with WP_DEBUG turned on.
I think it is something about the Constant Contact site. I am able to use fopen to read from other SSL-encrypted sites, while the Constant Contact site always fails with a long timeout.
But let’s not worry about this any longer. It must be something peculiar to my setup if no one else is experiencing it. Thanks for the time and attention.
No, the site is not using https at all. It is a rather plain WordPress site with a custom theme.