1

I have been getting this error since I updated my woocommerce plugin:

Fatal error: Call to undefined function array_replace_recursive()

The errror is on line 586: enter image description here

I have found some solutions in this quote here: Fatal error: Call to undefined function array_replace_recursive() for CI Controller solution

But the problem is that i really do not know what to change in my code or where, in order fot the error to stop popping up. Any help would be greatly appreciated.

Community
  • 1
  • 1
  • Possible duplicate of [Reference - What does this error mean in PHP?](http://stackoverflow.com/questions/12769982/reference-what-does-this-error-mean-in-php) – miken32 Apr 19 '17 at 22:04

2 Answers2

2

Check your PHP version. array_replace_recursive only available in PHP >= 5.3.

Reference: array_replace_recursive

aagjalpankaj
  • 1,160
  • 1
  • 15
  • 25
0

since I updated my WooCommerce plugin

I suggest you check once by deactivating all plugins except WooCommerce and by activating default WordPress theme. It may be possible that any of your plugin is not compatible with the latest WooCommerce plugin.

Let me know if that doesn't work...

aagjalpankaj
  • 1,160
  • 1
  • 15
  • 25
WildProgrammers
  • 358
  • 1
  • 7