I'm trying to link an executed test case in TestLink to a requirement, but I'm getting this message
system config blocks requirement version link management for executed test case versions
Any idea what should be changed in the configuration file to allow requirement version link management for executed test case versions?
I find the answer to my question,
all needed is to change the following in config.inc.php
$tlCfg->testcase_cfg->reqLinkingDisabledAfterExec = True;
$tlCfg->testcase_cfg->freezeReqVersionAfterExec = True;
To:
$tlCfg->testcase_cfg->reqLinkingDisabledAfterExec = FALSE;
$tlCfg->testcase_cfg->freezeReqVersionAfterExec = FALSE;