Hi,
We are on WordPress 4.9.8. I’m not sure if @vimalfzr is having the same issue we are, but upon updating the plugin we also had a 500 error take down our site. Inspecting the debug.log file indicated that usage of the PHP function ‘boolval’ was the culprit. This function has been available since PHP >= 5.5 and our site is still on PHP 5.4.
A workaround would be to change the check in the file ‘cf7-material-design.php’ on line 131:
if (function_exists('boolval')) {
$upgraded = boolval( get_option( 'cf7md_options[upgraded_from_v1]' ) );
} else {
$upgraded = (bool)( get_option( 'cf7md_options[upgraded_from_v1]' ) );
}
The above is just an example. A check as you see fit would be sufficient. Thanks for your time.
-
This reply was modified 6 years, 6 months ago by
dakao.