please go to:
joomlaroot/administrator/components/com_breezingforms/libraries/crosstec/functions/helpers.php
around line 582-589 you will see this:
function bf_stripslashes_deep( $value ) {
if ( @get_magic_quotes_gpc() ) {
$value = is_array( $value ) ?
array_map( 'bf_stripslashes_deep', $value ) :
stripslashes( $value );
}
return $value;
}
Please comment the code from line 583 to 587
The whole code looks like:
function bf_stripslashes_deep( $value ) {
/* if ( @get_magic_quotes_gpc() ) {
$value = is_array( $value ) ?
array_map( 'bf_stripslashes_deep', $value ) :
stripslashes( $value );
}
*/
return $value;
}
This function is removed from php 8, and this is the reason why we comment it
Let me know if you need more help
P.S:if you have any other error, please go to System->Global configurtion->System->Debug System->set to Yes.
and in System->Global configurtion->Server->Error reporting->set to Maximum, and post here where error happens
Regards,
Tihana