본문 바로가기

Engineering/__00. SRS

(3)
[Testlink] Bad Request (Cookie) Error How to deal with Testlink Cookies Exceeding LimitsSymptomWhen you cannot login any more in Testlink because of the following error:Bad Request Your browser sent a request that this server could not understand. Size of a request header field exceeds server limit. Cookie it means that some of the cookies used by Testlink have grown too big for a normal HTTP header.WorkaroundIf you are using Apache..
[Testlink] 원인을 알 수 없는 File Upload Issue 로그도 남지 않고 아무런 에러 메시지 없지 파일 업로드가 동작하지 않는 문제가 있었다.1.9.12 버전인데 repository_max_filesize 가 MB 단위로 표시되어 있는데 설정값 2048 에서는 동작하지 않다가2048000000 으로 설정하니 동작한다. 아무래도 MB 단위 버그인 듯 싶다. // the maximum allowed file size for each repository entry, default 1MB.// Also check your PHP settings (default is usually 2MBs)$tlCfg->repository_max_filesize = 2048000000; //MB // TRUE -> when you upload a file you can give no..
[Testlink] 요구사항명세 등 입력창 (textarea/FCKeditor) size 조정하기 TestLink는 TEST Editor로 FCKeditor를 사용하고 있다.그런데 이 창은 아래 그림과 같이 Height가 낮아 많은 양을 입력하기에는 불편하다. 높이를 좀 더 크게 하고 싶을 경우 다음 파일 등을 수정하면 된다.경로 : testlink/third_party/fckeditor/fckeditorXXXXX.php (서너개 정도의 파일이 있다.) public function __construct( $instanceName ) { $this->InstanceName = $instanceName ; $this->BasePath = '/fckeditor/' ; $this->Width = '100%' ; $this->Height = '200' ; $this->ToolbarSet = 'Default' ..