RichTWebGuy
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Contact form 7 DB] Warning: Undefined variable $nonceSame here
Warning: Undefined variable $nonce in .../wp-content/plugins/advanced-cf7-db/admin/class-advanced-cf7-db-admin.php on line 340
Call Stack
# Time Memory Function Location
1 0.0005 464888 {main}( ) .../admin.php:0
2 0.3812 94036280 do_action( $hook_name = 'toplevel_page_contact-form-listing' ) .../admin.php:259
3 0.3812 94036656 WP_Hook->do_action( $args = [0 => ''] ) .../plugin.php:517
4 0.3812 94036656 WP_Hook->apply_filters( $value = '', $args = [0 => ''] ) .../class-wp-hook.php:348
5 0.3812 94037408 Advanced_Cf7_Db_Admin->vsz_contact_form_callback( '' ) .../class-wp-hook.php:324
6 0.3816 94112552 require_once( '.../wp-content/plugins/advanced-cf7-db/admin/partials/contact_form_listing.php ) .../class-advanced-cf7-db-admin.php:186
7 0.3902 95467136 do_action( $hook_name = 'vsz_cf7_after_datesection_btn', ...$arg = variadic(211) ) .../contact_form_listing.php:309
8 0.3902 95467512 WP_Hook->do_action( $args = [0 => 211] ) .../plugin.php:517
9 0.3902 95467512 WP_Hook->apply_filters( $value = '', $args = [0 => 211] ) .../class-wp-hook.php:348
10 0.3902 95468264 Advanced_Cf7_Db_Admin->vsz_cf7_after_datesection_btn_callback( $fid = 211 ) .../class-wp-hook.php:324Forum: Plugins
In reply to: [WP Super Cache] Warning: Constant DONOTCACHEPAGE already definedThank you – that is a huge help !
Forum: Plugins
In reply to: [WP Super Cache] Warning: Constant DONOTCACHEPAGE already definedSorry to be a pest, but has this fix ever been released? I manage a large number of sites and its getting annoying to have to fix each one – knowing that the issue should be resolved.
Forum: Plugins
In reply to: [WP Super Cache] Warning: Constant DONOTCACHEPAGE already definedThanks for quick response !
Forum: Plugins
In reply to: [Yoast SEO] FAQ block can run lines togetherI just hit ENTER. If this might have an effect, I run Chrome on a Linux desktop.
Forum: Plugins
In reply to: [Yoast SEO] FAQ block can run lines togetherYou stated:
The issue is from where you copied and pasted the text from.
I just made a new FAQ block and for the answer, typed in:
this is line 1 this is line 2 this is line 3
and it generated
{"@type":"Answer","text":"this is line 1this is line 2this is line 3","inLanguage":"en-US"}
It combined the three lines with no space. That does not seem correct to me.
Forum: Plugins
In reply to: [Yoast SEO] FAQ block can run lines togetheron the page you see this
? Liquids, Solvents, Freon, Chemicals Please Contact Us If you need ...
in the schema
<script type="application/ld+json" class="yoast-schema-graph">
you see this (chemicals and please run together)
? Liquids, Solvents, Freon, ChemicalsPlease Contact Us
Forum: Plugins
In reply to: [Yoast SEO] FAQ block can run lines togetherAre you testing this on php 8.1 (or greater) ?
Forum: Plugins
In reply to: [WP Super Cache] PHP Deprecated: str_replace(): Passing nullI can’t speak for @sheriffdonnerknall, but I’m running on a development server and want “display errors” On.
My question is: are you running with “display errors” when doing your testing?
Forum: Plugins
In reply to: [WP Super Cache] PHP Deprecated: str_replace(): Passing nullI agree with @sheriffdonnerknall, problem is with str_replace. The $URL is null, because $wp_cache_request_uri is null.
if ( ! $url ) { $url = $wp_cache_request_uri; }
Will you be able to release a fix for this soon?
One thing I realized since the original post is: It may only happen on bulk delete. Need to delete at least two submissions.
- This reply was modified 1 year, 5 months ago by RichTWebGuy.
Excellent. Thanks for your persistence.
No attachments. We use text, textarea, radio or checkbox. And you are trying with this setup?
define ('WP_DEBUG', true); define ('WP_DEBUG_DISPLAY', true);
error_reporting(E_ALL);
ini_set ('display_errors', '1');
Sorry – computer troubles last few days …
- php 8.0.25
- html forms 1.3.26
- wordpress 6.1
if you do this
error_reporting (0); ini_set ('display_errors', '0');
you will not see any error messages and the submission is deleted.
the errors occur in a development environment, where I’m running with error reporting ON.
- This reply was modified 1 year, 7 months ago by RichTWebGuy.