WPIntell

Source evidence

PHP7 Incompatibility: Uncaught error undefined function split()

WP Minify Fix · support · 2016-04-25T14:15:00+00:00

complaintsentiment
highseverity
0.96relevance
2replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

4 / 32 rows with source links

12.5% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

28 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
codifex unresolved
When updating the plugin’s settings, I get this error message: Fatal error: Uncaught Error: Call to undefined function split() in /.../web/wp-content/plugins/wp-minify-fix/wp-minify.php:192 Stack trace: #0 /.../web/wp-content/plugins/wp-minify-fix/wp-minify.php(244): WPMinify->a_update_options() #1 /.../web/wp-includes/plugin.php(525): WPMinify->a_request_handler('') #2 ...web/wp-admin/admin-header.php(130): do_action('admin_head-sett...') #3 /.../web/wp-admin/admin.php(228): require_once('/......') #4 /.../web/wp-admin/options-general.php(10): require_once('/......') #5 {main} thrown in /.../web/wp-content/plugins/wp-minify-fix/wp-minify.php on line 192 Any ideas on how to fix this are welcome! Thank you in advance! https://wordpress.org/plugins/wp-minify-fix/ It seems that replacing all calls to split in wp_minify.php with calls to explode solve the problem (not yet tested heavily). I ran into that one too! Thank you for the solution, that way I did not have to search any further. It worked like a charm for me. Also, there were only 2 instances of the split() calls in the entire plugin.

Comments

2 shown
codifex 2016-04-25T14:21:00+00:00

It seems that replacing all calls to split in wp_minify.php with calls to explode solve the problem (not yet tested heavily).

Alexis Wilke 2017-03-13T03:57:00+00:00

I ran into that one too! Thank you for the solution, that way I did not have to search any further. It worked like a charm for me. Also, there were only 2 instances of the split() calls in the entire plugin.