Jump to content
TNG Community

Proper Process to Report Bugs?


Bob Carver

Recommended Posts

Bob Carver

Though I've had TNG for years, I'm fairly new to TNG Wiki & this forum. Simple question: what is the appropriate means by which to report TNG bugs. I'm versed in PHP and SQL, so I'm generally able to examine code before throwing a "bug found" flag. Though I have often had email conversations with Darrin, I don't want to presume I should contact him directly if, in fact, there is an agreed upon process. Thanks!

Link to comment
Share on other sites

I'm not aware of any particular process, but others may correct me.

I do know Darrin is open to email queries, as you have said.

I would suggest a sensible process would be to post any suspected bugs here (or to the email list, which I don't know anything about, sorry) and see if anyone else has the same problem or can reproduce the bug. If it turns out there is an actual bug, then contact Darrin directly. However, this is just common-sense advice rather than any defined process, so feel free to ignore it 😁

Link to comment
Share on other sites

Rob Severijns
7 hours ago, ADC said:

I would suggest a sensible process would be ......

I agree

Link to comment
Share on other sites

theKiwi

If you suspect you've found a bug you should report it to Darrin directly by eMail.

Do NOT post it here - Darrin doesn't monitor this forum at all.

Roger

Link to comment
Share on other sites

Bob Carver

Thanks y'all. I have in the past sent such to Darrin directly. Just "checkin 'in" in case another process has been in play

Link to comment
Share on other sites

tngrlkrz
7 hours ago, theKiwi said:

Do NOT post it here - Darrin doesn't monitor this forum at all.

I agree ultimately Darrin be the direct contact, but I also see nothing wrong with 'checking in' on this forum to see if others experience the bug or make other users aware of it.   That way no surprise to forum readers should they encounter the bug.  They know eventually Darrin will deal with it.

Ron

Link to comment
Share on other sites

Bob Carver

I have no problem posting bug info - checkin' in - but would "Questions and Answers" serve as appropriate landing pad? 

 

Here's what I sent Darrin:

Ref: General Settings -> Miscellaneous

Save & Stay option would seem not to refresh - at the very least - the two "What's New" settings.

  1. Start with Days = 0 and Limit = 20
  2. config.php properly shows
    $change_cutoff = "0";
    $change_limit = "20";

--------------------

  1. Change Days to 10 and Limit to 5
  2. Click Save + Exit
  3. config.php properly includes
    $change_cutoff = "10";
    $change_limit = "5";
  4. Return to General Settings > Miscellaneous
  5. Properly, Days = 10 and Limit = 5

--------------------

  1. Change Days to 9 and change Limit to 8
  2. Click Save + Stay
  3. Reopen Miscellaneous…
  4. Days still shows 10 and Limit still shows 5
  5. Yet config.php has
    $change_cutoff = "9";
    $change_limit = "8";

--------------------

  1. Click Cancel and return to Miscellaneous…
  2. Properly, Days now shows 9 and Limit shows 8

--------------------

  1. Change Days to -5 and Limit to A (obviously no editing for sensible values, but…)
  2. Click Save + Exit
  3. config.php properly has
    $change_cutoff = "-5";
    $change_limit = "A";
  4. Return to Miscellaneous
  5. Properly, Days = -5 and Limit = A

--------------------

  1. Change Days to 99 and Limit = -88
  2. Click Save + Stay
  3. config.php properly has
    $change_cutoff = "99";
    $change_limit = "-88";
  4. Return to Miscellaneous
  5. Improperly displayed: Days = -5 and Limit = A

--------------------

  1. No changes made
  2. Click Save & Stay
  3. config.php has
    $change_cutoff = "-5";
    $change_limit = "A";
  4. Improperly, but not unexpected by this time, Days = 99 and Limit = -88

--------------------

  1. Changed Days = ?? and Limit = !!
  2. Clicked Save + Exit
  3. config.php, as expected, has
    $change_cutoff = "??";
    $change_limit = "!!";
  4. Return to Miscellaneous
  5. As expected, Days = ?? and Limit = !!

Conclusion: Save + Stay has a flaw (though perhaps only in regard to Days ($change_cutoff) and Limit ($change_limit)

Link to comment
Share on other sites

Bob Carver

Epilogue: Symptoms were real, but the problem was resolved after fiddling around with the underlying PHP release. 🤪

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...