User jude allred - FogBugz Knowledge Exchangemost recent 30 from http://fogbugz.stackexchange.com2012-02-09T05:25:21Zhttp://fogbugz.stackexchange.com/feeds/user/176http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://fogbugz.stackexchange.com/questions/9874/release-notes-fogbugz-8-7-58Release Notes: FogBugz 8.7.58Jude Allred2012-01-26T21:32:54Z2012-01-27T22:46:43Z
<p>FogBugz 8.7.58 is now available for Windows and *nix. What's in it?</p>
http://fogbugz.stackexchange.com/questions/9874/release-notes-fogbugz-8-7-58/9875#9875Answer by Jude Allred for Release Notes: FogBugz 8.7.58Jude Allred2012-01-26T21:46:25Z2012-01-27T22:46:43Z<p>This is a bugfix-only release.</p>
<p>The FogBugz 8.7.57 release contained a performance regression which impacts some licensed FogBugz accounts. The symptom is that some FogBugz requests, seemingly at random but at a frequency of at least once a minute, will take an increased amount of time.</p>
<p>This time is spent building a cache which is meant to reduce the response time of all FogBugz pages.</p>
<p>In many environments the time required to build this cache is negligible, however some environments experience a delay of 5 to 10 seconds, and we've had some reports of delays as high as 20 seconds.</p>
<p>We recommend using FogBugz 8.7.58 in place of 8.7.57.</p>
<p><strong>Update 1/27/2012:</strong> 8.7.58 is currently only available for FogBugz-only licensed installations. A new FogBugz + Kiln installer bundle will be released in the coming weeks which will include FogBugz 8.7.58. Our support team has a patch which can be easily applied to 8.7.57 installations which will fix this bug -- If you're running 8.7.57 but still waiting on the bundled installer, <a href="http://www.fogcreek.com/contact.html" rel="nofollow">contact our support team</a> and we can patch your installation.</p>
http://fogbugz.stackexchange.com/questions/9246/what-web-browsers-does-fogbugz-supportWhat web browsers does FogBugz support?Jude Allred2011-09-21T14:18:55Z2011-12-30T19:05:27Z
<p>Is there a canonical list of browsers which are supported by FogBugz? The <a href="http://fogbugz.stackexchange.com/questions/6793/" rel="nofollow">System Requirements</a> page gives a short list, but I'd like some more details.</p>
http://fogbugz.stackexchange.com/questions/9246/what-web-browsers-does-fogbugz-support/9248#9248Answer by Jude Allred for What web browsers does FogBugz support?Jude Allred2011-09-21T14:19:18Z2011-12-30T19:05:27Z<p><strong>FogBugz currently supports the following browsers:</strong></p>
<ul>
<li>IE: 8, 9</li>
<li>Chrome </li>
<li>Firefox </li>
<li>Safari: 5</li>
</ul>
<p>We try to make FogBugz's functionality degrade gracefully in prior versions of all these browsers. You may not get new functionality as the product moves forward, but we try to avoid breaking old versions.</p>
<p><strong>Unsupported browsers:</strong></p>
<p>These browsers are not tested against or supported by the FogBugz team. They may happen to function, but have known display and functionality issues.</p>
<ul>
<li>IE7</li>
<li>IE6 and earlier</li>
<li>Pre-Release channels* of Firefox and Chrome</li>
<li>Lynx</li>
</ul>
<p>* <em>Only the default channels of Firefox and Chrome are supported. E.g., if you've altered Chrome to use the Beta, Dev, or Canary channels, or Firefox to use Beta or Aurora channels, you can expect intermittent breakage as those browsers introduce new features or bugs. We'll fully support those changes once they've made it to their respective release channels.</em></p>
http://fogbugz.stackexchange.com/questions/9632/why-is-a-search-3x-faster-than-an-saved-search-which-is-2x-faster-than-an-equival/9698#9698Answer by Jude Allred for Why is a search 3x faster than an saved search which is 2x faster than an equivalent filter?Jude Allred2011-12-14T18:45:02Z2011-12-21T18:20:03Z<p><strong>Short answer:</strong></p>
<p>Full-Text search + sorting has degenerate cases, and they become more likely when you're combining search criterias with filters (/saving searches) instead of using the search box directly.</p>
<p>It sounds like you're generating the title field programmatically (hence the "title:SpecialUpload" criteria) -- You could programmatically add a tag to the cases you wish to filter for (tag:SpecialUpload) and then filter based on the tag (a non-full-text operation) rather than the title (a full-text operation) in order to get much faster results.</p>
<p><strong>Long answer:</strong></p>
<p>The behavior you're seeing is most likely caused by combinations of the following factors:</p>
<ul>
<li>Full-text searches (such as title:) are much slower than other search/filter operations</li>
<li>Full-text searches combined with a sort order can lead to a degenerate case, but even when they don't will be strictly slower than non-ordered full-text search operations</li>
<li>Filters tend to have sort orders, whereas searches you type directly into the search bar are only sorted if you specify a sort order (...otherwise they sort by a relevance metric)</li>
</ul>
<p>There are two types of operations which FogBugz will perform when you run a filter or a search:</p>
<ul>
<li>Result filtering based on values in the database</li>
<li>Full-Text search using Lucene</li>
</ul>
<p>Filters, filters with a search component, and searches entered into the search field all make their way to the same "query parser". This parser extracts the full-text components from the query, runs them against Lucene, and then combines the Lucene results with the database column filtering requested by the query.</p>
<p>For example, searching for <code>Jude status:active</code> will retrieve full-text matches of my name, from Lucene, and then join that result set with the items from the database which match the criteria of status:active.</p>
<p>I'm leaving out a few steps here (like permissions checks), but that's the gist of it.</p>
<p>In your case,</p>
<p><code>project:Beta openedby:beta title:SpecialUpload</code></p>
<p>The Project and OpenedBy axes are filtering using the database, while the title axis is filtering against lucene. Because we incur the cost of interacting with the full-text search engine, this query is strictly slower than</p>
<p><code>project:Beta openedby:beta</code></p>
<p>which doesn't interact with Lucene at all.</p>
<p>Searches embedded in filters are slightly more advanced: the query parser combines the filter logic with the search logic in order to put together it's best effort approximation of the desired query. Since the search component can be arbitrary (and even contradict the filter component), it's possible to create some interesting results here. Regardless, it tends to be the case that queries created by combining filters with searches (rather than performing the 'equivalent' search using the search box) actualy have some additional implicit filtering criteria (such as sort order.)</p>
<p>e.g.,
a filter with a specific sort order (almost all filters have this) plus a full-text search component is going to be strictly slower than that same filter without the sort, which in turn is going to be strictly slower than that same filter without the full-text search.</p>
<p>I would guess that the multi-tiered performance profiles you're seeing are:</p>
<ol>
<li>Non-full-text filters/search (regardless of sort order)</li>
<li>Full-text search (no sort)</li>
<li>Filter with full-text search (same as #2, but with additional filtering overhead)</li>
<li>Filter with sort ordering and full-text search</li>
</ol>
http://fogbugz.stackexchange.com/questions/9524/how-do-i-disable-internet-explorers-compatibility-view-for-fogbugzHow do I disable Internet Explorer's Compatibility View for FogBugz?Jude Allred2011-11-11T20:40:05Z2011-11-11T21:06:28Z
<p>FogBugz is telling me that "Internet Explorer is using Compatibility View to display this page. Please disable Compatibility View to restore full functionality to FogBugz"</p>
<p>What is Compatibility View and how can I disable it? </p>
http://fogbugz.stackexchange.com/questions/9524/how-do-i-disable-internet-explorers-compatibility-view-for-fogbugz/9525#9525Answer by Jude Allred for How do I disable Internet Explorer's Compatibility View for FogBugz?Jude Allred2011-11-11T20:55:07Z2011-11-11T21:06:28Z<p>Internet Explorer's Compatibility View is a feature which affects how it displays web pages. When enabled, it tends to emulate Internet Explorer 7's behavior in displaying FogBugz pages. Since FogBugz does not support Internet Explorer 7, Compatibility View will cause FogBugz to appear broken.</p>
<p>To configure Internet Explorer to remove FogBugz from Compatibility View:</p>
<ol>
<li>Open the <strong>Tools</strong> menu (<code>Alt+t</code>) and select <strong>Compatibility View Settings</strong>.</li>
<li>If your FogBugz site is listed under "Websites you've added to Compatibility View", select them and remove them from the list. E.g., if you have a FogBugz account hosted at example.fogbugz.com, make sure that "fogbugz.com" is not present in the Compatibility View page list.</li>
<li>If you or your company is hosting their own FogBugz site on a local intranet, uncheck "Display intranet sites in Compatibility View". </li>
<li>With these new settings in place, refresh your FogBugz page.</li>
</ol>
<p>Note that if your computer is administered by your organization, you may not be able to access Compatibility View Settings or perform some of these sites. In this event, please begin by contacting your system administrators or help staff for assistance.</p>
<p>It's also possible that you may have temporarily entered Compatibility View through the course of using Internet Explorer's developer tools. To correct this, press <strong>f12</strong> and change the <strong>Browser Mode</strong> to indicate the current version of your browser. Changing Browser Mode should also propagate a change to Document mode.</p>
<p>E.g., Internet Explorer 9 users should see a Browser Mode of "IE9" and a Document Mode of "IE9 Standards". </p>
http://fogbugz.stackexchange.com/questions/8951/release-notes-fogbugz-8-5-125Release Notes: FogBugz 8.5.125Jude Allred2011-08-05T23:59:57Z2011-08-25T19:44:46Z
<p>FogBugz 8.5.125 is available for Windows and *nix. What changed?</p>
http://fogbugz.stackexchange.com/questions/8951/release-notes-fogbugz-8-5-125/8952#8952Answer by Jude Allred for Release Notes: FogBugz 8.5.125Jude Allred2011-08-06T00:01:11Z2011-08-17T13:48:17Z<p>This is a bugfix-only release. </p>
<p>There were only three changes in this release, and they were done for the benefit of...</p>
<ul>
<li><p><strong>All users</strong>:</p>
<p>Fixed a bug with attachment handling where attachments would not get associated with a case if the case where resolved or reassigned when attaching. </p></li>
<li><p><strong>MySQL users</strong>: </p>
<p>Fixed a bug in our MySQL query generator which caused certain types of filters, searches, and other common behaviors to generate SQL exceptions. </p></li>
<li><p><strong>IE7/8 users:</strong> </p>
<p>Fixed a JavaScript error which halted JavaScript execution on all FogBugz pages. This caused JavaScript-reliant items, such as the Wiki editor, to fail.</p></li>
<li><p><strong>IPad users:</strong></p>
<p>Fixed a bug which caused "Edit not saved -- unable to locate attachment" to be displayed when using the non-Mobile FogBugz interface to close an email case.</p></li>
</ul>
<p><em>FogBugz 8.5.123 was also released for a short amount of time as a stopgap for IE7/8 users, and contained only the final two of the four fixes listed above.</em></p>
<p><em>FogBugz 8.5.124 was also released for a short amount of time as a stopgap, and contained only the final three of the four fixes listed above.</em></p>
http://fogbugz.stackexchange.com/questions/8754/server-error-in-kanban-2-1-7-13/8799#8799Answer by Jude Allred for Server Error in Kanban 2.1.7.13Jude Allred2011-07-19T16:48:45Z2011-07-19T16:48:45Z<p>2.1.7.13 contains a switch in Kanban from using a homebrew JSON serializer to using the Newtonsoft serializer. Looks like the 2.1.7.13 zip file forgot to include the Newtonsoft.dll... I'll ping the author to get that fixed in the next version. In the meantime, 2.1.7.12 should generally work ok unless you have a very large Kanban board.</p>
http://fogbugz.stackexchange.com/questions/1144/how-do-i-deploy-a-fogbugz-plugin/1145#1145Answer by Jude Allred for How do I deploy a FogBugz Plugin?Jude Allred2009-12-18T19:48:39Z2011-06-20T17:57:10Z<h2><strong>How to Deploy FogBugz Plugins</strong></h2>
<p>Deploying to Licensed FogBugz customers is easy- just upload your plugin to the <a href="http://www.fogcreek.com/FogBugz/plugins/" rel="nofollow">FogBugz Plugin Gallery</a>.</p>
<p>To deploy your plugin to FogBugz On Demand customers, the plugin must first be approved.</p>
<p><strong>FogBugz On Demand Plugin Approval Process:</strong></p>
<p><em>Now 85% less painful than it sounds!</em></p>
<p>Here's a concise summary of what must happen. You could also read the <a href="https://developers.fogbugz.com/default.asp?W131" rel="nofollow">authoritative wiki</a> if you want more details.</p>
<ol>
<li>Upload your plugin to the <a href="http://www.fogcreek.com/FogBugz/plugins/" rel="nofollow">FogBugz Plugin Gallery</a>.</li>
<li>Send an email to <strong>plugins@fogcreek.com</strong> with the following information:
<ol>
<li>The name of your plugin</li>
<li>Your name and the name of your company, where present</li>
<li>An indication that you have read and agree to the <a href="https://developers.fogbugz.com/default.asp?W132" rel="nofollow">Plugin Author Terms and Conditions</a></li>
</ol></li>
<li>Your plugin will undergo review. The review is primarily concerned with:
<ol>
<li>Does it run? It must load successfully and not blow up on our testers.</li>
<li><strong>Security Vulnerabilities</strong> in your plugin, especially XSS (See <a href="https://developers.fogbugz.com/default.asp?W101" rel="nofollow">Plugin Security</a>).</li>
</ol></li>
<li>After the review, we'll respond to you with either the estimated time until your plugin will be made live to On Demand, or, if your plugin was rejected, we'll give you a concrete reason why.</li>
</ol>
<p>If you've updated a plugin that has previously been approved for FogBugz On Demand, the update <strong>will not be available</strong> for On Demand until the plugin approval process has been repeated.</p>
http://fogbugz.stackexchange.com/questions/1144/how-do-i-deploy-a-fogbugz-pluginHow do I deploy a FogBugz Plugin?Jude Allred2009-12-18T19:48:29Z2011-06-20T17:57:10Z
<p>I've developed the best plugin for FogBugz ever! How to I make it available to other people?</p>
http://fogbugz.stackexchange.com/questions/1361/what-kind-of-search-queries-can-i-perform-in-fogbugzWhat kind of search queries can I perform in FogBugz?Jude Allred2010-01-08T16:32:06Z2011-06-20T13:55:01Z
<p>What is FogBugz search capable of?</p>
http://fogbugz.stackexchange.com/questions/2033/can-i-set-a-custom-landing-page-for-my-fogbugz-siteCan I set a custom landing page for my fogbugz site?Jude Allred2010-02-17T21:07:34Z2011-04-29T18:52:54Z
<p>I'd like to change the default page that's displayed to users who visit <em>my</em>.FogBugz.com. Is there an easy way to do this? Can I do this in FogBugz On Demand?</p>
http://fogbugz.stackexchange.com/questions/7843/javascript-clearing-the-content-of-a-text-input-created-with-pgsrcpgemailsugge/7913#7913Answer by Jude Allred for [Javascript] Clearing the content of a text input created with pgsrc=pgEmailSuggestionsJude Allred2011-04-19T00:49:09Z2011-04-19T00:55:05Z<p>FancyPopups aren't using any caching beyond normal caching performed by the browser. In fact- they maintain their state unless you explicitly alter their contents.</p>
<p>If you need to do a hard reset of the popup's state, the simplist way to do that is to use the setHtml function to reset the internal contents of the popup.</p>
<p>I'm a little unclear on how you're using pgEmailSuggestions, but it seems reasonable that the underlying droplist isn't being refreshed. I'll work with you on this via Email and update this answer once we've figured it out.</p>
http://fogbugz.stackexchange.com/questions/1275/when-does-fogbugz-choose-not-to-send-an-autoresponseWhen does FogBugz choose NOT to send an AutoResponse?Jude Allred2009-12-31T23:31:59Z2011-04-12T14:09:41Z
<p>There's some criteria... What is it?</p>
http://fogbugz.stackexchange.com/questions/1275/when-does-fogbugz-choose-not-to-send-an-autoresponse/1276#1276Answer by Jude Allred for When does FogBugz choose NOT to send an AutoResponse?Jude Allred2009-12-31T23:36:52Z2011-04-12T14:09:41Z<p>Criteria is as follows:</p>
<ol>
<li><p>The message has <strong>not been sorted into spam</strong>. If it is sorted into spam, an AutoResponse will be sent as soon as the message is sorted into a non-spam area (as of FogBugz 7.1.6), so long as the rest of the criteria is still met.</p></li>
<li><p>The address that the AutoResponse would be sent to does not contain the strings 'postmaster','daemon','owner-','bounced','no-reply', or 'do-not-reply' anywhere to the left of the @ sign.</p></li>
<li><p>The mail precedence of the received email isn't set to 'junk' or 'bulk'. Until FogBugz 7.1.9, the 'list' mail precedence was also filtered against.</p></li>
<li><p>The recipient has received fewer than three autoresponses in the last hour. This is to prevent infinite email loops. There is a feature request to <a href="http://fogbugz.stackexchange.com/questions/7829/feature-request-allow-configuration-of-hourly-autoresponse-limit" rel="nofollow">make this number configurable</a>.</p></li>
</ol>
<p>And, of course, if AutoResponses are disabled, FogBugz will not send them.</p>
http://fogbugz.stackexchange.com/questions/3860/feature-request-find-and-replace-in-the-wiki-editor/4624#4624Answer by Jude Allred for Feature Request: Find and replace in the wiki editorJude Allred2010-09-15T19:39:07Z2011-03-29T20:25:48Z<p><em>(For FogBugz 8 and beyond):</em></p>
<p>Our backend editor (CKEditor) actually supports this, we just don't have it enabled (or properly skinned). We have a case open to consider this feature for a future release. Please up-vote this <em>question</em> (not this answer) to show your support for adding this feature.</p>
<p>If you're comfortable with javascript, you can use the javascript console in your browser to accomplish this.</p>
<p>This code will replace the first occurance of 'cat' with 'mouse':</p>
<pre><code>editor.ck.setData(editor.ck.getData().replace('cat', 'mouse'));
</code></pre>
<p>This code will replace all occurances of 'cat' with 'mouse':</p>
<pre><code>editor.ck.setData(editor.ck.getData().replace(/cat/g, 'mouse'));
</code></pre>
<p>Undo works, so feel free to experiment.</p>
http://fogbugz.stackexchange.com/questions/7011/ie9-rc-edit-issue-broken/7027#7027Answer by Jude Allred for IE9 RC - 'edit' issue brokenJude Allred2011-02-11T18:54:04Z2011-02-11T20:09:12Z<p><strong>Update:</strong> We traced the root of the issue to be an incompatibility between IE9 RC and CKEditor. This means that case editing and FogBugz Wiki editing will not function in IE9 RC unless it is set to a compatibility mode (via f12).</p>
<p>We're deploying a patch which will cause IE9 RC to default its rendering mode to IE7 compatibility mode, which is not pretty but is fully functional. </p>
<p>Once IE9 or CKEditor patches the issue, we'll return IE9's default rendering mode to IE9 Standards.</p>
<p><strong>If FogBugz has functional problems for you in IE9</strong> the current best workaround is to set IE9's Browser Mode to IE8. (This will also implicitly set the document mode to IE7)</p>
<p><em>Note: IE9 Beta users who have not yet upgraded to IE9 RC are not affected by the aformentioned bug, however will be affected by the new default document mode. They can override the default by pressing f12 and setting both Browser and Document modes to IE9 standards.</em></p>
<hr>
<p>We've reproduced it- thanks! </p>
<p>Looks like they changed something between Beta 1 and RC which doesn't jive with FogBugz. Workaround (for now) is to hit f12 and set IE9's browser mode to IE8. You can return to using IE9-mode once we fix the bug.</p>
http://fogbugz.stackexchange.com/questions/6440/allow-html-css-customization-at-the-discussion-group-level-rather-than-the-accoun/6466#6466Answer by Jude Allred for Allow HTML/CSS customization at the discussion group level rather than the account levelJude Allred2010-12-30T18:06:21Z2010-12-30T18:06:21Z<p>Hi Jamie,</p>
<p>Thanks for the suggestion! I've created a case for this feature.</p>
http://fogbugz.stackexchange.com/questions/6455/can-we-have-urltrigger-put-data-into-the-post-body/6464#6464Answer by Jude Allred for Can we have URLTrigger put data into the POST body?Jude Allred2010-12-30T17:45:47Z2010-12-30T17:45:47Z<p>This seems perfectly reasonable -- I've opened a case to address this. Thanks for the suggestion!</p>
http://fogbugz.stackexchange.com/questions/6399/any-plans-to-support-an-interface-for-modifying-the-pgpersoninfo-page/6411#6411Answer by Jude Allred for Any plans to support an interface for modifying the pgPersonInfo page?Jude Allred2010-12-23T17:44:39Z2010-12-23T17:44:39Z<p>Hi Daniel,</p>
<p>Yes, we do plan to add and support those interfaces in a future version of the Plugin API, however (as of FogBugz 8.2.22) such interfaces don't currently exist except for by way of client-side JavaScript using BugMonkey or the IPluginJS interface.</p>
<p>That said, this is not a feature which we're currently working on for our next release, and it will need to rise above other features in order to get included in the future. If this is something that you're blocking on, I would recommend taking the JavaScript route.</p>
<p>Since you're interested, I've bumped the priority of the feature.</p>
http://fogbugz.stackexchange.com/questions/6377/did-the-groups-table-change-in-fogbugz-8Did the Groups table change in FogBugz 8?Jude Allred2010-12-21T18:14:54Z2010-12-21T18:20:24Z
<p>I have a plugin which queries the Groups table in order to ascertain certain permissions within FogBugz. As of FogBugz 8, Groups appears to be deprecated. Some installations don't even have this table. What's going on?</p>
http://fogbugz.stackexchange.com/questions/6377/did-the-groups-table-change-in-fogbugz-8/6378#6378Answer by Jude Allred for Did the Groups table change in FogBugz 8?Jude Allred2010-12-21T18:20:24Z2010-12-21T18:20:24Z<p>It is not recommended that FogBugz plugins query the permissions tables in FogBugz directly, as the permission model is still undergoing change. Wherever possible, use the built-in <a href="https://developers.fogbugz.com/default.asp?W129" rel="nofollow">Entity Member Security</a></p>
<p>Here is a brief description (with schema changes) from FogBugz 7 to FogBugz 8.</p>
<h2>FogBugz 7</h2>
<p>Groups are permissions sets, and each project is permissioned
by one and only one Group.</p>
<p><strong>Table: ACL</strong></p>
<p>The ACL table maps users to groups and indicates their permissions.</p>
<p><strong>Columns</strong></p>
<pre><code>sSectionName (nvarchar(50)) - Name of the table the permission is for
ixSection (int) - Foreign key to the table named in sSectionName
ixPerson (int) - Foreign key to the Person table. The special value -1 is
used for "all users"
iPermission (int) - Permissions level of the indicated user on the indicated group: 0=none, 1=read-only, 2=read/write, 3=admin.
</code></pre>
<p><strong>Table: Groups</strong></p>
<p>The Groups table holds one row for each client or department that you define for your security structure.</p>
<p><strong>Columns</strong></p>
<pre><code>ixGroup (int(11)) - AutoNumber primary key.
sName (nvarchar(255)) - Name of the client or department.
iType (int) - Group type: 1=client 2=dept
sNotes (ntext) - Notes describing the group.
</code></pre>
<h2>FogBugz 8</h2>
<p>Groups are no more, PermissionGroups are groups of people who can be permissioned on a project. Further details on the current schema are available <a href="http://fogbugz.stackexchange.com/fogbugz-database-schema" rel="nofollow">here</a>.</p>
<p><strong>Table: ACL</strong></p>
<p>The ACL table maps users to groups and indicates their permissions.</p>
<p><strong>Columns</strong></p>
<pre><code>ixACL (int(11)) - AutoNumber primary key.
ixPerson (int) - Foreign key to the Person table. The special value -1 is used for "all users"
ixPermissionGroup (int) - Foreign key to the PermissionGroup table
ixDiscussGroup (int) - Foreign key to the DiscussGroup table
ixWiki (int) - Foreign key to the Wiki table
ixProject (int) - Foreign key to the Project table
iPermission (int) - Permissions level of the indicated user on the indicated group: 0=none, 1=read-only, 2=read/write, 3=admin.
</code></pre>
<p><strong>Table: PermissionGroup</strong></p>
<p>The PermissionGroup table contains permissionable groups</p>
<p><strong>Columns</strong></p>
<pre><code>ixPermissionGroup (int(11)) - AutoNumber primary key.
sName (nvarchar(255)) - Name of the client or department.
sNotes (ntext) - Notes describing the group.
fDeleted (smallint) - 1 if deleted, 0 if not
fCommunity (smallint) - 1 if deleted, 0 if not
</code></pre>
<p><strong>Table: PermissionGroupMember</strong></p>
<p>A table for determining membership in a PermissionGroup</p>
<p><strong>Columns</strong></p>
<pre><code>ixPermissionGroupMember (int(11)) - AutoNumber primary key.
ixPermissionGroup (int) - The PermissionGroup ixPerson is a member of
ixPerson (int) - The person who is a member of specified ixPermissionGroup
</code></pre>
http://fogbugz.stackexchange.com/questions/6320/warn-against-too-new-plugins/6325#6325Answer by Jude Allred for Warn against too new pluginsJude Allred2010-12-15T22:09:31Z2010-12-15T22:09:31Z<p>Definitely a bug- Thank you for bringing this to our attention! </p>
<p>I've added comments to those plugins to warn about the 8.2 requirement, and will audit our other gallery plugins to prevent that same issue. I'll also update our version warning system to prevent this from happening in the future.</p>
<p>I apologize for the difficulty.</p>
http://fogbugz.stackexchange.com/questions/2006/is-there-a-way-to-get-free-access-to-fogbugz-are-there-student-or-startup-editioIs there a way to get free access to FogBugz? Are there Student or Startup editions?Jude Allred2010-02-17T01:05:36Z2010-11-23T15:13:57Z
<p>I still want to use FogBugz, but without the whole "monetary transaction" aspect. Are there any ways for students, teachers, or startups to get free access to FogBugz?</p>
http://fogbugz.stackexchange.com/questions/5821/case-event-edit-mia/5824#5824Answer by Jude Allred for Case Event Edit MIA?Jude Allred2010-11-10T16:47:54Z2010-11-10T16:47:54Z<p>Hi David,</p>
<p>It's definitely available to you.</p>
<p>If you go to Admin -> Plugins, then click 'View all available plugins' at the bottom of the screen, you'll find Case Event Edit in the list and can enable it.</p>
<p>It's still "young" so we didn't want to enable it by default for everyone, however we're about to make that change. </p>
<p>Thank you for your feedback, I totally agree with you on the marketing points.</p>
http://fogbugz.stackexchange.com/questions/1546/what-kind-of-user-can-just-report-bugs/1552#1552Answer by Jude Allred for What kind of user can just report bugs?Jude Allred2010-01-21T18:02:54Z2010-11-08T20:52:20Z<p>If you want <strong>anyone</strong> to be able to create a case, you can set 'Allow public submissions' to 'Yes' in the edit page of a project. For anonymous users to be able to view the cases that they've created, they'll need to save the ticket that FogBugz provides them with when the case is created.</p>
<p>Otherwise, you can <a href="http://fogbugz.stackexchange.com/questions/4331/how-do-permissions-work-in-fogbugz" rel="nofollow">specify these parameters on a per-project basis</a>. You can add community users to a project individually or by domain, or <a href="http://fogbugz.stackexchange.com/questions/4329/how-are-groups-used-to-assign-permissions-in-fogbugz" rel="nofollow">create groups of community users</a> to add together to projects.</p>
<p>If you install the <a href="http://www.fogcreek.com/FogBugz/plugins/plugin.aspx?ixPlugin=30" rel="nofollow">Community Case List</a> plugin, you gain an enhanced interface for allowing community users to be able to view the list cases.</p>
<p>It sounds to me like what you most want is a publicly-submittable project augmented with the Community Case List plugin.</p>
http://fogbugz.stackexchange.com/questions/1158/plugin-ideas-forum-what-are-your-top-plugin-ideas-and-requests/1162#1162Answer by Jude Allred for Plugin Ideas Forum (What are your top plugin ideas and requests?)Jude Allred2009-12-21T21:02:34Z2010-10-29T17:40:07Z<p>Update: <a href="http://www.fogcreek.com/FogBugz/plugins/plugin.aspx?ixPlugin=42" rel="nofollow">done</a>!</p>
<h2>Syntax Highlighting</h2>
<p>Add programming language-specific syntax highlighting to code snippets in FogBugz wiki pages and/or cases.</p>
http://fogbugz.stackexchange.com/questions/1158/plugin-ideas-forum-what-are-your-top-plugin-ideas-and-requestsPlugin Ideas Forum (What are your top plugin ideas and requests?)Jude Allred2009-12-21T20:49:46Z2010-10-29T17:40:07Z
<p>Describe plugins that you wish exist, and vote on other plugins listed below. This poll is meant to serve as a guide for plugin developers, as well as Fog Creek's plugin development team.</p>
<p>If you're actively developing a plugin, feel free to comment and <a href="http://fogbugz.stackexchange.com/questions/1637/what-plugins-are-currently-in-development/" rel="nofollow">link</a> appropriately.</p>
http://fogbugz.stackexchange.com/questions/9874/release-notes-fogbugz-8-7-58/9878#9878Comment by Jude AllredJude Allred2012-01-27T22:48:54Z2012-01-27T22:48:54ZA FogBugz + Kiln installer with this patch is not yet available, however our support team is able to patch your installation manually. Please email or call us and we'll get it sorted out straight-away. http://fogbugz.stackexchange.com/questions/9874/release-notes-fogbugz-8-7-58/9877#9877Comment by Jude AllredJude Allred2012-01-27T22:47:44Z2012-01-27T22:47:44ZIf you're trying to download the FogBugz + Kiln bundle, this will be the case. See the updated answer for more details.http://fogbugz.stackexchange.com/questions/9632/why-is-a-search-3x-faster-than-an-saved-search-which-is-2x-faster-than-an-equival/9698#9698Comment by Jude AllredJude Allred2011-12-21T18:17:17Z2011-12-21T18:17:17Z@Michel Interesting... alas not 100% accurate. In the absence of any other filtering (which is actually fairly uncommon) search results are ordered based on Lucene.NET's relevance metric. The algorithm we use is "Oh Lucene, please do your best, but have the following biases: Weight title text at 2x the influence of other text that you index, and if you're indexing a case then add +0.05% relevance per case event and, if the case is marked as 'spam', divide the final relevance score by 4." Unfortunately this algorithm isn't very good, so it's largely more accurate to say "what relevance?"http://fogbugz.stackexchange.com/questions/8951/release-notes-fogbugz-8-5-125/8952#8952Comment by Jude AllredJude Allred2011-08-11T15:37:45Z2011-08-11T15:37:45ZIt's available now. We stalled for a day so that we could do some additional testing on the FogBugz + Kiln integration component of the installer.http://fogbugz.stackexchange.com/questions/1016/troubleshooting-performance/1017#1017Comment by Jude AllredJude Allred2011-07-06T15:28:25Z2011-07-06T15:28:25Z@Rodrigue They were, however it's reasonable that additional optimizations may be needed. If you're running Licensed FogBugz, be sure to upgrade to the latest version -- we released a major search performance optimization about two weeks ago. Also feel free to email us if you'd like to do some performance troubleshooting. If Kanban is at fault, we can help the author push some changes through.http://fogbugz.stackexchange.com/questions/2033/can-i-set-a-custom-landing-page-for-my-fogbugz-site/8049#8049Comment by Jude AllredJude Allred2011-04-30T19:49:49Z2011-04-30T19:49:49ZHi Sebastian, you can accomplish a scriptmonkey-like solution by using the BugMonkey plugin ( <a href="http://www.fogcreek.com/fogbugz/plugins/plugin.aspx?ixPlugin=16" rel="nofollow">fogcreek.com/fogbugz/plugins/…</a> ). Public items are public for everyone, so there's not a way in FogBugz to make a public wiki invisible to community users without using BugMonkey.http://fogbugz.stackexchange.com/questions/6845/filter-and-search-for-cases-assigned-to-any-member-of-a-groupComment by Jude AllredJude Allred2011-04-26T17:40:20Z2011-04-26T17:40:20ZA workaround is to use the search component of the filter. E.g.: (assignedto:"jude" or assignedto:"adam" or assignedto:"bob") orderby:"assignedto"http://fogbugz.stackexchange.com/questions/1158/plugin-ideas-forum-what-are-your-top-plugin-ideas-and-requests/1171#1171Comment by Jude AllredJude Allred2011-03-31T20:45:42Z2011-03-31T20:45:42ZDone in FogBugz 8.3http://fogbugz.stackexchange.com/questions/1158/plugin-ideas-forum-what-are-your-top-plugin-ideas-and-requests/1174#1174Comment by Jude AllredJude Allred2011-03-31T20:44:51Z2011-03-31T20:44:51ZKiln can do this when integrated with FogBugz! kilnhg.comhttp://fogbugz.stackexchange.com/questions/7422/failed-to-update-the-search-index-x-windows-949-is-not-a-supported-encodingComment by Jude AllredJude Allred2011-03-10T18:19:39Z2011-03-10T18:19:39ZWhat version of FogBugz 8 are you running? There was a bug in FogBugz 8.3 which could cause the problem that you describe, and it has since been fixed.http://fogbugz.stackexchange.com/questions/6951/tidy-case-events-plugin-resets-enabled-option-to-disabledComment by Jude AllredJude Allred2011-02-11T20:21:13Z2011-02-11T20:21:13ZThanks, I'll dig into this.http://fogbugz.stackexchange.com/questions/6951/tidy-case-events-plugin-resets-enabled-option-to-disabledComment by Jude AllredJude Allred2011-02-08T16:48:41Z2011-02-08T16:48:41ZHi Dmitry,
Just to clarify, is it that over time T.C.E. is disabling itself and needs to be reenabled, or that during upgrade everyone defaults to disabled?http://fogbugz.stackexchange.com/questions/451/troubleshooting-fogbugz-slow-performanceComment by Jude AllredJude Allred2011-02-01T18:22:01Z2011-02-01T18:22:01ZAlso see <a href="http://fogbugz.stackexchange.com/questions/1016/troubleshooting-performance/1017#1017" rel="nofollow" title="troubleshooting performance">fogbugz.stackexchange.com/questions/1016/…</a>http://fogbugz.stackexchange.com/questions/6413/release-notes-fogbugz-8-2-24/6452#6452Comment by Jude AllredJude Allred2010-12-30T01:06:09Z2010-12-30T01:06:09Z@Daniel is correct -- There were some significant plugin issues with 8.2.22 so we pulled *nix release and have put future *nix releases on hold until everything is smoothed out. 8.3 is still intended to release simultaneously for both Windows and *nix.http://fogbugz.stackexchange.com/questions/1158/plugin-ideas-forum-what-are-your-top-plugin-ideas-and-requests/1170#1170Comment by Jude AllredJude Allred2010-12-23T18:13:02Z2010-12-23T18:13:02ZThe [AddSubscribers](<a href="http://www.fogcreek.com/fogbugz/plugins/plugin.aspx?ixPlugin=47" rel="nofollow">fogcreek.com/fogbugz/plugins/…</a>) plugin can do this.