Skip Navigation

[Resolved] Deprecated: ctype_digit()

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

This topic contains 1 reply, has 2 voices.

Last updated by Christopher Amirian 6 months, 2 weeks ago.

Assisted by: Christopher Amirian.

Author
Posts
#2695803

I'm seeing this:
Deprecated: ctype_digit(): Argument of type int will be interpreted as string in the future in /home/u481531094/domains/localleader.us/public_html/wp-content/plugins/toolset-blocks/vendor/toolset/toolset-common/inc/autoloaded/field/group/factory.php on line 134

#2695980

Christopher Amirian
Supporter

Languages: English (English )

Hi there,

The message you see shows that if you update PHP to the future versions the functionality in question might not work. But it poses no errors on your current PHP version.
We do improvements to make Toolset support the newer versions of PHP but it is a work in progress.

For now, as your version doe snot have any problems regarding the functionality you can turn off that message in WordPress:

Would you please access your website files and edit the "wp-config.php" file on the root folder of your WordPress installation and add the code below into the file:

define( 'WP_DEBUG', false );
define( 'WP_DEBUG_LOG', false );
define( 'WP_DEBUG_DISPLAY', false );

Please add the code above the line below:

/* That's all, stop editing! Happy blogging. */

Thanks.