This happens every few minutes or even multiple times per minute. Any suggestions?
]]>https://i.imgur.com/aGKkvU9.png
Best regards!
[22-Jun-2023 19:23:16 UTC] PHP Deprecated: Return type of WPMailSMTP\Vendor\League\OAuth2\Client\Token\AccessTokenInterface::jsonSerialize() should either be compatible with JsonSerializable::jsonSerialize(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/wp-content/plugins/wp-mail-smtp-pro/vendor_prefixed/league/oauth2-client/src/Token/AccessTokenInterface.php on line 66
Thanks,
Glenn
]]>WP 5.9, plugin version 7.3.3
]]>WP 5.9, Ink Plugin 4.0.6, PHP 7.4
Info in debug.log
]]>for ($i = 0; !empty($jsontype->response->result->doc[$i]); $i++) {
for ($d = 0; !empty($json->grouped->docType_s->groups[$d]); $d++) {
Cordialement,
]]>Notice: Undefined index: recaptcha_version in /home/lilinvic/public_html/wp-content/plugins/speakout/includes/class.settings.php on line 241
Notice: Undefined index: recaptcha_status in /home/lilinvic/public_html/wp-content/plugins/speakout/includes/class.settings.php on line 242
Notice: Undefined index: sigtab_email in /home/lilinvic/public_html/wp-content/plugins/speakout/includes/class.settings.php on line 255
Notice: Undefined index: sigtab_petition_info in /home/lilinvic/public_html/wp-content/plugins/speakout/includes/class.settings.php on line 256
Notice: Undefined index: sigtab_street_address in /home/lilinvic/public_html/wp-content/plugins/speakout/includes/class.settings.php on line 257
Notice: Undefined index: sigtab_city in /home/lilinvic/public_html/wp-content/plugins/speakout/includes/class.settings.php on line 258
Notice: Undefined index: sigtab_state in /home/lilinvic/public_html/wp-content/plugins/speakout/includes/class.settings.php on line 259
Notice: Undefined index: sigtab_postalcode in /home/lilinvic/public_html/wp-content/plugins/speakout/includes/class.settings.php on line 260
Notice: Undefined index: sigtab_country in /home/lilinvic/public_html/wp-content/plugins/speakout/includes/class.settings.php on line 261
Notice: Undefined index: sigtab_custom_field1 in /home/lilinvic/public_html/wp-content/plugins/speakout/includes/class.settings.php on line 262
Notice: Undefined index: sigtab_confirmed_status in /home/lilinvic/public_html/wp-content/plugins/speakout/includes/class.settings.php on line 263
Notice: Undefined index: sigtab_optin in /home/lilinvic/public_html/wp-content/plugins/speakout/includes/class.settings.php on line 264
Notice: Undefined index: sigtab_date_signed in /home/lilinvic/public_html/wp-content/plugins/speakout/includes/class.settings.php on line 265
Notice: Undefined index: sigtab_IP_address in /home/lilinvic/public_html/wp-content/plugins/speakout/includes/class.settings.php on line 266
Notice: Undefined index: sigtab_sig_country in /home/lilinvic/public_html/wp-content/plugins/speakout/includes/class.settings.php on line 118
]]>( ! ) Notice: Undefined index: itunes_type in /Users/jer/Sites/dev.gv/wp-content/plugins/powerpress/views/episode-box.php on line 59
Here’s the offending code, which makes it clear how this error arises:
function powerpress_meta_box($object, $box)
{
[...]
$FeedSettings = get_option('powerpress_feed');
$canSetSeason = $FeedSettings['itunes_type'] == 'serial' ? true : false;
I hadn’t upgraded in awhile, so probably my settings are out of date, but clearly a PHP notice isn’t what you want.
Something to ensure the ['itunes_type']
array item is always there, or else just something to account for it’s absence would fix this.
This is the code that I’m using to solve this while I wait for the next update:
$canSetSeason = false;
if (isset($FeedSettings['itunes_type']) AND ($FeedSettings['itunes_type'] == 'serial')) {
$canSetSeason = true;
}
I was able to silence the error by updating the setting in: POWERPRESS > FEEDS > APPLE SETTINGS FEED TYPE.
Clearly, that’s not a mandatory setting, so fixing this for people “running on default” will be an easy improvement to the plugin.
Thanks for fixing it in the next version, really appreciate this plugin and all the little bugs like this that you’ve fixed for me in the past.
]]>Can you take a look at these notices thrown in PHP 7.4, WP 5.6:
PHP Notice: Undefined property: stdClass::$lastLine in /wp-content/plugins/validated/views/report.php on line 19
PHP Notice: Undefined property: stdClass::$extract in /wp-content/plugins/validated/views/report.php on line 22
]]>