InforUMobile Automation 1.3.18

Does InforUMobile Automation work with WordPress 6.8.1 and PHP 8.1.12? A smoke test was performed on .

Summary

Errors
2PHP fatal errors
1PHP notices
3Database errors
No JavaScript exceptions
1Page failed to load
  • 1 500 Internal Server Error
No resource errors
Performance

Memory usage: 20.38 KiB
The average PHP memory usage increased by this amount after activating by the plugin.

Page speed impact: insignificant.
The plugin didn't make the site noticeably slower.

Environment
WordPress version6.8.1
PHP version8.1.12
MySQL version10.6.10
PHP memory limit512M
Plugin Info
Last updated
Active installs 30+
WordPress.org page https://wordpress.org/plugins/inforu-mobile-automation/
Badges

WordPress compatibility badge PHP compatibility badge

Get badge code

Pages 2

Plugins ‹ Test site — WordPress

Page screenshot: Plugins ‹ Test site — WordPress
URL /wp-admin/plugins.php?plugin_status=all&paged=1&s
Requested URL /wp-admin/plugins.php?action=activate&plugin=inforu-mobile-automation%2Fwoocommerce-inforu.php&plugin_status=all&paged=1&s&_wpnonce=082a26cf84
Aspect after-activation
HTTP status 200
Load time 0.252 s
Memory usage 3.6 MiB
JS errors None
Resource errors None

Test site – Just another WordPress site

Page screenshot: Test site – Just another WordPress site
URL /
Aspect front-page
HTTP status 500
Load time 0.057 s
Memory usage N/A
JS errors None
Resource errors None

Benchmark

URL Load time Memory usage
Inactive Active Change Inactive Active Change
/wp-admin/index.php0.345 s0.259 s-0.086 s3.51 MiB3.53 MiB+ 26.57 KiB
/wp-admin/edit.php0.180 s0.202 s+0.022 s3.57 MiB3.6 MiB+ 26.57 KiB
/wp-admin/post-new.php0.748 s0.655 s-0.093 s6.06 MiB6.09 MiB+ 30.31 KiB
/wp-admin/upload.php0.578 s0.519 s-0.059 s3.52 MiB3.53 MiB+ 9.16 KiB
/wp-admin/options-writing.php0.218 s0.194 s-0.024 s3.5 MiB3.51 MiB+ 13.16 KiB
/wp-admin/media-new.php0.261 s0.231 s-0.030 s3.49 MiB3.51 MiB+ 21.35 KiB
/wp-admin/edit-tags.php?taxonomy=category0.201 s0.179 s-0.022 s3.5 MiB3.54 MiB+ 32.02 KiB
/wp-admin/post-new.php?post_type=page0.602 s0.602 s+0.000 s6.05 MiB6.08 MiB+ 25.84 KiB
/wp-admin/options-discussion.php0.444 s0.236 s-0.208 s3.5 MiB3.51 MiB+ 9.66 KiB
/wp-admin/edit-comments.php0.229 s0.398 s+0.169 s3.52 MiB3.53 MiB+ 9.16 KiB
Average 0.381 s0.347 s-0.033 s4.02 MiB4.04 MiB+ 20.38 KiB

Code Statistics

Note: Third-party libraries and minified JS/CSS files are excluded from these statistics where possible, so the numbers you see here may be lower than those reported by other tools.

PHP
Language % Lines of code Comment lines Files
PHP96.4%2,03258333
JavaScript1.9%3902
PO File1.4%29121
CSS0.3%701
Total 2,107 595 37

PHP Code Analysis | More results »

Lines of code 2,004
Total complexity 346
Median class complexity 9.5
Median method complexity 2.0
Most complex class WC_Inforu_Newsletter\Observer
Most complex function WC_Inforu\Event\CartAbandoned::getAbandonedCart()
Classes 28
Methods 154
Functions 1

Additions

Things that the plugin adds to the site. This section is not intended to be comprehensive. The test tool only looks for a few specific types of added content.

Database Tables 1

Options wp_options 3

PHP Error Log 56 lines

