cpilko
Forum Replies Created
-
I’m going to consider it not working, because I’m caught in an upgrade loop.
According to the WordPress updater, 1.10-standard is a lower version than 1.10.2. My site continually has an upgrade message on it, either from WordPress or from your plugin.
I’m only seeing this issue on a Multisite install. My single-site WP installs are correctly detecting that there is no upgrade available.
Otherwise, I’m not seeing any issues.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Release of 1.10.1 LiteI’m seeing the same thing after a manual upgrade. The plugin version shows “You have version 1.10-standard installed. Update to 1.10.1.”
On another site where I’ve completed the process before, I also show 1.10-standard, with no upgrade nag.
I’ve opened a related ticket via the premium support site. Lots of problems with your chosen upgrade path, especially on multisite. Can’t you make this simpler?
+1 for Beauty Pirate’s recommendation.
I’ve got this installed as an available plugin on a multisite installation. I chose your plugin because it was the easiest for a client to configure. However, the two blogs I’ve got this running on already are getting several spams an hour from a single (US-based) bot.
I don’t want to have my clients need to enable a second capcha plugin for this to work. It would be best to have the capcha functionality built-in, or to use the Growmap Anti Spam approach listed above, as this seems to be an effective, low-overhead strategy.
Thanks for a great plugin!
I spent a few hours on Saturday cleaning up this problem on one of my multisite installations. I still haven’t tracked down the culprit.
My issue was the [WPDB_PREFIX]_[SITENO]_user_roles database entry in the [WPDB_PREFIX]_[SITENO]_options table was nearly empty. In the options table, there was a wp_[SITENO]_user_roles entry. I was able to copy this entry using phpMyAdmin into the correct field and it resolved my problems.
Forum: Plugins
In reply to: [Contact Me] Deactivated & Reactivated, now my contact page is "/contact-2"Well, that was just too easy.
I should have thought to check the trash.
Thanks for your help.
+1 for this. Rewriting all plugins to use the
Facebook_WP
class instead of the plainFacebook
class in the PHP SDK is a royal PITA.Forum: Plugins
In reply to: [Facebook] [Plugin: Facebook] Plugin using a different PHP SDK?Thanks Otto. That works.
Forum: Fixing WordPress
In reply to: New install shows www.ads-software.com HomepageGot it. I had an index.html file that was included with the install. That showed the wp.org homepage in it.
Found it. I was loading the cycle.lite plugin for a slideshow on my homepage. This was overriding the full version of the cycle plugin your plugin loads.
Forum: Plugins
In reply to: [WordChimp] [Plugin: WordChimp] Removing shortcodes from postThanks Dave. That was quick. I’ll be watching for the upgrade to show up on the SVN.
Forum: Plugins
In reply to: [WordChimp] [Plugin: WordChimp] Removing shortcodes from postThanks for listening. I’ve got the 1.6 update on my site, and I still see an issue with the plain text version:
On line 774 you aren’t resolving the shortcodes in the post_content:
$content[‘text’] .= strip_tags($post[‘post_content’]) . “\r\n\r\n—————-\r\n\r\n”;Compare this to line 755 for the HTML version.
Also take a look at line 758. You are resolving the shortcodes for the plaintext post_title. You aren’t doing this for the HTML post_title on line 730. (And you shouldn’t: WP doesn’t support shortcodes in the title.)
BTW, for the opens, if on line 192 you change $stats[‘opens’] to $stats[‘unique_opens’], you’ll get the same “opens” value that you get on the internal MailChimp campaign report screen.
Keep up the good work!
Forum: Plugins
In reply to: [WordChimp] [Plugin: WordChimp] Removing shortcodes from postThanks for this great plugin!
Rather than using the strip_shortcodes() filter, could you change this to do_shortcode()? I’ve edited my plugin file, and this way your plugin expands any shortcodes before sending it to MailChimp. (see line 424 in your plugin. BTW, you’re not stripping / rendering shortcodes in the text version on line 443).
Another minor gripe: On the campaign stats page, you’re showing the total opens for a campaign, rather than the unique user opens that MailChimp shows on its overview screen.
Thanks for working on this, and keep up the good work!
The fix to this is edit the secure_invite.php file and search for
secure_invite_user_invites_remaining()
there are three instances at lines 1713, 1769 and 2139.Replace these with:
secure_invite_user_invites_remaining($current_user->ID)
and the problems will be fixed.Oh, as a follow up, multi-site is disabled on my WP install.