<?xml version="1.0" encoding="utf-8"?><!-- generator="b2evolution/7.2.5-stable" -->
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Guild Blogs</title>
		<link>http://blogs.consultantsguild.com/index.php</link>
		<atom:link rel="self" type="application/rss+xml" href="http://blogs.consultantsguild.com/index.php?tempskin=_rss2" />
		<description>blog entries by members of the consultants guild</description>
		<language>en-US</language>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<admin:generatorAgent rdf:resource="http://b2evolution.net/?v=7.2.5-stable"/>
		<ttl>60</ttl>
				<item>
			<title>Finding &#38; Removing the Docs WordPress Virus on Windows</title>
			<link>http://blogs.consultantsguild.com/index.php/wayne/finding-the-docs-wordpress-virus</link>
			<pubDate>Wed, 16 Sep 2015 20:47:00 +0000</pubDate>			<dc:creator>wayne</dc:creator>
			<category domain="main">General</category>			<guid isPermaLink="false">220@http://blogs.consultantsguild.com/</guid>
						<description>&lt;h2&gt;Finding&lt;/h2&gt;
&lt;p&gt;A quick way to scan a bunch of WordPress installs for the Docs virus. Not sure of the real name since I can&#039;t find a reference to it on the net.&lt;/p&gt;
&lt;pre&gt;dir /s /b *.php | find &quot;docs.php&quot;&lt;/pre&gt;
&lt;p&gt;A more thorough search is:&lt;/p&gt;
&lt;pre&gt;findstr /sim /c:&quot;chr(base_convert(substr&quot; *.php&lt;/pre&gt;
&lt;p&gt;This looks for the actual code that decodes the virus.&lt;/p&gt;
&lt;p&gt;Either method could produce some false positives so apply some comment sense before deleting files.&lt;/p&gt;
&lt;h2&gt;Removing&lt;/h2&gt;
&lt;p&gt;Removing the virus consists of checking the first line in the function.php file for each theme and removing the junk after &amp;lt;?php&lt;/p&gt;
&lt;p&gt;Then delete the Docs plugin.&lt;/p&gt;
&lt;p&gt;You will need to do this with your site disabled as the plugin will reinfect the functions.php files and the functions.php extras will reinstall the plugin.&lt;/p&gt;
&lt;h2&gt;Analysis&lt;/h2&gt;
&lt;p&gt;I haven&#039;t spent too much time trying to figure out what it does exactly. However, this is what I do know.&lt;/p&gt;
&lt;h3&gt;The code added to the theme functions.php&lt;/h3&gt;
&lt;p&gt;First it checks to see if the wp-content/plugins/docs/docs.php file exists and if not it downloads a copy from &lt;a href=&quot;http://lamulata.biz/cript_doc.php&quot; class=&quot;linebreak&quot;&gt;http://lamulata.biz/cript_doc.php&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Next if the docs.php file exists it checks to see if it is activated. If not it activates it.&lt;/p&gt;
&lt;h3&gt;docs.php&lt;/h3&gt;
&lt;p&gt;Registers a daily cron job which is used to update itself.&lt;/p&gt;
&lt;p&gt;Uses the docs_wp_plugin_active_list_update action to hide itsoft from the plugin list.&lt;/p&gt;
&lt;p&gt;Hooks the wp_head action which seems to send some data about the current request to &lt;a href=&quot;http://178.132.204.58/index.php&quot; class=&quot;linebreak&quot;&gt;http://178.132.204.58/index.php&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Ultimately it seems to fetch some content from a remote site and includes it in the page content or completely replaces the content.&lt;/p&gt;
&lt;p&gt;One of the side effects is that it looks for a writeable tmp directory and caches data there. I found over 25,000 files in one cache folder.&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://blogs.consultantsguild.com/index.php/wayne/finding-the-docs-wordpress-virus&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://blogs.consultantsguild.com/wayne/&quot;&gt;Wayne Allen&#039;s Blog&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<h2>Finding</h2>
<p>A quick way to scan a bunch of WordPress installs for the Docs virus. Not sure of the real name since I can't find a reference to it on the net.</p>
<pre>dir /s /b *.php | find "docs.php"</pre>
<p>A more thorough search is:</p>
<pre>findstr /sim /c:"chr(base_convert(substr" *.php</pre>
<p>This looks for the actual code that decodes the virus.</p>
<p>Either method could produce some false positives so apply some comment sense before deleting files.</p>
<h2>Removing</h2>
<p>Removing the virus consists of checking the first line in the function.php file for each theme and removing the junk after &lt;?php</p>
<p>Then delete the Docs plugin.</p>
<p>You will need to do this with your site disabled as the plugin will reinfect the functions.php files and the functions.php extras will reinstall the plugin.</p>
<h2>Analysis</h2>
<p>I haven't spent too much time trying to figure out what it does exactly. However, this is what I do know.</p>
<h3>The code added to the theme functions.php</h3>
<p>First it checks to see if the wp-content/plugins/docs/docs.php file exists and if not it downloads a copy from <a href="http://lamulata.biz/cript_doc.php" class="linebreak">http://lamulata.biz/cript_doc.php</a></p>
<p>Next if the docs.php file exists it checks to see if it is activated. If not it activates it.</p>
<h3>docs.php</h3>
<p>Registers a daily cron job which is used to update itself.</p>
<p>Uses the docs_wp_plugin_active_list_update action to hide itsoft from the plugin list.</p>
<p>Hooks the wp_head action which seems to send some data about the current request to <a href="http://178.132.204.58/index.php" class="linebreak">http://178.132.204.58/index.php</a></p>
<p>Ultimately it seems to fetch some content from a remote site and includes it in the page content or completely replaces the content.</p>
<p>One of the side effects is that it looks for a writeable tmp directory and caches data there. I found over 25,000 files in one cache folder.</p><div class="item_footer"><p><small><a href="http://blogs.consultantsguild.com/index.php/wayne/finding-the-docs-wordpress-virus">Original post</a> blogged on <a href="http://blogs.consultantsguild.com/wayne/">Wayne Allen's Blog</a>.</small></p></div>]]></content:encoded>
								<comments>http://blogs.consultantsguild.com/index.php/wayne/finding-the-docs-wordpress-virus#comments</comments>
			<wfw:commentRss>http://blogs.consultantsguild.com/index.php/wayne/?tempskin=_rss2&#38;disp=comments&#38;p=220</wfw:commentRss>
		</item>
				<item>
			<title>Finding the StealRat Spambot on Windows</title>
			<link>http://blogs.consultantsguild.com/index.php/wayne/finding-the-stealrat-spambot-on</link>
			<pubDate>Mon, 06 Jul 2015 23:30:00 +0000</pubDate>			<dc:creator>iclemartin</dc:creator>
			<category domain="main">Agile</category>			<guid isPermaLink="false">219@http://blogs.consultantsguild.com/</guid>
						<description>&lt;p&gt;I recently had to remove a &lt;a href=&quot;http://blog.trendmicro.com/trendlabs-security-intelligence/how-to-check-if-your-website-is-part-of-the-stealrat-botnet/&quot; target=&quot;_blank&quot;&gt;StealRat infection&lt;/a&gt; from a computer. Unfortunately most of the available information is out of date and only helped somewhat.&lt;/p&gt;
&lt;p&gt;Once I found the actual file that was the issue I developed a better command to detect any other infections:&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-family: &#039;courier new&#039;, courier;&quot;&gt;findstr /sim /c:&quot;&#039;](NULL)&quot; *.php&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://blogs.consultantsguild.com/index.php/wayne/finding-the-stealrat-spambot-on&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://blogs.consultantsguild.com/wayne/&quot;&gt;Wayne Allen&#039;s Blog&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>I recently had to remove a <a href="http://blog.trendmicro.com/trendlabs-security-intelligence/how-to-check-if-your-website-is-part-of-the-stealrat-botnet/" target="_blank">StealRat infection</a> from a computer. Unfortunately most of the available information is out of date and only helped somewhat.</p>
<p>Once I found the actual file that was the issue I developed a better command to detect any other infections:</p>
<p><span style="font-family: 'courier new', courier;">findstr /sim /c:"'](NULL)" *.php</span></p><div class="item_footer"><p><small><a href="http://blogs.consultantsguild.com/index.php/wayne/finding-the-stealrat-spambot-on">Original post</a> blogged on <a href="http://blogs.consultantsguild.com/wayne/">Wayne Allen's Blog</a>.</small></p></div>]]></content:encoded>
								<comments>http://blogs.consultantsguild.com/index.php/wayne/finding-the-stealrat-spambot-on#comments</comments>
			<wfw:commentRss>http://blogs.consultantsguild.com/index.php/wayne/?tempskin=_rss2&#38;disp=comments&#38;p=219</wfw:commentRss>
		</item>
				<item>
			<title>devZing - MantisBT Management Control Panel Released</title>
			<link>http://blogs.consultantsguild.com/index.php/wayne/devzing-mantisbt-management-control-panel-released</link>
			<pubDate>Thu, 16 Dec 2010 20:28:41 +0000</pubDate>			<dc:creator>iclemartin</dc:creator>
			<category domain="main">Misc</category>			<guid isPermaLink="false">218@http://blogs.consultantsguild.com/</guid>
						<description>&lt;p&gt;&lt;a href=&quot;http://devzing.com&quot;&gt;devZing&lt;/a&gt; has released a new MantisBT control panel for managing those settings that are not exposed inside MantisBT giving you even more control over your install.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://devzing.com/blog/index.php/updated-mantisbt-managment-page-now-available&quot;&gt;Read More&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://blogs.consultantsguild.com/index.php/wayne/devzing-mantisbt-management-control-panel-released&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://blogs.consultantsguild.com/wayne/&quot;&gt;Wayne Allen&#039;s Blog&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p><a href="http://devzing.com">devZing</a> has released a new MantisBT control panel for managing those settings that are not exposed inside MantisBT giving you even more control over your install.</p>
<p><a href="http://devzing.com/blog/index.php/updated-mantisbt-managment-page-now-available">Read More</a></p><div class="item_footer"><p><small><a href="http://blogs.consultantsguild.com/index.php/wayne/devzing-mantisbt-management-control-panel-released">Original post</a> blogged on <a href="http://blogs.consultantsguild.com/wayne/">Wayne Allen's Blog</a>.</small></p></div>]]></content:encoded>
								<comments>http://blogs.consultantsguild.com/index.php/wayne/devzing-mantisbt-management-control-panel-released#comments</comments>
			<wfw:commentRss>http://blogs.consultantsguild.com/index.php/wayne/?tempskin=_rss2&#38;disp=comments&#38;p=218</wfw:commentRss>
		</item>
				<item>
			<title>The Origins of Yesterday's Weather</title>
			<link>http://blogs.consultantsguild.com/index.php/wayne/the-origins-of-yesterday-s-weather</link>
			<pubDate>Wed, 28 Apr 2010 18:52:49 +0000</pubDate>			<dc:creator>wayne</dc:creator>
			<category domain="main">Agile</category>			<guid isPermaLink="false">217@http://blogs.consultantsguild.com/</guid>
						<description>&lt;p&gt;While researching a topic for my book I cam across the original paper that helped spawn the concept of Yesterday&#039;s Weather. That is the probability that amount of work you will do next week is highly likely to be the same as the amount of work you did last week.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;Abstract&lt;/strong&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;In this study, the authors used 111 time series to examine the accuracy of various forecasting methods, particularly time-series methods. The study shows, at least for time series, why some methods achieve greater accuracy than others for different types of data. The authors offer some explanation of the seemingly conflicting conclusions of past empirical research on the accuracy of forecasting. One novel contribution of the paper is the development of regression equations expressing accuracy as a function of factors such as randomness, seasonality, trend-cycle and the number of data points describing the series. Surprisingly, the study shows that for these 111 series simpler methods perform well in comparison to the more complex and statistically sophisticated ARMA models.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;&lt;a href=&quot;http://www.jstor.org/pss/2345077&quot; target=&quot;_blank&quot;&gt;Accuracy of Forecasting: An Empirical Investigation, Spyros Makridakis, Michele Hibon and Claus Moser, Journal of the Royal Statistical Society. Series A (General), Vol. 142, No. 2 (1979), pp. 97-145. &lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://blogs.consultantsguild.com/index.php/wayne/the-origins-of-yesterday-s-weather&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://blogs.consultantsguild.com/wayne/&quot;&gt;Wayne Allen&#039;s Blog&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>While researching a topic for my book I cam across the original paper that helped spawn the concept of Yesterday's Weather. That is the probability that amount of work you will do next week is highly likely to be the same as the amount of work you did last week.</p>
<blockquote><p><strong>Abstract</strong></p></blockquote>
<blockquote><p>In this study, the authors used 111 time series to examine the accuracy of various forecasting methods, particularly time-series methods. The study shows, at least for time series, why some methods achieve greater accuracy than others for different types of data. The authors offer some explanation of the seemingly conflicting conclusions of past empirical research on the accuracy of forecasting. One novel contribution of the paper is the development of regression equations expressing accuracy as a function of factors such as randomness, seasonality, trend-cycle and the number of data points describing the series. Surprisingly, the study shows that for these 111 series simpler methods perform well in comparison to the more complex and statistically sophisticated ARMA models.</p></blockquote>
<p><a href="http://www.jstor.org/pss/2345077" target="_blank">Accuracy of Forecasting: An Empirical Investigation, Spyros Makridakis, Michele Hibon and Claus Moser, Journal of the Royal Statistical Society. Series A (General), Vol. 142, No. 2 (1979), pp. 97-145. </a></p><div class="item_footer"><p><small><a href="http://blogs.consultantsguild.com/index.php/wayne/the-origins-of-yesterday-s-weather">Original post</a> blogged on <a href="http://blogs.consultantsguild.com/wayne/">Wayne Allen's Blog</a>.</small></p></div>]]></content:encoded>
								<comments>http://blogs.consultantsguild.com/index.php/wayne/the-origins-of-yesterday-s-weather#comments</comments>
			<wfw:commentRss>http://blogs.consultantsguild.com/index.php/wayne/?tempskin=_rss2&#38;disp=comments&#38;p=217</wfw:commentRss>
		</item>
				<item>
			<title>devZing MantisBT Upgraded to 1.2.0</title>
			<link>http://blogs.consultantsguild.com/index.php/news/2010/03/17/devzing-mantisbt-upgraded-to-1-2</link>
			<pubDate>Wed, 17 Mar 2010 23:30:07 +0000</pubDate>			<dc:creator>wayne</dc:creator>
			<category domain="main">News</category>			<guid isPermaLink="false">215@http://blogs.consultantsguild.com/</guid>
						<description>&lt;p&gt;&lt;a href=&quot;http://devzing.com/blog/index.php/mantisbt-upgraded-to-1-2&quot;&gt; Announcement&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://devzing.com/mantisbt.php&quot;&gt;MantisBT Hosting&lt;/a&gt; by devZing&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://blogs.consultantsguild.com/index.php/news/2010/03/17/devzing-mantisbt-upgraded-to-1-2&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p><a href="http://devzing.com/blog/index.php/mantisbt-upgraded-to-1-2"> Announcement</a></p>
<p><a href="http://devzing.com/mantisbt.php">MantisBT Hosting</a> by devZing</p><div class="item_footer"><p><small><a href="http://blogs.consultantsguild.com/index.php/news/2010/03/17/devzing-mantisbt-upgraded-to-1-2">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://blogs.consultantsguild.com/index.php/news/2010/03/17/devzing-mantisbt-upgraded-to-1-2#comments</comments>
			<wfw:commentRss>http://blogs.consultantsguild.com/index.php/news/?tempskin=_rss2&#38;disp=comments&#38;p=215</wfw:commentRss>
		</item>
				<item>
			<title>How To Delete Bugs in Bugzilla</title>
			<link>http://blogs.consultantsguild.com/index.php/wayne/how-to-delete-bugs-in-bugzilla</link>
			<pubDate>Wed, 17 Mar 2010 19:27:14 +0000</pubDate>			<dc:creator>wayne</dc:creator>
			<category domain="main">General</category>
<category domain="alt">Programming</category>
<category domain="alt">Testing</category>
<category domain="alt">Project Management</category>			<guid isPermaLink="false">214@http://blogs.consultantsguild.com/</guid>
						<description>&lt;p&gt;devZing has a good post on &lt;a href=&quot;http://devzing.com/blog/index.php/how-to-delete-bugs-from-bugzilla&quot;&gt;how to delete bugs in Bugzilla&lt;/a&gt;.&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://blogs.consultantsguild.com/index.php/wayne/how-to-delete-bugs-in-bugzilla&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://blogs.consultantsguild.com/wayne/&quot;&gt;Wayne Allen&#039;s Blog&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>devZing has a good post on <a href="http://devzing.com/blog/index.php/how-to-delete-bugs-from-bugzilla">how to delete bugs in Bugzilla</a>.</p><div class="item_footer"><p><small><a href="http://blogs.consultantsguild.com/index.php/wayne/how-to-delete-bugs-in-bugzilla">Original post</a> blogged on <a href="http://blogs.consultantsguild.com/wayne/">Wayne Allen's Blog</a>.</small></p></div>]]></content:encoded>
								<comments>http://blogs.consultantsguild.com/index.php/wayne/how-to-delete-bugs-in-bugzilla#comments</comments>
			<wfw:commentRss>http://blogs.consultantsguild.com/index.php/wayne/?tempskin=_rss2&#38;disp=comments&#38;p=214</wfw:commentRss>
		</item>
				<item>
			<title>Bugzilla updated to 3.4.6</title>
			<link>http://blogs.consultantsguild.com/index.php/news/2010/03/08/bugzilla-updated-to-3-4-6</link>
			<pubDate>Mon, 08 Mar 2010 22:12:01 +0000</pubDate>			<dc:creator>wayne</dc:creator>
			<category domain="main">News</category>			<guid isPermaLink="false">213@http://blogs.consultantsguild.com/</guid>
						<description>&lt;p&gt;All &lt;a title=&quot;hosted bugzilla service by devZing&quot; href=&quot;http://devzing.com/bugzilla.php&quot; target=&quot;_blank&quot;&gt;Bugzilla instances&lt;/a&gt; have been updated to 3.4.6. You can read about all the changes &lt;a href=&quot;http://www.bugzilla.org/releases/3.4.6/release-notes.html&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt; or just the differences below.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;When doing a search that involves &quot;not equals&quot; or &quot;does not contain the string&quot; or similar &quot;negative&quot; search types, the search description that appears at the top of the resulting bug list will indicate that the search was of that type. (&lt;a href=&quot;https://bugzilla.mozilla.org/show_bug.cgi?id=474738&quot;&gt;Bug 474738&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;In Internet Explorer, users couldn&#039;t easily mark a RESOLVED DUPLICATE bug as REOPENED, due to a JavaScript error. (&lt;a href=&quot;https://bugzilla.mozilla.org/show_bug.cgi?id=546719&quot;&gt;Bug 546719&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;If you use a &quot;bookmarkable template&quot; to pre-fill forms on the bug-filing page, and you have custom fields that are only supposed to appear (or only supposed to have certain values) based on the values of other fields, those custom fields will now work properly. (&lt;a href=&quot;https://bugzilla.mozilla.org/show_bug.cgi?id=538211&quot;&gt;Bug 538211&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;If you have a custom field that&#039;s only supposed to appear when a bug&#039;s resolution is FIXED, it will now behave properly on the bug-editing form when a user sets the bug&#039;s status to RESOLVED. (&lt;a href=&quot;https://bugzilla.mozilla.org/show_bug.cgi?id=520993&quot;&gt;Bug 520993&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;If you are logged-out and using &lt;kbd&gt;request.cgi&lt;/kbd&gt;, the Requester and Requestee fields no longer respect the &lt;kbd&gt;usermatching&lt;/kbd&gt; parameter--they always require full usernames. (&lt;a href=&quot;https://bugzilla.mozilla.org/show_bug.cgi?id=533018&quot;&gt;Bug 533018&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;If you tried to do a search with too many terms (resulting in a URL that was longer than about 7000 characters), Apache would return a 500 error instead of your search results. (&lt;a href=&quot;https://bugzilla.mozilla.org/show_bug.cgi?id=513989&quot;&gt;Bug 513989&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;Bugzilla would sometimes lose fields from your sort order when you added new fields to your sort order. (&lt;a href=&quot;https://bugzilla.mozilla.org/show_bug.cgi?id=470214&quot;&gt;Bug 470214&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;The Atom format of search results would sometimes be missing the Reporter or Assignee field for some bugs. (&lt;a href=&quot;https://bugzilla.mozilla.org/show_bug.cgi?id=537834&quot;&gt;Bug 537834&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;table style=&quot;text-align: left;&quot; border=&quot;0&quot;&gt;
&lt;tbody&gt;
&lt;tr align=&quot;center&quot; valign=&quot;middle&quot;&gt;
&lt;td&gt;
&lt;div class=&quot;image_block&quot;&gt;&lt;a href=&quot;http://devZing.com/&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://devzing.com/blog/media/blogs/devzing/logo.png&quot; alt=&quot;&quot; width=&quot;109&quot; height=&quot;44&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/td&gt;
&lt;td&gt;No Hassle Open Source Project Management Hosting&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://blogs.consultantsguild.com/index.php/news/2010/03/08/bugzilla-updated-to-3-4-6&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>All <a title="hosted bugzilla service by devZing" href="http://devzing.com/bugzilla.php" target="_blank">Bugzilla instances</a> have been updated to 3.4.6. You can read about all the changes <a href="http://www.bugzilla.org/releases/3.4.6/release-notes.html" target="_blank">here</a> or just the differences below.</p>
<ul>
<li>When doing a search that involves "not equals" or "does not contain the string" or similar "negative" search types, the search description that appears at the top of the resulting bug list will indicate that the search was of that type. (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=474738">Bug 474738</a>)</li>
<li>In Internet Explorer, users couldn't easily mark a RESOLVED DUPLICATE bug as REOPENED, due to a JavaScript error. (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=546719">Bug 546719</a>)</li>
<li>If you use a "bookmarkable template" to pre-fill forms on the bug-filing page, and you have custom fields that are only supposed to appear (or only supposed to have certain values) based on the values of other fields, those custom fields will now work properly. (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=538211">Bug 538211</a>)</li>
<li>If you have a custom field that's only supposed to appear when a bug's resolution is FIXED, it will now behave properly on the bug-editing form when a user sets the bug's status to RESOLVED. (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=520993">Bug 520993</a>)</li>
<li>If you are logged-out and using <kbd>request.cgi</kbd>, the Requester and Requestee fields no longer respect the <kbd>usermatching</kbd> parameter--they always require full usernames. (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=533018">Bug 533018</a>)</li>
<li>If you tried to do a search with too many terms (resulting in a URL that was longer than about 7000 characters), Apache would return a 500 error instead of your search results. (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=513989">Bug 513989</a>)</li>
<li>Bugzilla would sometimes lose fields from your sort order when you added new fields to your sort order. (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470214">Bug 470214</a>)</li>
<li>The Atom format of search results would sometimes be missing the Reporter or Assignee field for some bugs. (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=537834">Bug 537834</a>)</li>
</ul>
<table style="text-align: left;" border="0">
<tbody>
<tr align="center" valign="middle">
<td>
<div class="image_block"><a href="http://devZing.com/" target="_blank"><img src="http://devzing.com/blog/media/blogs/devzing/logo.png" alt="" width="109" height="44" /></a></div>
</td>
<td>No Hassle Open Source Project Management Hosting</td>
</tr>
</tbody>
</table><div class="item_footer"><p><small><a href="http://blogs.consultantsguild.com/index.php/news/2010/03/08/bugzilla-updated-to-3-4-6">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://blogs.consultantsguild.com/index.php/news/2010/03/08/bugzilla-updated-to-3-4-6#comments</comments>
			<wfw:commentRss>http://blogs.consultantsguild.com/index.php/news/?tempskin=_rss2&#38;disp=comments&#38;p=213</wfw:commentRss>
		</item>
				<item>
			<title>MantisBT 1.2.0 Released</title>
			<link>http://blogs.consultantsguild.com/index.php/news/2010/02/23/mantisbt-1-2-0-released</link>
			<pubDate>Tue, 23 Feb 2010 21:39:45 +0000</pubDate>			<dc:creator>wayne</dc:creator>
			<category domain="main">News</category>			<guid isPermaLink="false">212@http://blogs.consultantsguild.com/</guid>
						<description>&lt;p&gt;&lt;a href=&quot;http://www.mantisbt.org/blog/?p=76&quot; target=&quot;_blank&quot;&gt;MantisBT 1.2.0&lt;/a&gt; is finally out. We&#039;ll be starting the upgrade evaluation process shortly. In the meantime you can still get an instant activation trial to &lt;a href=&quot;http://devzing.com/mantisbt.php&quot; target=&quot;_blank&quot;&gt;MantisBT 1.1.8&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;div class=&quot;image_block&quot;&gt;&lt;a href=&quot;http://devzing.com/&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;/media/blogs/news/logo_twitter.png&quot; alt=&quot;&quot; width=&quot;73&quot; height=&quot;29&quot; /&gt;&lt;/a&gt; No Hassle Open Source Project Management Hosting&lt;/div&gt;
&lt;p&gt; &lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://blogs.consultantsguild.com/index.php/news/2010/02/23/mantisbt-1-2-0-released&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p><a href="http://www.mantisbt.org/blog/?p=76" target="_blank">MantisBT 1.2.0</a> is finally out. We'll be starting the upgrade evaluation process shortly. In the meantime you can still get an instant activation trial to <a href="http://devzing.com/mantisbt.php" target="_blank">MantisBT 1.1.8</a>.</p>
<p> </p>
<div class="image_block"><a href="http://devzing.com/" target="_blank"><img src="/media/blogs/news/logo_twitter.png" alt="" width="73" height="29" /></a> No Hassle Open Source Project Management Hosting</div>
<p> </p><div class="item_footer"><p><small><a href="http://blogs.consultantsguild.com/index.php/news/2010/02/23/mantisbt-1-2-0-released">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://blogs.consultantsguild.com/index.php/news/2010/02/23/mantisbt-1-2-0-released#comments</comments>
			<wfw:commentRss>http://blogs.consultantsguild.com/index.php/news/?tempskin=_rss2&#38;disp=comments&#38;p=212</wfw:commentRss>
		</item>
			</channel>
</rss>