[17-Jun-2025 11:57:11 UTC] PHP Notice:  Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>inforu-mobile-automation</code> domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the <code>init</code> action or later. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in /wp-includes/functions.php on line 6121
[17-Jun-2025 11:57:11 UTC] WordPress database error Table 'wordpress.wp_woocommerce_sessions' doesn't exist for query ALTER TABLE `wp_woocommerce_sessions` ADD `updated_at` TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP; made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Inforu->check_update, WC_Inforu::install, WC_Inforu\Setup->run, WC_Inforu\Setup->addSessionTimestamp
[17-Jun-2025 11:57:11 UTC] WordPress database error Can't create table `wordpress`.`wp_inforu_abandone_cart` (errno: 150 "Foreign key constraint is incorrectly formed") for query CREATE TABLE wp_inforu_abandone_cart (
            id mediumint(9) NOT NULL AUTO_INCREMENT,
            session_id bigint(20) unsigned NOT NULL,
            cart_data TEXT DEFAULT NULL,
        	create_at DATETIME DEFAULT CURRENT_TIMESTAMP,
        	token VARCHAR(64) DEFAULT NULL,
            PRIMARY KEY (id),
            FOREIGN KEY (session_id) REFERENCES wp_woocommerce_sessions(session_id) ON DELETE CASCADE
            ); made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Inforu->check_update, WC_Inforu::install
[17-Jun-2025 11:57:11 UTC] WordPress database error Table 'wordpress.wp_inforu_abandone_cart' doesn't exist for query INSERT INTO wp_inforu_abandone_cart (session_id)
                SELECT ws.session_id
                FROM wp_woocommerce_sessions ws
                LEFT JOIN wp_inforu_abandone_cart iac ON ws.session_id = iac.session_id
                WHERE iac.session_id IS NULL AND ws.updated_at < NOW() made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Inforu->check_update, WC_Inforu::install
[17-Jun-2025 11:57:12 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function is_checkout() in /wp-content/plugins/inforu-mobile-automation/woocommerce-inforu.php:47
Stack trace:
#0 /wp-includes/class-wp-hook.php(324): WC_Inforu->enqueue_cart_events()
#1 /wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
#2 /wp-includes/plugin.php(517): WP_Hook->do_action()
#3 /wp-includes/script-loader.php(2299): do_action()
#4 /wp-includes/class-wp-hook.php(324): wp_enqueue_scripts()
#5 /wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
#6 /wp-includes/plugin.php(517): WP_Hook->do_action()
#7 /wp-includes/general-template.php(3192): do_action()
#8 /wp-content/themes/twentyseventeen/header.php(22): wp_head()
#9 /wp-includes/template.php(810): require_once('...')
#10 /wp-includes/template.php(745): load_template()
#11 /wp-includes/general-template.php(48): locate_template()
#12 /wp-content/themes/twentyseventeen/index.php(18): get_header()
#13 /wp-includes/template-loader.php(106): include('...')
#14 /wp-blog-header.php(19): require_once('...')
#15 /index.php(17): require('...')
#16 {main}
  thrown in /wp-content/plugins/inforu-mobile-automation/woocommerce-inforu.php on line 47
[17-Jun-2025 11:57:19 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function is_checkout() in /wp-content/plugins/inforu-mobile-automation/woocommerce-inforu.php:47
Stack trace:
#0 /wp-includes/class-wp-hook.php(324): WC_Inforu->enqueue_cart_events()
#1 /wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
#2 /wp-includes/plugin.php(517): WP_Hook->do_action()
#3 /wp-includes/script-loader.php(2299): do_action()
#4 /wp-includes/class-wp-hook.php(324): wp_enqueue_scripts()
#5 /wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
#6 /wp-includes/plugin.php(517): WP_Hook->do_action()
#7 /wp-includes/general-template.php(3192): do_action()
#8 /wp-content/themes/twentyseventeen/header.php(22): wp_head()
#9 /wp-includes/template.php(810): require_once('...')
#10 /wp-includes/template.php(745): load_template()
#11 /wp-includes/general-template.php(48): locate_template()
#12 /wp-content/themes/twentyseventeen/index.php(18): get_header()
#13 /wp-includes/template-loader.php(106): include('...')
#14 /wp-blog-header.php(19): require_once('...')
#15 /index.php(17): require('...')
#16 {main}
  thrown in /wp-content/plugins/inforu-mobile-automation/woocommerce-inforu.php on line 47
See also: All tests for this plugin