Posts Tagged fatal errors

Testlink 1.9 problem with Charts – Error 500

Today I faced problem with Testlink 1.9 – while clicking on Test Results > Charts I’ve got :

PHP Fatal error: require_once() [function.require]: Failed opening required '/var/www/html/testlink/cfg/.cfg.php' (include_path='.:/usr/share/pear:.:/var/www/html/testlink/lib/functions/:/var/www/html/testlink/third_party/') in /var/www/html/testlink/lib/bugtracking/int_bugtracking.php on line 367, referer: http://xxxxxx/testlink/lib/results/resultsNavigator.php

If you have similar edit /var/www/html/testlink/lib/bugtracking/int_bugtracking.php

Line 363: $btsname = strtolower($bts_type);

Dirty, but works

Line

Tags: ,

Fontis Recaptcha Magento Extension error solved

If you have problem with Fontis Recaptcha Magento Extension like below, read.

Invalid method Fontis_Recaptcha_Block_Review_Form::escapeHtml(Array
(
 [0] => Rating
)
)

Problem is that some of the methods in template are using non existing method. This only happend on product review form page.

edit app/design/frontend/default/default/template/fontis/recaptcha/form.phtml

Replace:

$this->escapeHtml(

with

$this->htmlEscape(

That’s it

Tags: , ,