Search found 2 matches

by michiel
Wed Jul 27, 2011 10:17 am
Forum: Installation and configuration
Topic: Proxying TestLink
Replies: 6
Views: 9321

Re: Proxying TestLink

Hi, The patch mentioned above works but for https to be proxied correctly, you need to add another line. The patch of lib/functions/configCheck.php would look like this (mind the added line with 'protocol'): @@ -63,6 +63,12 @@ $t_path = ''; } + if ( isset( $_SERVER['HTTP_X_FORWARDED_HOST'] ) ) { + $...
by michiel
Tue Jul 05, 2011 9:17 am
Forum: Installation and configuration
Topic: [SOLVED] Jira Soap
Replies: 2
Views: 5005

Re: Jira Soap

Hi, BUG_TRACK_ENTER_BUG_HREF should read: secure/CreateIssueDetails!init.jspa?pid=10000&issuetype=1 where: - pid is your Project ID (in Jira, look it up in the database) - issuetype is something valid (by default, issuetype 1 is bug, what is probably OK) ... you can optionally add any other key/...