| “Fatal error: Cannot redeclare quoted_printable_encode() in /public_html/includes/vcard.class.php on line..."
The cause of this problem is that the function quoted_printable_encode is now included in PHP (versions equal or above 5.3.0) so it was being redefined in the code. Solution: Comment the quoted_printable_encode function Example:
/**
function quoted_printable_encode($input, $line_max = 76) { --------------------- code
----------------- code
-------------- code
}
*/
|
Powered by WHMCompleteSolution