contemplate
Forum Replies Created
-
Forum: Plugins
In reply to: [Constant Contact Forms] Fatal error againIs there any possibility to add a check first if the Guzzle library exists elsewhere OR if the backWPup plugin is installed to not load your library?
We had to disable the backwpup plugin to stop our site from crashing.
Forum: Plugins
In reply to: [Constant Contact Forms] Fatal error againOk actually it looks like the issue is your plugin conflicts with the new version of BackWPup
Forum: Plugins
In reply to: [Constant Contact Forms] Fatal error againWe are having the same issue and it takes down our site when people try to register for an account:
[10-Jul-2019 15:31:38 UTC] PHP Fatal error: Uncaught TypeError: Argument 3 passed to GuzzleHttp\Client::request() must be of the type array, string given, called in /home/leoadventures/public_html/wp-content/plugins/backwpup/vendor/guzzlehttp/guzzle/src/Client.php on line 89 and defined in /home/leoadventures/public_html/wp-content/plugins/backwpup/vendor/guzzlehttp/guzzle/src/Client.php:128
Stack trace:
#0 /home/leoadventures/public_html/wp-content/plugins/backwpup/vendor/guzzlehttp/guzzle/src/Client.php(89): GuzzleHttp\Client->request(‘createRequest’, ‘GET’, ‘https://api.con…’)
#1 /home/leoadventures/public_html/wp-content/plugins/constant-contact-forms/vendor/constantcontact/constantcontact/src/Ctct/Services/BaseService.php(65): GuzzleHttp\Client->__call(‘createRequest’, Array)
#2 /home/leoadventures/public_html/wp-content/plugins/constant-contact-forms/vendor/constantcontact/constantcontact/src/Ctct/Services/ContactService.php(36): Ctct\Services\BaseService->createBaseRequest(‘c8fdb5dd-634f-4…’, ‘GET’, ‘https://api.con…’)
#3 /home/leoadventur in /home/leoadventures/public_html/wp-content/plugins/backwpup/vendor/guzzlehttp/guzzle/src/Client.php on line 128Forum: Plugins
In reply to: [Wise Chat] Slow performanceI understand. It would be nice to have an option, however, so that the chat is only updated on page load or on comment submission similar to comments so that we could use multiple on a page without the slow performance.
Forum: Plugins
In reply to: [Wise Chat] Comment Not posted if using Emoji on phoneJust a follow up. I tested the same comment with an emoji on your demo site and had the same problem of it disappearing: https://kaine.pl/projects/wp-plugins/wise-chat/wise-chat-demo/example-2/
Forum: Plugins
In reply to: [Email Log] PHP compatibilityHi @sudar here is the fix. It was causing a fatal error with the WPAffiliate plugin when trying to approve affiliates:
file:
plugins/email-log/include/Core/EmailLogger.phpline 52 change this:
'attachments' => ( count( $mail_info['attachments'] ) > 0 ) ? 'true' : 'false',to this:
'attachments' => ( isset( $mail_info['attachments'] ) ) ? 'true' : 'false',Forum: Plugins
In reply to: [BuddyPress Group Email Subscription] Using an SMTP pluginok thanks for the info @boonebgorges. It does appear WP Mail SMPT requires wp_mail()
I got this working with the help of this thread:
https://buddypress.org/support/topic/using-wp_mail-and-emails/in my bp-custom.php I have:
// SEND BP EMAILS THROUGH SMTP add_filter('bp_email_use_wp_mail', '__return_true'); add_filter( 'wp_mail_content_type', function( $content_type ) { $content_type = 'text/html'; return $content_type; } );and then in I had to edit the bp_send_email function in file /buddypress/bp-core/bp-core-functions.php and change this line:
$email->get( 'content_plaintext', 'replace-tokens' )to this:
$email->get_template( 'add-content' )Now Buddypress emails are authenticating through SMTP
Forum: Plugins
In reply to: [FormLift for Infusionsoft Web Forms] Form builder wonky for last two daysSent
Forum: Plugins
In reply to: [FormLift for Infusionsoft Web Forms] Form builder wonky for last two daysOne issue is the form will load like this:
https://www.dropbox.com/s/7s12hwjqql16qh3/Screen%20Shot%202019-03-26%20at%2012.51.26%20PM.png?dl=0And then two seconds later change labels on some fields like this:
https://www.dropbox.com/s/ay8pz7stnom62gp/Screen%20Shot%202019-03-26%20at%2012.51.34%20PM.png?dl=0And other times flashes to this:
https://www.dropbox.com/s/89kr06fkelvi3e8/Screen%20Shot%202019-03-26%20at%2012.54.03%20PM.png?dl=0Forum: Plugins
In reply to: [BuddyPress Group Email Subscription] 3.9.0 update didn’t create new tablesok @boonebgorges I did the sanity check.
First query produce a count of 101
Second quesry produced a count of 70Shouldn’t the first query produce a smaller count?
Also the qeuried items table appears to be full with 3592 records
and the subscriptions table is now at 13177
it still shows I’m stuck on step 2I’m not seeing any PHP errors related to this after the tables were created
Forum: Plugins
In reply to: [BuddyPress Group Email Subscription] 3.9.0 update didn’t create new tablesHey @petervandoorn I had to press the manual link a few times before it would create the tables. But then got stuck on step 2
Forum: Plugins
In reply to: [BuddyPress Group Email Subscription] 3.9.0 update didn’t create new tablesThanks @boonebgorges this got me a little further but I’m stuck on the migrate subscriptions step:
https://www.dropbox.com/s/ov2pc8wdchibi3v/Screen%20Shot%202019-03-21%20at%2012.58.24%20PM.png?dl=0I see 13165 records have been created in the database but it hasn’t progressed past this in some time now:
https://www.dropbox.com/s/syuyjx3bq914jqw/Screen%20Shot%202019-03-21%20at%2012.58.13%20PM.png?dl=0I fear I can’t revert back now… help?
Forum: Plugins
In reply to: [BuddyPress Group Email Subscription] 3.9.0 update didn’t create new tablesSame as @petervandoorn I’m not seeing a “Migration Status” section on the settings panel and nothing runs when we update it. I’ve tried on multiple client sites and all have the same results of no migration running. We don’t use WP-CLI either.
We do have WP Rocket running which decreases the heartbeat rate as well as Wordfence running and we use real cron jobs. Not sure if any of those would play a part here.
Forum: Plugins
In reply to: [BuddyPress Group Email Subscription] 3.9.0 update didn’t create new tablesI tried editing the Updater class to this to manually trigger the update script but that didn’t work so rolling back the plugin now:
public function __construct( $skip_admin_check = true ) {
Nevermind I found it here:
https://gist.github.com/hlashbrooke/51b5621b90010ccb8e15