Para solucionar el problema que existe cuando Opencart intenta mostrar el Captcha (en la versi贸n 1.5.1.3). Hay que sustituir la funci贸n getCode que existe en la librer铆a captcha.php de tu instalaci贸n de Opencart (system/library/captcha.php)
En este fichero buscamos la funci贸n getCode que est谩 en la l铆nea 9 y la sustituimos por esta:
1 2 3 4 5 6 | function getCode(){ $out = ob_get_contents(); $out = str_replace(array("\n", "\r", "\t", " "), "", $this->code); ob_end_clean(); return $out; } |