<?xml version="1.0" encoding="utf-8"?>
				<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"
				 xmlns:annotate="http://purl.org/rss/1.0/modules/annotate/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
			    <channel> 
			    <generator>Filter Forge Site</generator> 
			    <title>www.filterforge.com - Bugs and Problems (Windows)</title> 
			    <description></description> 
			    <link>http://www.filterforge.com/forum/list.php?FID=8</link> 
			    <language>en</language> 
			    <webMaster>support@filterforge.com</webMaster> 
			    <copyright>(C) 2006</copyright> 
			    <pubDate>Wed, 22 May 2013 17:47:57 -0400</pubDate> 
			    <lastBuildDate>Wed, 22 May 2013 17:47:57 -0400</lastBuildDate> 
			    <item><title>Filter Forge 3 and PS CS6 extended 64 bit</title> 
		             <dc:creator>jhantares</dc:creator> 
		             <category></category> 
		             <pubDate>Wed, 15 May 2013 10:39:34 -0400</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11281</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11281</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;jhantares&lt;/b&gt;, &lt;em&gt;Wed, 15 May 2013 09:09:34 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;If I try to use filter forge 3 with Photoshop CS6 extended 64 bit I get the following error message &quot;&amp;lt;class XFW::ArgumentError&amp;gt; The handle 0024ACD0 is not a valid window handle.&quot;&lt;br /&gt;Does anyone know what's wrong?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Wed, 15 May 2013 10:39:34 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;jhantares, are you on Windows 8?&lt;/p&gt;
</description>
</item>
<item><title>Screen resolution and UI bug</title> 
		             <dc:creator>CFandM</dc:creator> 
		             <category></category> 
		             <pubDate>Mon, 06 May 2013 14:11:01 -0400</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11235</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11235</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;CFandM&lt;/b&gt;, &lt;em&gt;Mon, 06 May 2013 14:11:01 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I was messing with some screen sizes for some video tutorials and ran across this bug...It happens with both version 3 and 4.....It may have been reported as something else but unsure about that......&lt;br /&gt;There is one setting it seems to happen in 1024x768 with the results of the main window in the editor and the settings/preview window disappearing....&lt;br /&gt;I have made this &lt;a href='http://www.youtube.com/watch?v=ZRB_vcbNqhQ&amp;feature=youtu.be' target='_blank' rel='nofollow'&gt;UI BUG VIDEO&lt;/a&gt; for a better understanding of the issue..... :|&lt;/p&gt;
</description>
</item>
<item><title>unable to open exr from mudbox</title> 
		             <dc:creator>ronviers</dc:creator> 
		             <category></category> 
		             <pubDate>Wed, 01 May 2013 04:06:26 -0400</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11221</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11221</guid>
		             <description><script>
if (phpVars == null || typeof(phpVars) != "object")
{
	var phpVars = {
		'ADMIN_THEME_ID': '.default',
		'titlePrefix': 'Filter Forge - '};
}

window.onForumImageLoad = function(oImg, w, h, family, oImg1)
{
	if (typeof oImg == "string")
	{
		oImg = document.getElementById(oImg);
	}
	if (oImg == null || typeof oImg != "object")
	{
		return false;
	}
	
	family = (family && family.length > 0 ? family : "");
    var img = {'width' : 0, 'height' : 0};
    
	if (oImg.naturalWidth)
	{
		img['width'] = oImg.naturalWidth;
		img['height'] = oImg.naturalHeight;
	}
	else
	{
		img['width'] = oImg.width;
		img['height'] = oImg.height;
	}
	var k = 1;
	w = parseInt(w);
	w = (w > 0 ? w : 100);
	h = parseInt(h);
	
	
	if (h <= 0 && img['width'] > w)
	{
    	k = w/img['width'];
	}
	else if (h > 0 && (img['width'] > w || h > img['height']))
	{
		if (img['width'] <= 0)
			k = h/img['height'];
		else
			k = Math.min(w/img['width'], h/img['height']);
	}
	
	if (0 < k && k < 1)
	{
        oImg.style.cursor = 'pointer';
        oImg.onclick = new Function("onForumImageClick(this, '" + img['width'] + "', '" + img['height'] + "', '" + family +"')");
        if (h > 0)
        {
	        var width = parseInt(img['width'] * k);
	        var height = parseInt(img['height'] * k);
	        oImg.width = width;
	        oImg.height = height;
        }
	}
}
window.onForumImageClick = function(oImg, w, h, family)
{
	if (oImg == null || typeof oImg != "object")
		return false;

	w = (w <= 0 ? 100 : w);
	h = (h <= 0 ? 100 : h);
	family = (family && family.length > 0 ? family : "");
	var div = null;
	var id = 'div_image' + (family.length > 0 ? family : oImg.id);
	if (family.length > 0)
	{
		div = document.getElementById(id);
		if (div != null && typeof div == "object")
			div.parentNode.removeChild(div);
	}
	div = document.createElement('div');
	div.id = id;
	div.className = 'forum-popup-image';
	div.style.position = 'absolute';
	div.style.width = w + 'px';
	div.style.height = h + 'px';
	div.style.zIndex = 80;
	div.onclick = function(){
		jsFloatDiv.Close(this);
		this.parentNode.removeChild(this);};
	
	var pos = {};
	var res = jsUtils.GetRealPos(oImg);
	var win = jsUtils.GetWindowScrollPos();
	var win_size = jsUtils.GetWindowInnerSize();
	var img = new Image();
	var div1 = document.createElement('div');
	
	pos['top'] = parseInt(res['top'] + oImg.offsetHeight/2 - h/2);
	if ((parseInt(pos['top']) + parseInt(h)) > (win['scrollTop'] + win_size['innerHeight']))
	{
		pos['top'] = (win['scrollTop'] + win_size['innerHeight'] - h - 10);
	}
	if (pos['top'] <= win['scrollTop'])
	{
		pos['top'] = win['scrollTop'] + 10;
	}
	
	pos['left'] = parseInt(res['left'] + oImg.offsetWidth/2 - w/2);
	pos['left'] = (pos['left'] <= 0 ? 10 : pos['left']);
	
	div1.style.left = (w - 14) + "px";
	div1.style.top = "0px";
	
	div1.className = 'empty';
	div1.style.zIndex = 82;
	div1.style.position = 'absolute';
	div1.style
	div.appendChild(div1);
	
	img.width = w;
	img.height = h;
	img.style.cursor = 'pointer';
	img.src = oImg.src;
	
	div.appendChild(img);
	document.body.appendChild(div);
	jsFloatDiv.Show(div, pos['left'], pos['top']);
}

function onForumImagesLoad()
{
	if (oForumForm && oForumForm['images_for_resize'] && oForumForm['images_for_resize'].length > 0)
	{
		for (var ii = 0; ii < oForumForm['images_for_resize'].length; ii++)
		{
			var img = document.getElementById(oForumForm['images_for_resize'][ii]);
			if (img != 'null' && img && img.tagName == "IMG")
			{
				img.onload();
			}
		}
	}
}
if (jsUtils.IsIE())
{
	jsUtils.addEvent(window, "load", onForumImagesLoad);
}
if (typeof oForumForm != "object")
	var oForumForm = {};
oForumForm['images_for_resize'] = [];
</script>
<script>oForumForm['images_for_resize'].push('popup_682499093');</script>
&lt;p&gt;&lt;small&gt;&lt;b&gt;ronviers&lt;/b&gt;, &lt;em&gt;Tue, 30 Apr 2013 15:15:51 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;if i try to open this file:&lt;br /&gt;&lt;a href='https://docs.google.com/file/d/0B8IsVsWJ181uMldXUGtZeXRjNjg/edit?usp=sharing' target='_blank' rel='nofollow'&gt;https://docs.google.com/file/d/0B8IsVs...sp=sharing&lt;/a&gt;&lt;br /&gt;i get this error:&lt;br /&gt;&lt;img src='https://lh6.googleusercontent.com/-phQOEuy68ek/UYAXIamQmyI/AAAAAAAAH_s/pwCG_wro_tw/s800/ff_error.png'  alt='Image' onload=&quot;try{window.onForumImageLoad(this, '300', '300', 'FORUM');}catch(e){}&quot;  id='popup_682499093' border='0' /&gt;&lt;br /&gt;&lt;br /&gt;The file was created using an ambient occlusion map extration operation in mudbox v2014. If i do a displacement map extraction with the same settings ff is able to open the file.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This version of mudbox has just been released so it's possible that the problem lies with autodesk, but i am able to open the file using adobe bridge and ps cs5.&lt;br /&gt;&lt;br /&gt;thanks:)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Wed, 01 May 2013 03:42:00 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Ronviers, our tester isn't in the office these days so it may take a while to look into your issue. Meanwhile please try resaving this file in CS5 and then open it in FF.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;ronviers&lt;/b&gt;, &lt;em&gt;Wed, 01 May 2013 04:06:26 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Tried your suggestion, ff will load the file if i do a 'save as' from cs5. Plus, i have a workaround using my compositor that works too, so no hurry about a fix.&lt;br /&gt;&lt;br /&gt;thanks:)&lt;/p&gt;
</description>
</item>
<item><title>Opening an Image</title> 
		             <dc:creator>annie57</dc:creator> 
		             <category></category> 
		             <pubDate>Thu, 25 Apr 2013 18:13:25 -0400</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11214</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11214</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;annie57&lt;/b&gt;, &lt;em&gt;Wed, 24 Apr 2013 20:23:29 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I recently purchased Filter Forge-Standard Edition, so I am new to the product. &lt;br /&gt;&lt;br /&gt;I am using it with Photoshop CS6. So, to access Filter Forge, I have to open an image. My question is when I am in Filter Forge and want to use a texture, some the video tutorials that I am watching are asking me to open an image. When I go to File, New Image, it is grayed out. I am not understanding how you open an image and use a filter with it at the same time? In the video tutorials, it appears that Filter Forge is a stand alone application.&lt;br /&gt;&lt;br /&gt;I would appreciate any help or suggestions anybody might have as I feel a bit confused.&lt;br /&gt;&lt;br /&gt;Thanks&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Skybase&lt;/b&gt;, &lt;em&gt;Thu, 25 Apr 2013 01:02:08 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;You're using FilterForge as a plugin, where if you have an image open in Photoshop, FilterForge will automatically load the image which is why the open menu is grayed out.&lt;br /&gt;&lt;br /&gt;FilterForge used as a standalone program will let you open image files right within the program.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;annie57&lt;/b&gt;, &lt;em&gt;Thu, 25 Apr 2013 18:13:25 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Thank you. Still have so much to understand about this program.&lt;/p&gt;
</description>
</item>
<item><title>Filter doesn't cover entire photograph</title> 
		             <dc:creator>HangtownGal</dc:creator> 
		             <category></category> 
		             <pubDate>Tue, 09 Apr 2013 00:51:10 -0400</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11196</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11196</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;HangtownGal&lt;/b&gt;, &lt;em&gt;Mon, 08 Apr 2013 19:04:09 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I have a photograph that's 6 x 4.5 with a resolution of 240. I've tried to run the Watercolor Painting filter in both FF3 and FF4 and it covers a 6 x 4 area only. Before reducing the size of the photo I had the same problem - a strip along the bottom edge is still the original photo.&lt;br /&gt;&lt;br /&gt;Any help will be appreciated,&lt;br /&gt;&lt;br /&gt;Carole&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Mardar&lt;/b&gt;, &lt;em&gt;Mon, 08 Apr 2013 20:10:47 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hi Carole,and welcome to the forum. :) &lt;br /&gt;&lt;br /&gt;Which Watercolor filter are you using? Who is the maker? There are several watercolor filters on the site. We can try it out if we know which filter. Also are you using Filter Forge inside another program or as a stand alone? ;)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;HangtownGal&lt;/b&gt;, &lt;em&gt;Tue, 09 Apr 2013 00:34:11 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I'm using FF3 in Photoshop CS6. The filter is called Watercolor Painting by Kochubey.  I just tried it again on a different photo and it worked just fine. So, I tried it again on the original photo and it worked this time. Didn't do anything different. Strange.&lt;br /&gt;&lt;br /&gt;Thanks for trying to help. I appreciate it.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Mardar&lt;/b&gt;, &lt;em&gt;Tue, 09 Apr 2013 00:51:10 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Great! Glad it is working now. Must have been one of those computer gremlins.LOL :D&lt;/p&gt;
</description>
</item>
<item><title>Program Won't Open</title> 
		             <dc:creator>hlee</dc:creator> 
		             <category></category> 
		             <pubDate>Thu, 21 Mar 2013 17:27:51 -0400</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11001</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11001</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;hlee&lt;/b&gt;, &lt;em&gt;Fri, 15 Feb 2013 11:11:53 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I've had the trial version for a few weeks. About 5 or 6 days into the trial, I tried downloading/using the 4.0 beta version. It didn't want to open. I get this message&amp;gt;&amp;gt; Filter Forge has encountered a problem and needs to close. Since then, I have since then uninstalled, completely deleted everything, &amp; started from scratch,again, but nothing has worked.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Grange&lt;/b&gt;, &lt;em&gt;Thu, 21 Mar 2013 17:27:51 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;you're lucky, I get nothing at all, no message, no program in standalone or paintshop&lt;/p&gt;
</description>
</item>
<item><title>QUOTE not working in forum when clicking in a post to copy the text</title> 
		             <dc:creator>SpaceRay</dc:creator> 
		             <category></category> 
		             <pubDate>Wed, 20 Mar 2013 06:34:15 -0400</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=8940</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=8940</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Sat, 15 Oct 2011 18:49:49 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Please, does anybody else have problems with the QUOTE when clicking on a post and nothing happens?&lt;br /&gt;&lt;br /&gt;I mean it does not work, and does not copy the text to the answer writing the name of the original writer.&lt;br /&gt;&lt;br /&gt;I have tried to use different browsers but always have the same error, I mean, I am unable to make it work.&lt;br /&gt;&lt;br /&gt;If this is an error of the forum, could please someone from FF Inc. website maintenance be so kind and help to fix and repair it, would be great.&lt;br /&gt;&lt;br /&gt;Now I have to copy and paste the text and add the QUOTE and write the name of author.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Mon, 17 Oct 2011 03:28:22 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;We failed to reproduce this. Quotes work correctly for us :)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Mon, 17 Oct 2011 05:35:12 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;OK, Thanks for your answer, and so I can know that at least it works on your side.&lt;br /&gt;&lt;br /&gt;Please, What browser have you tested it on ?&lt;br /&gt;&lt;br /&gt;I will make some tests and then will tell you how you can probably reproduce this error.&lt;br /&gt;&lt;br /&gt;In this moment writing this post I am using Google Chrome browser 14.0.835.202 m&lt;br /&gt;and it tells me that this is the latest and newest version.&lt;br /&gt;&lt;br /&gt;In Google Chrome the quotes does not work for me. Please could you be so kind to check if on your side quotes on chrome work ?&lt;br /&gt;&lt;br /&gt;Thanks very much.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Carl&lt;/b&gt;, &lt;em&gt;Mon, 17 Oct 2011 07:32:33 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Quotes don't work in IE 9 either ;)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sphinx.&lt;/b&gt;, &lt;em&gt;Mon, 17 Oct 2011 07:46:18 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Quoting never worked properly in Chrome, it has been reported long ago (&lt;a href='http://filterforge.com/forum/read.php?FID=9&amp;TID=7544&amp;MID=86085&amp;sphrase_id=655767#message86085' target='_blank' rel='nofollow'&gt;click me&lt;/a&gt; and &lt;a href='http://filterforge.com/forum/read.php?FID=5&amp;TID=7848&amp;MID=89011&amp;sphrase_id=655773#message89011' target='_blank' rel='nofollow'&gt;me&lt;/a&gt;). My guess is that the code uses some non-conform old IE functionality (haven't checked though).&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Mon, 17 Oct 2011 08:31:38 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;You're right: quotes seem to be broken in Chrome (but they work in the compatibility mode in IE 9). We'll consider updating the forum engine.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Fri, 21 Oct 2011 15:46:51 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Carl wrote:&lt;/b&gt; &lt;br /&gt;&lt;br /&gt;Quotes don't work in IE 9 either&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;br /&gt;&lt;br /&gt;Is true, In IE 9 does not work either in 32 bit version or 64 bit version.&lt;br /&gt;&lt;br /&gt;And I have tried also in Opera browser 11.0 and also does NOT work&lt;br /&gt;&lt;br /&gt;I still have to try on Firefox&lt;br /&gt;&lt;br /&gt;&lt;b&gt;So for now QUOTES DO NOT WORK IN:&lt;br /&gt;&lt;br /&gt;Google Chrome 14&lt;br /&gt;Internet Explorer 9&lt;br /&gt;Opera 11&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;GMM wrote:&lt;/b&gt; &lt;br /&gt;&lt;br /&gt;You're right: quotes seem to be broken in Chrome (but they work in the compatibility mode in IE 9).&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Well, I do not know how you have done it, but I have activated the compatibility mode in IE 9 and I am sorry to say that it continues the same NOT working, at least for me.&lt;br /&gt;&lt;br /&gt;Please, could you explain how you have made it work and tell which IE 9 version are you using ? &lt;br /&gt;&lt;br /&gt;I attached an image here of the version I have now&lt;br /&gt;&lt;br /&gt; &lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;GMM wrote:&lt;/b&gt; &lt;br /&gt;&lt;br /&gt;We'll consider updating the forum engine. &lt;br /&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Yes please, it would be a good thing that this could be fixed&lt;br /&gt;&lt;br /&gt;Thanks very much&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Tue, 25 Oct 2011 13:32:40 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;b&gt;SELECT THE TEXT OF THE POST &lt;u&gt;BEFORE&lt;/u&gt; CLICK ON &quot;QUOTE&quot; BOTTOM RIGHT OF THE POST AND &lt;u&gt;QUOTES WILL WORK RIGHT&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;I have found a very interesting and curious thing, the Quotes do NOT work if you try to copy automatically ALL the text of the post as it happens on other forums, BUT it works well and right if you select a part (or whole) of the text of the post and then after click over quote in the bottom right, and it copies the selected text to the reply post.&lt;br /&gt;&lt;br /&gt;I have tried it Internet Explorer 9 and Opera and &lt;b&gt;IT WORKS &lt;/b&gt;this way. &lt;br /&gt;&lt;br /&gt;So you can´t automatically click over &quot;quote&quot; but I think that I don´t mind and it´s not a problem to select the TEXT you want to quote BEFORE making click over &quot;Quote&quot; link.&lt;br /&gt;&lt;br /&gt;So, I think that this is a very good solution that probably solves this problem.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Wed, 26 Oct 2011 08:52:29 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;SpaceRay wrote:&lt;/b&gt;&lt;br /&gt;So you can´t automatically click over &quot;quote&quot; but I think that I don´t mind and it´s not a problem to select the TEXT you want to quote BEFORE making click over &quot;Quote&quot; link. &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;I always thought this is the intended way to use quotes :) Generally you want to quote something specific, not the whole post.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Carl&lt;/b&gt;, &lt;em&gt;Thu, 27 Oct 2011 03:38:45 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;GMM wrote:&lt;/b&gt;&lt;br /&gt;but they work in the compatibility mode in IE 9)&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;yeah that works for me now :)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Tue, 08 Nov 2011 13:00:11 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Sorry to put this again and I thought that this was already solved&lt;br /&gt;&lt;br /&gt;&lt;b&gt;BUT Quotes still DO NOT WORK in Chrome 11 Browser  :?: &lt;/b&gt; &lt;br /&gt;&lt;br /&gt;Any idea why this is happening ? Anyone else with Chrome browser happens the same?&lt;br /&gt;&lt;br /&gt;It works in Opera 11 and IE 9 with compatibility mode if you select the text before BUT not in Chrome browser either you select the text or not.&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;GMM wrote:&lt;/b&gt; &lt;br /&gt;&lt;br /&gt;I always thought this is the intended way to use quotes.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Well, I am and have been in many other forums and the most used way to use quotes is to click on the &quot;quotes&quot; icon or link and ALL the post is copied to the reply with the name, and you do not have to select anything.&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;GMM wrote:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Generally you want to quote something specific, not the whole post.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;YES, is true, and this is the best way to do it, because as you say, usually you want to quote something specific and NOT the whole post, BUT it seems that the software of some forums is configured that way and you can´t select a part, must click on the quote link and copy all, and then delete what is not needed.&lt;br /&gt;&lt;br /&gt;So I agree that is much better to use the quote selecting the text BEFORE clicking on quotes link.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sign Guy&lt;/b&gt;, &lt;em&gt;Thu, 19 Apr 2012 07:51:16 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;The quote feature no longer works for me either by clicking &quot;Quote&quot; or selecting text first and then clicking Quote. My browser is Firefox 11 which is currently the latest version.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Morgantao&lt;/b&gt;, &lt;em&gt;Thu, 19 Apr 2012 09:29:11 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;On my machine the Quote has never worked...  I have IE9, FireFox and Chrome, all lates versions.&lt;br /&gt;Instead, I just fake it  :D&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;CorvusCroax&lt;/b&gt;, &lt;em&gt;Thu, 19 Apr 2012 17:43:53 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Yes, I have the same problem. (I use chrome.)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Thu, 19 Apr 2012 19:54:17 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;SInce the last time that worked on some browser, then it broke again and since then, I always fake it and copy the name and after I write &quot;wrote&quot; and so it seems like it works for me but it does not, it is a FAKE quote  :(&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Morgantao&lt;/b&gt;, &lt;em&gt;Fri, 20 Apr 2012 01:55:44 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;We sound like a bunch of married women  ;)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Fri, 01 Mar 2013 14:49:30 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;b&gt;Please, does the &quot;Quote&quot; button is working for anyone? &lt;/b&gt;&lt;br /&gt;&lt;br /&gt;In some post above here one year ago, I wrote this&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;SELECT THE TEXT OF THE POST BEFORE CLICK ON &quot;QUOTE&quot; BOTTOM RIGHT OF THE POST AND QUOTES WILL WORK RIGHT &lt;br /&gt;&lt;br /&gt;I have found a very interesting and curious thing, the Quotes do NOT work if you try to copy automatically ALL the text of the post as it happens on other forums, BUT it works well and right if you select a part (or whole) of the text of the post and then after click over quote in the bottom right, and it copies the selected text to the reply post.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;br /&gt;&lt;br /&gt;Well I have tried this again many times in many browsers and &lt;b&gt;it does not work&lt;/b&gt; and of course that clicking on the button without selecting the text does not work either.  :( &lt;br /&gt;&lt;br /&gt;&lt;b&gt;so it does not work in any browser I tried (chrome, Firefox, IE, Safari, Opera)&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Please, will it be ever be fixed or is not possible?  :?: &lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Since many months ago I have to always copy and paste by hand all the text and name and configure the quotes myself&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Wed, 06 Mar 2013 03:14:09 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Sorry to ask again, but I have tried it again to test some more and it does not work in any way, and I do not know if this is a problem of the forum software, or is because of windows 7, and perhaps works on windows 8, or if it works on MacOS, or another possible reason&lt;br /&gt;&lt;br /&gt;Please, can´t this be fixed?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Wed, 06 Mar 2013 04:57:54 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I'm afraid our CMS is, uhm, a bit outdated.&lt;br /&gt;Though quotes should work in older browser versions like Firefox 3 or IE 7...&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Wed, 06 Mar 2013 05:13:25 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;GMM&lt;br /&gt;&lt;br /&gt;I'm afraid our CMS is, uhm, a bit outdated. &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Thanks for answering GMM, so the problem is with the forum CMS, and the question is:&lt;br /&gt;&lt;br /&gt;Would it very hard and very difficult to update it and so fix the quotes and they could work on recent and newer browsers?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Wed, 20 Mar 2013 05:42:59 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I know that you may be very busy with the Beta 2 and now continue working hard for Beta 3, but would be possible to know if there could be a fix for this forum quotes problem?&lt;br /&gt;&lt;br /&gt;Thanks very much&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Vladimir Golovin&lt;/b&gt;, &lt;em&gt;Wed, 20 Mar 2013 05:52:00 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;We remember. Please don't bump.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Wed, 20 Mar 2013 06:00:58 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;We remember. Please don't bump.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;First, sorry for bumping this again &lt;br /&gt;&lt;br /&gt;But, I agree that you may remember, but this does not mean that you may want to fix or not, or if you are going to do it, so to avoid to bump threads, it would be good to just put simply:&lt;br /&gt;&lt;br /&gt;&quot;we are working on it&quot;&lt;br /&gt;&lt;br /&gt;&quot;we will fix it when we can&quot; &lt;br /&gt;&lt;br /&gt;&quot;we will be working on it and see what we can do when we can&quot; &lt;br /&gt;&lt;br /&gt;or if you do not want or can´t fix it&lt;br /&gt;&lt;br /&gt;&quot;Sorry, that we can´t fix it&quot;&lt;br /&gt;&lt;br /&gt;&quot;we can´t work on it in this moment, and will fix it later&quot;&lt;br /&gt;&lt;br /&gt;and so I would know that you already know it and know that you will sometime be able to fix it, and will be patiently wait until sometime this is fixed without bumping this again, because from the comments from GMM there is no proof that this is going to be done or fixed.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Vladimir Golovin&lt;/b&gt;, &lt;em&gt;Wed, 20 Mar 2013 06:07:35 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&quot;we are working on it&quot; &lt;br /&gt;&lt;br /&gt;&quot;we will fix it when we can&quot; &lt;br /&gt;&lt;br /&gt;&quot;we will be working on it and see what we can do when we can&quot; &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Wed, 20 Mar 2013 06:34:15 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Thanks very much Vladimir, and sorry again, I will wait until you may be able to fix when is possible.&lt;/p&gt;
</description>
</item>
<item><title>Submission error</title> 
		             <dc:creator>voldemort</dc:creator> 
		             <category></category> 
		             <pubDate>Wed, 20 Mar 2013 04:34:04 -0400</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11129</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11129</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;voldemort&lt;/b&gt;, &lt;em&gt;Mon, 18 Mar 2013 12:48:47 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I will be replying with a copy of the filter in question that generates this error&lt;br /&gt;I have looked carefully over the components and controls to see if there was any conflict I even reset presets that had values beyond 2 decimal points etc. Any ideas or help would be greatly appreciated. I have several snippets I was hoping to upload but was hoping to resolve this first&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;voldemort&lt;/b&gt;, &lt;em&gt;Mon, 18 Mar 2013 12:49:29 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;here is the filter in question&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;voldemort&lt;/b&gt;, &lt;em&gt;Mon, 18 Mar 2013 12:59:37 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;This one is giving same error ????&lt;br /&gt;Im at a loss folks&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;voldemort&lt;/b&gt;, &lt;em&gt;Mon, 18 Mar 2013 13:11:10 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Might have fixed Progressive_snippet i missed a warning on one control thought i had checked them all I will look over the swirl one again&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;voldemort&lt;/b&gt;, &lt;em&gt;Mon, 18 Mar 2013 13:18:13 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Interesting I made no changes to the swirl one but after 3 previous tries that didnt work it works now????&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Wed, 20 Mar 2013 04:34:04 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Voldemort, I assume everything works for you now?&lt;/p&gt;
</description>
</item>
<item><title>Filter download problem</title> 
		             <dc:creator>lgs</dc:creator> 
		             <category></category> 
		             <pubDate>Wed, 20 Mar 2013 03:19:03 -0400</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11144</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11144</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;lgs&lt;/b&gt;, &lt;em&gt;Wed, 20 Mar 2013 00:19:45 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Have just recently installed FF3. With the program open, on the desktop, when I go to the filter library and attempt to download a filter (open filter command), I immediately get a non stop stream of http addresses running across the top, until Firefox crashes. ??? What's up with that?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Wed, 20 Mar 2013 03:19:03 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Is curious, I have not seen or remember that this has happened before.&lt;br /&gt;&lt;br /&gt;Have you tried to use any other different browsers apart from Firefox?&lt;br /&gt;&lt;br /&gt;I mean Opera, Chrome, Safari, internet explorer....&lt;br /&gt;&lt;br /&gt;Also what version of Firefox are you using?&lt;br /&gt;&lt;br /&gt;I have put also this thread for suggestions for possible fixes in downloading filters problems&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.filterforge.com/forum/read.php?FID=8&amp;TID=9427' target='_blank' rel='nofollow'&gt;Before Posting an error downloading FF filters PLEASE see this thread&lt;/a&gt;&lt;/p&gt;
</description>
</item>
<item><title>Duplicate Filter Comments (Forum Bug)</title> 
		             <dc:creator>Indigo Ray</dc:creator> 
		             <category></category> 
		             <pubDate>Mon, 18 Mar 2013 05:25:17 -0400</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11115</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11115</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;Indigo Ray&lt;/b&gt;, &lt;em&gt;Sat, 16 Mar 2013 09:37:53 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;My most recent filter has two different comment threads.&lt;br /&gt;&lt;a href='http://www.filterforge.com/forum/read.php?FID=11&amp;TID=11061' target='_blank' rel='nofollow'&gt;#1&lt;/a&gt;&lt;br /&gt;&lt;a href='http://www.filterforge.com/forum/read.php?FID=11&amp;TID=11114' target='_blank' rel='nofollow'&gt;#2&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If you examine the &lt;a href='http://filterforge.com/filters/11264.html' target='_blank' rel='nofollow'&gt;filter page&lt;/a&gt;, there are (0) filter comments, yet in link #1, Xirja and I both posted. If you click on &quot;comments (0)&quot;, you instead see link #2.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Mon, 18 Mar 2013 05:25:17 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I'm afraid we can do little about it. I've closed the wrong topic.&lt;/p&gt;
</description>
</item>
<item><title>Stuck Initializing</title> 
		             <dc:creator>Carl</dc:creator> 
		             <category></category> 
		             <pubDate>Fri, 15 Mar 2013 05:49:21 -0400</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11095</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11095</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;Carl&lt;/b&gt;, &lt;em&gt;Wed, 13 Mar 2013 04:26:21 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Tried different filters and reduced size of image, waited over night [ gave it 11 hours still just initializing ] etc etc ....... it just gets stuck in initializing [ FF3 ] ..... obviously no bug report generated as I have to terminate manually .......I realize reinstalling is going to be the suggestion made, if I uninstall FF3 will I also be deleting all my filters? Have a Murial size print for a wall in a recording studio [ I have a small version of 5000 by 6800 but it's not big enough for the print size ] that I have a deadline for so please respond sooner rather than later.&lt;br /&gt;And even though I'm trying to render a 12000 it stuck on any size / can FF not render 12000 and I broke FF3 in trying    ..... help, help ... oh look a little tear&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Carl&lt;/b&gt;, &lt;em&gt;Thu, 14 Mar 2013 18:44:06 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;thanks for skipping over my question GMM, I realize it would have taken you at least a minute to answer, customer service shines through yet again&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Fri, 15 Mar 2013 05:31:44 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Of course it's better to whine on the forums than try to &lt;a href='http://www.filterforge.com/forum/read.php?FID=8&amp;TID=3957' target='_blank' rel='nofollow'&gt;reach our customer support&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Carl&lt;/b&gt;, &lt;em&gt;Fri, 15 Mar 2013 05:49:21 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I wouldn't need to &quot;whine&quot; if you'd just answered the question, instead of skipping over it or waiting a week for customer support to maybe answer, as there previous record has shown .... you still didn't answer the simple question which would have taken the same amount of words as your smartarse &quot;whine answer&quot;, this is the &quot;Bugs and Problems&quot; section isn't?&lt;/p&gt;
</description>
</item>
<item><title>Submission Error</title> 
		             <dc:creator>Burt</dc:creator> 
		             <category></category> 
		             <pubDate>Tue, 12 Mar 2013 11:22:37 -0400</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11093</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11093</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;Burt&lt;/b&gt;, &lt;em&gt;Mon, 11 Mar 2013 18:59:44 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I am having the issue described here &lt;a href='http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10846' target='_blank' rel='nofollow'&gt;http://www.filterforge.com/forum/read...&amp;TID=10846&lt;/a&gt; when I try to submit. I have FF3.0 with the latest update. I checked and don't see any controls with warnings on them. I submitted a copy of the filter to support a few days ago but while I am waiting on a response thought I'd ask here. The filter is fairly large so rebuilding it is something I would like to avoid. I figured I'd ask here in case anyone has any suggestions of things to try before I hear back. &lt;br /&gt;&lt;br /&gt;Also I have a much smaller filter I tried to upload twice today with the same error. The third time I tried it went successfully. I tried the big filter 4 times though and still no good.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Tue, 12 Mar 2013 06:27:42 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Please attach the filter in question here.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Burt&lt;/b&gt;, &lt;em&gt;Tue, 12 Mar 2013 08:51:51 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Here you go. Thanks.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Tue, 12 Mar 2013 09:34:46 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Your IntSlider named Rock Angle has a gray note - similar to the issue in &lt;a href='http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10846' target='_blank' rel='nofollow'&gt;the other thread&lt;/a&gt;. Modify the IntSlider settings to remove the note, or wait until we release the 3.013 version.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Burt&lt;/b&gt;, &lt;em&gt;Tue, 12 Mar 2013 10:12:02 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I am using 3.013 which is why I thought it was fixed - or so my program says.&lt;br /&gt;&lt;br /&gt;Sorry about the gray note. I was looking for the little red warning and also checked each control  - but the error was on the remapped settings. Trying to upload now. Thanks.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Burt&lt;/b&gt;, &lt;em&gt;Tue, 12 Mar 2013 10:25:20 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Skip it. Found the error. Uploading it now.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Tue, 12 Mar 2013 11:02:33 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Sorry, I meant 3.014 which is to be released soon.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Burt&lt;/b&gt;, &lt;em&gt;Tue, 12 Mar 2013 11:22:37 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Thank you the upload was successful.&lt;/p&gt;
</description>
</item>
<item><title>Too Many Bug Reports</title> 
		             <dc:creator>Colorblast</dc:creator> 
		             <category></category> 
		             <pubDate>Sun, 03 Mar 2013 20:16:09 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10796</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10796</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;Colorblast&lt;/b&gt;, &lt;em&gt;Sat, 05 Jan 2013 19:54:58 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I have never come across so many bug reports in my life as I am with this program.  Every time I find a fantastic effect or frame and try to save it to my image, it just keeps generating bug reports.  Love it.  I've tried reinstalling the filter, restarting my PC, and nothing.  Just the same Bl**dy bug reports.  Does anyone else have this experience or is it just me?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Mojo3&lt;/b&gt;, &lt;em&gt;Wed, 09 Jan 2013 08:18:03 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hey Colorblast,&lt;br /&gt;&lt;br /&gt;I am a new user of Filter Forge. I started using the version 4 standalone (beta)&lt;br /&gt;and I actually find that version very stable, especially for a beta.&lt;br /&gt;&lt;br /&gt;I have hunted bugs as a challenge to try to get the version 4 for free,&lt;br /&gt;and I can tell you that I had a hard time finding any bug at all, even&lt;br /&gt;easy stuff like spelling mistakes...&lt;br /&gt;&lt;br /&gt;Hope that helps!&lt;br /&gt;&lt;br /&gt;Cya&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Skybase&lt;/b&gt;, &lt;em&gt;Wed, 09 Jan 2013 10:22:25 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;It kinda goes a bit crazy on me once in a while, but not too often that I just can't use it. I think FilterForge to begin with is a pretty complex piece of program so I can understand the difficulty of stamping out every problem. I guess I'm a bit forgiving of issues (most of them have been reported). So I mean, the instability's there and it's something this program will need to overcome as time goes on.&lt;br /&gt;&lt;br /&gt;Regarding crashes and obnoxious bugs, as much as you should send them, you should try contacting support with details if it comes to a point where you're just incapable of producing anything. There may be solutions.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;2ndAct&lt;/b&gt;, &lt;em&gt;Tue, 22 Jan 2013 18:24:20 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I am new to Filter Forge as well and I am having the same problem. Very frustrating! Some filters I can render and others get 75% and up pops a bug report! Yikes!&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Ozmandias&lt;/b&gt;, &lt;em&gt;Wed, 23 Jan 2013 07:03:52 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I've had Filter Forge (version 3 - Basic Edtion) for about six weeks.  It is very stable on my system, which is several years old... a Core2Duo E8500 with 4GB RAM and a Radeon 4970.  I'm running WinXP on it and that particular computer is NOT connected to the internet at all.  So there's no interference from antivirus programs running or other garbage related to being online.&lt;br /&gt;&lt;br /&gt;On the other hand, this computer that I am currently typing on IS connected to the internet.  It is a somewhat newer computer than my other one but has a bit lesser components (a Core2Duo E7500 a Radeon 4350) but more RAM (8GB) and is running 64-bit Vista Home.  FF3 has crashed, generating bug reports, several times while downloading new filters on this computer.  Since I don't use this computer for any other work besides internet-related stuff, I can't say whether or not FF3 is stable while rendering images.&lt;br /&gt;&lt;br /&gt;I know this doesn't help much but hopefully you'll get it figured out because Filter Forge is nothing short of amazing.&lt;br /&gt;&lt;br /&gt;(THANKS to all the folks that create the filters and make them available for us to use)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Vladimir Golovin&lt;/b&gt;, &lt;em&gt;Thu, 24 Jan 2013 01:39:12 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt; Some filters I can render and others get 75% and up pops a bug report&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;2ndAct, that's definitely not normal. Are you submitting these reports?&lt;br /&gt;&lt;br /&gt;Also, have you tried contacting support? Perhaps it's a well-known problem, e.g. an obscure anti-virus going crazy, or something like that?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Colorblast&lt;/b&gt;, &lt;em&gt;Sun, 03 Mar 2013 20:16:09 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Looks like good news.  After getting another rendering bug error, I downloaded the latest version and, presto, was able to save the same file-filter with no error.  Looks like a mojor hurdle has been fixed with this latest evrsion.  Many thnaks FF Team.  Great work.&lt;/p&gt;
</description>
</item>
<item><title>This is the main thread for discussing the 'bad allocation' exception</title> 
		             <dc:creator>SpaceRay</dc:creator> 
		             <category></category> 
		             <pubDate>Sat, 02 Mar 2013 22:30:10 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=9394</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=9394</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Sun, 29 Jan 2012 12:36:36 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Moderator's note: there are numerous threads about this issue on the forum. All official replies will be made in this thread only.&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Hello,&lt;br /&gt;&lt;br /&gt;I am getting frequently this error sometimes using the standalone FF 3.06 Pro version &lt;br /&gt;&lt;br /&gt;&amp;lt;class XFW::Kernel::StdException&amp;gt; bad allocation&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;oniXMaster wrote: &lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&quot;bad allocation&quot; means that you ran out of available memory.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt; Please try the following:&lt;br /&gt;&lt;br /&gt;1) ensure your paging file size isn't limited by a setting in Control Panel-&amp;gt;System-&amp;gt;Advanced-&amp;gt;Settings(Performance)-&amp;gt;Advanced-&amp;gt;Change (ideally it should be System Managed and you should have enough space on disk, I recommend several tenths of gigabytes)&lt;br /&gt;&lt;br /&gt;2) reduce the amount of memory Filter Forge uses for it's internal computations (go to Tools-&amp;gt;Options...-&amp;gt;Rendering and set the Maximum RAM usage slider to something like 60 instead of the default 75)&lt;br /&gt;&lt;br /&gt;Also please ensure that you have enough disk space for both paging file, you can check it in the same location as 1) ) and Filter Forge temporary files (available in the same location as 2) ). &lt;br /&gt;&lt;br /&gt;P.S. Test With 10000 x 5000 image sizes with properly set up paging file. The fact that other filters render fine makes me think that you're running out of disk space (there are two bitmap-based components in there, &lt;b&gt;with such resolutions the temporary files alone might take from 3 to 6 gigabytes&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;It is NOT possible that the out of memory error could be from not enough RAM because I have 16 GB so is not this&lt;br /&gt;&lt;br /&gt;&lt;b&gt;What I find very interesting and surprising that is NOT only RAM needed, is ALSO hard disk storage size for Filter Forge temporary files !!!!&lt;/b&gt;  :?:  :?:  :?:  :?:  :?: &lt;br /&gt;&lt;br /&gt;So, the problem could be NOT from FF alone, and would be because I have it bad configured in the paging file size ?  :?:  :?:&lt;br /&gt;&lt;br /&gt;Is this why there are many problems on SOME COMPUTER to render high resolutions because probably what is wrong is that there is NOT ENOUGH STORAGE SPACE AVAILABLE FOR FF TEMPORAL FILES ??  :?:  :?:&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Sun, 29 Jan 2012 15:48:09 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;oniXMaster wrote: &lt;/b&gt;&lt;br /&gt;1) ensure your paging file size isn't limited by a setting in Control Panel-&amp;gt;System-&amp;gt;Advanced-&amp;gt;Settings(Performance)-&amp;gt;Advanced-&amp;gt;Change (ideally it should be System Managed and you should have enough space on disk, I recommend several tenths of gigabytes)&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;For point 1 my own information is as follows &lt;br /&gt;&lt;br /&gt;On C: I do not have any paging file because is a SSD drive, I have configured and transfered the system paging file to the E: drive where it puts that recommended is 24451 MB (24 GB) and there is configured 32602 MB (36 GB)&lt;br /&gt;&lt;br /&gt;In this E: drive there is 75 GB space free. &lt;br /&gt;&lt;br /&gt;In the C: drive where the Filter Forge software is installed and where it is supossed that the temporal files need to be stored have 27 GB free.&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;oniXMaster wrote: &lt;/b&gt;&lt;br /&gt;2) reduce the amount of memory Filter Forge uses for it's internal computations (go to Tools-&amp;gt;Options...-&amp;gt;Rendering and set the Maximum RAM usage slider to something like 60 instead of the default 75)&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Well, I had already by default 60 in the MAX ram usage slider so I do not need to change it, unless I need to reduce it even more.&lt;br /&gt;&lt;br /&gt;I do not understand why reducing the FF maximum ram usage will help, when the problem is that there is NOT ENOUGH RAM and so reducing it will give LESS RAM and not more&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;oniXMaster wrote: &lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Also please ensure that you have enough disk space for both paging file, you can check it in the same location as 1) ) and Filter Forge temporary files (available in the same location as 2) ). &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;There is 32 GB paging file and 75 GB free in this drive, and in the C: filter forge temporay files there is 27 GB free.&lt;br /&gt;&lt;br /&gt;Here below I put a screen shot of the Virtual Memory found in Control Panel-&amp;gt;System-&amp;gt;Advanced-&amp;gt;Settings(Performance)-&amp;gt;Advanced-&amp;gt;Change&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Mon, 30 Jan 2012 01:08:17 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Could I be having this lots of errors in FF because I do not have the paging file in the original default C: drive ?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Morgantao&lt;/b&gt;, &lt;em&gt;Mon, 30 Jan 2012 03:28:49 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;That's not supposed to matter...&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Wed, 21 Mar 2012 02:22:13 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I have found that this ONLY happens in the standalone version !!&lt;br /&gt;&lt;br /&gt;I have got this error many times and with just a 2500x2500 photo  :evil:  :cry:&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;USING FILTER FORGE AS A PLUGIN OF PHOTOSHOP CS5 SOLVES THE PROBLEM !!!&lt;/b&gt;&lt;/u&gt; :) &lt;br /&gt;&lt;br /&gt;BUT then I have used the SAME photo with Filter Forge as a plugin inside Photoshop and using the same filter and same settings, &lt;b&gt;AND DO NOT GET ANYMORE this error&lt;/b&gt; , So I am happy that at least I know that to fix this undesired and unwanted error I just need to use Filter Forge as plugin and this SOLVES the problem.  :)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Sat, 30 Jun 2012 16:44:39 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I have asked for more information from the FF team but there has not been any answer until now  :(&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Avalanche Studios&lt;/b&gt;, &lt;em&gt;Tue, 18 Sep 2012 10:41:38 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hi Guys &lt;br /&gt;&lt;br /&gt;We have the same problem and we have both memory and diskspace on our highend pcs.&lt;br /&gt;&lt;br /&gt;And it has todo with plugin mode as well as standalone when it comes to larger formats and for some reason only when a blur node has been used. If I remove the blur nodes I can do 65k textures with no errors.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;We are trying to 16k x 16k textures and it crashes with this error even in plugin mode (if I use blur nodes).&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Any ideas ?&lt;br /&gt;&lt;br /&gt;- Avalanche Studios&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Morgantao&lt;/b&gt;, &lt;em&gt;Tue, 18 Sep 2012 11:26:04 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;If I remove the blur nodes I can do 65k textures with no errors.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;OMG, I hope you are right and this only happens because of a bug in the blur component.  That would help the dev team take care of it once and for all!  :)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Avalanche Studios&lt;/b&gt;, &lt;em&gt;Tue, 18 Sep 2012 12:07:59 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Yes to my understanding the problem sits in the blur node. &lt;br /&gt;I have tested several blur combos but a single nodes still breaks the render.&lt;br /&gt;&lt;br /&gt;If the allocation is the problem i recommend that you first allocate and do a horizontal blur then the same with vertical blur. Doing that the memory footprint will be far less.&lt;br /&gt;&lt;br /&gt;Also this is only a problem when you have large input image, 16384x16384 is what I try with.&lt;br /&gt;&lt;br /&gt;(fun fact: photoshop cs5.5 cannot save psd files larger than 2gb)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Morgantao&lt;/b&gt;, &lt;em&gt;Tue, 18 Sep 2012 13:57:03 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I think you should write the support team of your findings about the blur node, just in case they missed this thread.&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;fun fact: photoshop cs5.5 cannot save psd files larger than 2gb&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;That's why since CS2 they have PSB files, which are supposed to be able to go beyond 2GB (B in PSB stands for big).&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Avalanche Studios&lt;/b&gt;, &lt;em&gt;Wed, 19 Sep 2012 02:00:40 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I have emailed both contact and support but got no response beyond automated answers, I you any other channel in feel free to relay the information. &lt;br /&gt;&lt;br /&gt;We are quite desperate to get a solution =P, The product clearly states that it can do renders up to 65k so we bought it and .. yeah well =P&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sharandra&lt;/b&gt;, &lt;em&gt;Wed, 19 Sep 2012 02:09:07 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Wow if that is really the source of that bug and it enables them to finally get rid of it, I think you deserve lots of bug points for finding it :D&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Wed, 19 Sep 2012 07:54:35 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;only when a blur node has been used. If I remove the blur nodes I can do 65k textures with no errors.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Avalanche Studios, this is very very interesting. Could you please post a filter that crashes with the Blur component and works correctly without it?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Avalanche Studios&lt;/b&gt;, &lt;em&gt;Thu, 20 Sep 2012 02:16:54 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Again its a theory but this always seems todo the trick.&lt;br /&gt;&lt;br /&gt;Using version 3 with latest update.&lt;br /&gt;&lt;br /&gt;Image = any 16384x16384 texture &lt;br /&gt;out = same size different name&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Break&lt;/b&gt;&lt;br /&gt;image -&amp;gt; blur -&amp;gt; perlin noise -&amp;gt; perlin noise -&amp;gt; blur -&amp;gt; out&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Works&lt;/b&gt;&lt;br /&gt;image -&amp;gt; perlin noise -&amp;gt; perlin noise -&amp;gt; out&lt;br /&gt;&lt;br /&gt;note: restart of the software might be needed as the software locks the broken image in memory and any renders after it will also get the crash unless you restart.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Thu, 20 Sep 2012 04:43:40 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I replaced Blurs with High Passes in your example and it still crashes. Needs more testing with bitmap-based and procedural components.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Avalanche Studios&lt;/b&gt;, &lt;em&gt;Thu, 20 Sep 2012 10:18:45 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I am sorry but I have to disagree, replacing blur with highpass works fine.&lt;br /&gt;&lt;br /&gt;Remember to close down (taskmanager) the software after it has crashed and also save the new file using a new name in case the pic is stilled locked.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Fri, 21 Sep 2012 04:21:46 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I think that this &quot;Bad allocation&quot; bug is the worst thing FF has IF it is used as standalone, as this does NOT happen nearly on the plugin version using Photoshop, which I do not understand why.&lt;br /&gt;&lt;br /&gt;I have NOT tried the above suggestion of the Blur component breaking the filter and making a crash, BUT I do not think that this could be the reason, as this &quot;bad allocation&quot; crash happens with nearly all the filter I have tried, and not all have blur components.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Avalanche Studios&lt;/b&gt;, &lt;em&gt;Fri, 21 Sep 2012 04:57:31 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;It is true that I have had the issues on large files using the standalone version using other nodes but its more of problems where it does not release data from memory and then get a bad allocation.&lt;br /&gt;&lt;br /&gt;The only time I got the plugin to crash (bad allocation) is when I used blur nodes.&lt;br /&gt;&lt;br /&gt;I think its two separate problems, I think the standalone is due to that the preview is rendering at the same time and sometimes (or always) tries to access the same data / write to it.&lt;br /&gt;&lt;br /&gt;The second problem I think its close to the first one but happens when the blur is allocating memory to do a full blur pass.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Kraellin&lt;/b&gt;, &lt;em&gt;Sun, 23 Sep 2012 01:07:56 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;this is a memory error. i get it all the time. i have a cpu/ram usage meter running right next to FF when it's running. my system has 6 gigs. when it hits about 3.1 or above, the bad allocation can occur. if it's below that, it wont. so, if you have a ton of filters sitting in FF in storage, it does use ram. if you're using big pictures, you are going to run into this at some point. if you're using a lot of high memory components and doing a lot of bitmap type stuff, all of this seems to have to be held in memory the whole time the filter is rendering. as memory gets used up and you go over whatever this bug limit is, boom!&lt;br /&gt;&lt;br /&gt;one interesting thing about this bug is that you can actually get the error in various numbers of iterations all happening at once. my typical number is i'll get 8 bug messages, all the same. if i get all 8 my rendering will stop and wont finish. if i get less than 8, say only 3, the rendering will continue. this usually only seems to happen if i'm right on the cusp of memory usage.&lt;br /&gt;&lt;br /&gt;you can do things to help yourself out. offload some of the filters you keep IN FF. use smaller pictures if you can. cut down the little percentage thing you hit when you save... the 2nd window after you hit the save button. all of those things use memory.&lt;br /&gt;&lt;br /&gt;i've reported this bug many times and every time i've been told there is no fix for it and that they're not sure what is doing this. i'm very convinced it's a resource management problem. i also seem to remember this bug showing up more when they fixed the old memory leak, though this last may just be my faulty, old age memory.&lt;br /&gt;&lt;br /&gt;my system and FF are almost unusable at this point. almost any render i do on a photograph will crash before i can get the end of the progress bar. when i try to save filters in the editor, they almost all crash during the save. and every single time the memory meter is at 3.1 gigs or higher, which is pretty much the limit that windows can handle with a 32 bit program. (and FF is ONLY 32 bit, even if you have 64 bit windows, so the memory limit rules apply)&lt;br /&gt;&lt;br /&gt;and here's a real kicker. there doesnt seem to be ANY activity kicked over to windows paging/swap file when ram starts to back up. i NEVER see a harddrive light go on when memory is approaching the limit, but i'm going to watch this closer now to make sure that's right, too. i have an SSD drive as my C: drive, so my swap file wwould be almost as fast as ram and windows shld be able to handle all this quite easily. so, i dont know quite what's going on.&lt;br /&gt;&lt;br /&gt;if there was any reason for FF inc. to go to a 64 bit coding, this is it. i hope we can nip this in the bud quickly. it's making my FF experience a pain in the butt.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Avalanche Studios&lt;/b&gt;, &lt;em&gt;Mon, 24 Sep 2012 02:28:09 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I have come to the same conclusion =)&lt;br /&gt;&lt;br /&gt;The software does not seem to release and reuse memory and running a 32-bit version (which it always does) which have a limit of 4 gigs and a thread-size of 1. This really does not work for big data.&lt;br /&gt;&lt;br /&gt;There are only two options (I recommend doing both to have a 32-bit fallback):&lt;br /&gt;&lt;br /&gt;1. Allocate memory for the specific operation only and for the blur do a horizontal then a vertical operation. On other operations you can for example do them in pixel blocks, say 64x64 allocating and releasing memory between each block.&lt;br /&gt;&lt;br /&gt;2. Make a 64bit version so unlimited of memory and Thread size can be used.&lt;br /&gt;&lt;br /&gt;OBS: Not being able to render out: and I quote &quot;... and render huge images up to 65000 x 65000 pixels in size&quot; which is the biggest selling point for the pro version, might in fact be a legal issue as this fits into the frames of false marketing.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Kraellin&lt;/b&gt;, &lt;em&gt;Mon, 24 Sep 2012 21:57:27 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;no, it's not false advertising, at least as i recall things. the bad allocation thing doesnt happen on every machine. some folks can render on the huge sizes. i think Sign Guy is one that can. he makes textures for the sign industry and uses very large file sizes. it just takes a while. so, it seems to be something specific to certain machines. it could even be something like your anti-virus or firewall or who knows what.&lt;br /&gt;&lt;br /&gt;also, 32 bit can actually only use 3 gigs on a windows machine, 2 gig plus the patched version allowing 3. it's a numbers thing.&lt;br /&gt;&lt;br /&gt;and yes, 64 bit would be the ultimate solution but FF, inc. seems reluctant to go that way yet. so, we'll see.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Avalanche Studios&lt;/b&gt;, &lt;em&gt;Tue, 25 Sep 2012 09:13:39 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Well I don't know about that hehe =p&lt;br /&gt;&lt;br /&gt;I have tried it on 4 different machines with different hardware / os and I get the same results =/. If anyone knows of a configuration that works with ff please let me know! I still think that it should be mentioned in the hardware requirements in this case.&lt;br /&gt;&lt;br /&gt;Yes the actual size in 32-bit is just above 3gigs =)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sharandra&lt;/b&gt;, &lt;em&gt;Tue, 09 Oct 2012 15:55:33 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Usually I can´t render 4096x4096 in the standalone version without getting the bad allocation error.&lt;br /&gt;I just found out that when I set the preview size to actual and let it render, it works just fine. Takes ages, but I can save afterwards.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Skybase&lt;/b&gt;, &lt;em&gt;Tue, 09 Oct 2012 23:22:08 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Man, I really wonder about this bug. It never happens on my machine and I don't do anything particularly special. I typically process pictures I take with my 60D with it and the resolution of those images exceeds 5000x3000 pixels. I also render textures at 4096x4096 (where applicable with what I'm doing.) And I typically like to let it render in the window itself and save it later. I mean sure, once in a while it kinda coughs stupid things up and crashes but I'm typically editing the image during those situations. &lt;br /&gt;&lt;br /&gt;I'm using the Mac version of FilterForge by the way. Seems like the windows edition has the rusty nail. But if in any case I wonder what's happening after all with this error.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Wed, 10 Oct 2012 02:33:15 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Sharandra &lt;br /&gt;&lt;br /&gt;Usually I can´t render 4096x4096 in the standalone version without getting the bad allocation error&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Yes, for me 98% of the times that I try to render above 3500 pixels in standalone mode it gives this error, and it happens in both ways, I mean if you use the reduced size and then go &quot;save image as&quot; or if you set the preview size to &quot;Actual&quot; it normally after more than half of the render or reaching the end will give this error.&lt;br /&gt;&lt;br /&gt;I HAVE 16 GB but FF is 32 bit, so it means that it will not use more than 3 GB, or worse is that is said that the it has it own custom memory controller that can not use more than 1,5 GB. &lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Kraellin&lt;br /&gt;&lt;br /&gt;one interesting thing about this bug is that you can actually get the error in various numbers of iterations all happening at once. my typical number is i'll get 8 bug messages, all the same. if i get all 8 my rendering will stop and wont finish. if i get less than 8, say only 3, the rendering will continue. this usually only seems to happen if i'm right on the cusp of memory usage. &lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;ALL the information that Kraellin has given is true for me, I have seen twice that I was looking at the memory manager in windows, that it was close to the 90% and I was ONLY using Filter Forge, and not multistasking, so I can´t know how FF can take all this amount of RAM.&lt;br /&gt;&lt;br /&gt;Also as told in the quote, the error is replicated between 3 or more times (after the 5th I hit always the &quot;Kill this task&quot; in the &quot;Process Explorer&quot; tool utility. It has happened to me around twice that after 3 errors it continues rendering and finishes.&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Skybase &lt;br /&gt;&lt;br /&gt;Man, I really wonder about this bug.&lt;br /&gt;&lt;br /&gt;I'm using the Mac version of FilterForge by the way. Seems like the windows edition has the rusty nail. But if in any case I wonder what's happening after all with this error. &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;YES, I really wonder and would like to know what and why happens this bug too, and is like a mistery, and it seems that it only happens in the Windows version, perhaps because the MacOS is managing the memory in a different way. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;What is MUCH MORE misterious and strange is that this really happens the most of the times in STANDALONE MODE and NOT IN PLUGIN VERSION, well it happens also in plug in version BUT only about 10% versus 98% in the standalone.&lt;br /&gt;&lt;br /&gt;What is different from the standalone version to the plugin version memory management ?&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sharandra&lt;/b&gt;, &lt;em&gt;Wed, 10 Oct 2012 05:03:56 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Skybase wrote:&lt;br /&gt;And I typically like to let it render in the window itself and save it later.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Instead of saving it and letting it render while saving?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Skybase&lt;/b&gt;, &lt;em&gt;Wed, 10 Oct 2012 05:18:39 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I mean, we'd have to wait and see if FilterForge 4 solves anything of this matter. I thought this was one of those &quot;things to be tackled&quot; for version 4. I thought I remember seeing some word about it somewhere.&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Instead of saving it and letting it render while saving?&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;br /&gt;&lt;br /&gt;I donno, I also just hit render too. But I like resizing windows so I'd rather have FilterForge not become static during rendering.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Thu, 07 Feb 2013 06:26:08 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;We have solid grounds to suspect that Progressive Previews may cause bad memory allocation. Please set the &lt;i&gt;Multi-pass Preview&lt;/i&gt; to &lt;i&gt;Legacy&lt;/i&gt; in &lt;i&gt;Tools &amp;gt; Options &amp;gt; Interface&lt;/i&gt; and try rendering a large image.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sharandra&lt;/b&gt;, &lt;em&gt;Thu, 07 Feb 2013 07:05:45 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Please set the Multi-pass Preview to Legacy in Tools &amp;gt; Options &amp;gt; Interface and try rendering a large image. &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Nope, sorry, still getting the bad allocation error.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Vladimir Golovin&lt;/b&gt;, &lt;em&gt;Fri, 08 Feb 2013 10:20:37 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;We just fixed a bug that may have been the cause of Bad Allocation:&lt;br /&gt;&lt;a href='http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10903' target='_blank' rel='nofollow'&gt;http://www.filterforge.com/forum/read...&amp;TID=10903&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;inujima&lt;/b&gt;, &lt;em&gt;Fri, 08 Feb 2013 22:16:12 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Please set the Multi-pass Preview to Legacy in Tools &amp;gt; Options &amp;gt; Interface and try rendering a large image.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;This error occurs even if set to &quot;Legacy&quot;.&lt;br /&gt; When setting to &quot;Off&quot;, it seems to work well like plugin mode.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Thu, 28 Feb 2013 06:15:37 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;A bit of info about &lt;i&gt;better allocation&lt;/i&gt; that wouldn't go into the official news. &lt;br /&gt;&lt;br /&gt;We haven't eradicated the issue completely but we've found its cause and made it much less likely. The following factors contribute to the chance of getting BadAlloc:&lt;br /&gt;&lt;br /&gt;- the image size (obviously);&lt;br /&gt;- the presence of bitmap-based components in the filter;&lt;br /&gt;- fiddling with the interface (panning and zooming) during render – &lt;i&gt;this eats up memory quickly!&lt;/i&gt;&lt;br /&gt;- position of the &lt;i&gt;Memory usage limit &lt;/i&gt;slider. Higher settings speed up the render &lt;i&gt;and increase &lt;/i&gt;the chance to get BadAlloc. That is, if you never experience BadAlloc feel free to wind this slider up to 90; if you get BadAlloc set it to 80, or 70, or whatever value that gets rid of BadAllocs on your PC. It is no coincidence that the default value is 60.&lt;br /&gt;&lt;br /&gt;We've successfully rendered a Blurred Bomber at 64kx64k with Memory usage limit set to 50.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Thu, 28 Feb 2013 11:10:26 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Good to know this GMM, thanks, so we can test it more and better.&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;we've found its cause and made it much less likely&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Yes, is true I have tried some tests and before would have always given an error and now it works much better!! until now only in very high resolutions (14500 x 8500) I have got the error.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Wolvman&lt;/b&gt;, &lt;em&gt;Sat, 02 Mar 2013 21:57:05 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Just dropping in to say that I still get the error at 4096 x 4096 resolution on a few filters with the latest version but it does seem to be at least a little better. This is with memory usage limit slider at 90 though. Still have yet to give it a shot with the slider at 80 or 70.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Skybase&lt;/b&gt;, &lt;em&gt;Sat, 02 Mar 2013 22:30:10 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Wolvman, you should write your report down in this thread: &lt;a href='http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10903' target='_blank' rel='nofollow'&gt;http://www.filterforge.com/forum/read...&amp;TID=10903&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;;)&lt;/p&gt;
</description>
</item>
<item><title>Updated: Possible fix for the &quot;Bad Allocation&quot; error</title> 
		             <dc:creator>Vladimir Golovin</dc:creator> 
		             <category></category> 
		             <pubDate>Wed, 27 Feb 2013 15:22:18 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10903</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10903</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;Vladimir Golovin&lt;/b&gt;, &lt;em&gt;Fri, 08 Feb 2013 10:18:50 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;We’ve just fixed a bug that may have been a cause of the infamous &quot;Bad Allocation&quot; error that occurs during rendering of large images. It should also improve rendering stability in general. The fix not yet available as an automatic update, so you have to download and install it manually.&lt;br /&gt;&lt;br /&gt;Here’s a Filter Forge 3.012 installer with the bugfix:&lt;br /&gt;&lt;b&gt;&lt;a href='http://www.filterforge.com/download/software/Filter%20Forge%203%20Setup%20(Bad%20Alloc%20Fix).exe' target='_blank' rel='nofollow'&gt;Filter Forge 3 Setup (Bad Alloc Fix).exe&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Update:&lt;/b&gt; the link above now points to a second, updated version of the fixed executable that includes some clever tricks to reduce address space fragmentation, which, we believe, is the primary cause of the Bad Allocation error.&lt;br /&gt;&lt;br /&gt;Please give it a run and post the results here.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sharandra&lt;/b&gt;, &lt;em&gt;Fri, 08 Feb 2013 10:40:26 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Oh that´s good news! :D &lt;br /&gt;Testing it right now! Fingers crossed!&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Skybase&lt;/b&gt;, &lt;em&gt;Fri, 08 Feb 2013 10:53:14 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;! Very nice!&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Vladimir Golovin&lt;/b&gt;, &lt;em&gt;Fri, 08 Feb 2013 14:15:53 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Sharandra, any results?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sharandra&lt;/b&gt;, &lt;em&gt;Fri, 08 Feb 2013 14:37:26 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Yeah, unfortunately still getting the bad allocation error. :-(&lt;br /&gt;&lt;br /&gt;It did fix the issues I had with rendering tho. It also doesn´t lock up other programs while rendering anymore.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Igor Lorents&lt;/b&gt;, &lt;em&gt;Fri, 08 Feb 2013 15:33:55 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Yeah, unfortunately still getting the bad allocation error.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Dang, it looks like we've fixed the wrong sh#t... ;)&lt;br /&gt;Well, that's something at least. Gonna keep tryin'.&lt;br /&gt;&lt;br /&gt;Thank you for testing and feedback, Sharandra!&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Vladimir Golovin&lt;/b&gt;, &lt;em&gt;Sat, 09 Feb 2013 03:04:52 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Sharandra, could you please post the offending filter and describe the rendering conditions, e.g. pixel resolution, Mac or Win and which version, etc.?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sharandra&lt;/b&gt;, &lt;em&gt;Sat, 09 Feb 2013 05:50:40 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Filter was &lt;a href='http://www.filterforge.com/filters/11019.html' target='_blank' rel='nofollow'&gt;Flagstones&lt;/a&gt;, first Preset at 4096x4096, &lt;br /&gt;Windows 7 Home Premium SP1 64bit, Intel Core I5 760, 16GB RAM, GForce GTX 460.&lt;br /&gt;I did send a bugreport too, after the testrun.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Vladimir Golovin&lt;/b&gt;, &lt;em&gt;Mon, 11 Feb 2013 06:09:52 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Sharandra, we copied the bug report to a file and I removed it from the thread (it was really huge).&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sharandra&lt;/b&gt;, &lt;em&gt;Mon, 11 Feb 2013 08:00:52 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Great! :-)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Vladimir Golovin&lt;/b&gt;, &lt;em&gt;Wed, 13 Feb 2013 09:09:07 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;We've updated the fixed installer (the download link is the same, see the first post of the thread). It now includes several improvements that reduce memory fragmentation, which, we believe, is the primary cause of the Bad Allocation error.&lt;br /&gt;&lt;br /&gt;Please give it a try and report the results here.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sharandra&lt;/b&gt;, &lt;em&gt;Wed, 13 Feb 2013 12:25:21 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Just did a test and was able to render a 4096x4096 image of the Flagstones filter without a bad allocation error! :D :ff:  :ff:  :ff:&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Vladimir Golovin&lt;/b&gt;, &lt;em&gt;Wed, 13 Feb 2013 12:30:27 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Good. My work PC is currently rendering the same filter at same resolution, and when I went home it was at approximately 80% -- and that after my constant zooming and panning of the preview (which messes up the cache).&lt;br /&gt;&lt;br /&gt;So it seems that the new tricks helped -- and we still have one more up our sleeve. Now we have to figure out whether they still continue to work at 64000x64000 pixels. I guess Flagstones would be too heavy for this, so we'll need to find a simpler test case (like the Perlin / Blur combo suggested in one of the bad alloc threads).&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sharandra&lt;/b&gt;, &lt;em&gt;Wed, 13 Feb 2013 12:35:00 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hmm, I´ll have a look through my filters, maybe I have a simple filter that I could use for a test at that huge size.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;CFandM&lt;/b&gt;, &lt;em&gt;Wed, 13 Feb 2013 12:44:36 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;It seems to load images quicker as well as render quicker... :loveff:  :ff:  :hammer:&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Igor Lorents&lt;/b&gt;, &lt;em&gt;Wed, 13 Feb 2013 15:16:03 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I've started to render blurred checker 64k x 64k. Not sure it'll be done by the morning though  :D&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sharandra&lt;/b&gt;, &lt;em&gt;Wed, 13 Feb 2013 16:51:55 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hehe, mine might be done in the morning if the error doesn´show up. Blurred Packing Paper as simple filter, only a few percent in yet. &lt;br /&gt;I immediately got the error in 4.0 at that size.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Vladimir Golovin&lt;/b&gt;, &lt;em&gt;Thu, 14 Feb 2013 02:06:19 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I started a blurred checker too, but it didn't finish -- I forgot to set the swap location in FF options to a larger HDD :D &lt;br /&gt;&lt;br /&gt;Now I'm trying to render a simple 64000x64000 perlin noise, should be a bit faster than a night.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sharandra&lt;/b&gt;, &lt;em&gt;Thu, 14 Feb 2013 04:51:58 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Mine didn´t finish either, I forgot to turn off sleep mode, so it´s still rendering and not very far &amp;gt;.&amp;lt; :D&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Igor Lorents&lt;/b&gt;, &lt;em&gt;Thu, 14 Feb 2013 06:02:26 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I didn't forget to move the Filter Forge cache to the large and slow HDD.&lt;br /&gt;Anyway, it has been rendering for 15 hrs and still no sight of the first block ;)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sharandra&lt;/b&gt;, &lt;em&gt;Thu, 14 Feb 2013 07:40:34 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I cancelled mine, because I need my PC for other things now, but can do another run tonight. &lt;br /&gt;&lt;br /&gt;Maybe some of those, who need extremely large renders could do some tests aswell, as it´s important for them.&lt;br /&gt;I usually don´t need anything above 4096x4096, so I´m personally satisfied with being able to render that in standalone now. :-)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Vladimir Golovin&lt;/b&gt;, &lt;em&gt;Thu, 14 Feb 2013 08:40:05 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Sharandra, same here -- I had to cancel mine too. The intermediate results, however, were pretty encouraging. When I cancelled it, it was about 30% complete, with the first pass of progressive preview fully covering the preview area. The GUI was responsive to zooming and panning, and the machine in general remained responsive as well -- I worked with my Excel spreadsheets just fine while FF rendered in background (though it must be noted that I have Windows installed on an SSD, and FF swap is directed to a separate mechanical HDD).&lt;br /&gt;&lt;br /&gt;Anyway, I'll attempt another approach as soon as I have an appropriate time window :D&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sharandra&lt;/b&gt;, &lt;em&gt;Fri, 15 Feb 2013 08:12:20 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I did another test overnight, but it´s only at 20% yet. but running smoothly so far.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Vladimir Golovin&lt;/b&gt;, &lt;em&gt;Fri, 15 Feb 2013 11:18:10 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I'm postponing my 64000x64000 tests until the next week, but I can say that we rendered your Flagstones filter in 4096x4096 countless times under various conditions without any problems.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Fri, 15 Feb 2013 18:54:01 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Very good news that finally it seems that there is a possible solution to this BAD bug and that it seems that it works from the tests done above&lt;br /&gt;&lt;br /&gt;I have just installed it and will test it and see what happens.&lt;br /&gt;&lt;br /&gt;I think that the highest resolution that would be really used is about 15000-20000 or around this amount, as I do not see anyone needing a 64000 resolution, or at least one in a million.&lt;br /&gt;&lt;br /&gt;Thanks very much for making this fix and I hope that finally this really has been fixed&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Vladimir Golovin&lt;/b&gt;, &lt;em&gt;Sat, 16 Feb 2013 03:20:35 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I'm reserving my final verdict until I have the results of 64000x64000px tests, but it does seem that we've fixed the Bad Alloc bug. The executable that will be rolled out as a v3.0 update will include some additional fixes that should be helpful as well. For example, if you still encounter the Bad Alloc bug somehow, you'll be able to dial down the memory consumption slider in FF options to reserve some address space for fragmentation (this is not yet available in the current build linked in the original post).&lt;br /&gt;&lt;br /&gt;We're now hunting the last remaining rendering bug, this one:&lt;br /&gt;&lt;a href='http://filterforge.com/forum/read.php?FID=8&amp;TID=10882' target='_blank' rel='nofollow'&gt;http://filterforge.com/forum/read.php?FID=8&amp;TID=10882&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sharandra&lt;/b&gt;, &lt;em&gt;Sat, 16 Feb 2013 05:45:31 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Great! Will you update the Beta build aswell? &lt;br /&gt;I gave up on the 64000x64000 tests, because it would take several days to finish.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Vladimir Golovin&lt;/b&gt;, &lt;em&gt;Sat, 16 Feb 2013 11:27:15 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Regarding the beta: we won't update the current beta but we'll include the fix into the Beta 2, which should be out soon.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;StevieJ&lt;/b&gt;, &lt;em&gt;Wed, 27 Feb 2013 08:28:54 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Anyone have results with new update to fix &quot;Bad Allocation&quot; render error???&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Wed, 27 Feb 2013 15:22:18 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I have just downloaded the newest upd ate and will test it more and see if I still get the &quot;Bad allocation&quot; or not.&lt;br /&gt;&lt;br /&gt;In the first two tests, one with a 6000 x 6000 image it did WORK without any problem, I have to say that before this was not possible  :ff:&lt;br /&gt;&lt;br /&gt;AND much more important with a 14500 x 8500 image and the Dropshards filter when it has reached 99% after rendering it finally gave the &quot;Bad alocation&quot; error  :cry:      &lt;br /&gt;&lt;br /&gt;I have not changed any of the settings, and it keeps to be RAM = 85%&lt;/p&gt;
</description>
</item>
<item><title>windows 8 version - filter download version problem</title> 
		             <dc:creator>Akimotos</dc:creator> 
		             <category></category> 
		             <pubDate>Wed, 27 Feb 2013 09:59:26 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11041</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11041</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;Akimotos&lt;/b&gt;, &lt;em&gt;Tue, 26 Feb 2013 17:21:09 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;when you freshly install the windows 8 version and try to update the filters with the update filter menu it will tell you that the current version of FF3 is too low and needs to upgrade. after upgrade needed to download filters it isn't the windows 8 version.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Akimotos&lt;/b&gt;, &lt;em&gt;Tue, 26 Feb 2013 17:33:59 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;additional info: &lt;br /&gt;install: the windows 8 version (3.012) (and the complete set of filters form a few months back)&lt;br /&gt;go to tools filter updates &lt;br /&gt;it wants to update to download the filters (accept) &lt;br /&gt;restart&lt;br /&gt;&lt;br /&gt;the not windows 8 version (3.013) is newer then the windows 8 (3.012) compatible version. &lt;br /&gt;It isn't compatible with the new license and therefore it isn't registered after upgrade. &lt;br /&gt;trying to install the 3.012 windows compatible version over it and it works... but i get an error: &lt;br /&gt;cannot load 'library_1000-1.ffxml' you need to update filter forge to open this filter...&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Akimotos&lt;/b&gt;, &lt;em&gt;Wed, 27 Feb 2013 09:59:26 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;*** i also added a support ticket ***&lt;br /&gt;and the answer was very fast (only a few hours):&lt;br /&gt;&lt;br /&gt;Please download the latest 3.013 build which is compatible with Windows 8 here:&lt;br /&gt;&lt;a href='http://www.filterforge.com/download/software/win8/Filter%20Forge%203%20Setup.exe' target='_blank' rel='nofollow'&gt;http://www.filterforge.com/download/s...0Setup.exe&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Filter Forge Support&lt;br /&gt;support@filterforge.com&lt;/p&gt;
</description>
</item>
<item><title>Submission Failed</title> 
		             <dc:creator>Dearkx8</dc:creator> 
		             <category></category> 
		             <pubDate>Wed, 27 Feb 2013 03:49:43 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11042</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11042</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;Dearkx8&lt;/b&gt;, &lt;em&gt;Tue, 26 Feb 2013 22:34:38 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hello everyone  :) &lt;br /&gt;&lt;br /&gt;I get this when i got submit a filter--&amp;gt; Submission Failed. Connection Error. Reason: 'Logical protocol error occurred. submit_filter()failed.'. Please try again later.  it's the same problem expressed in this thread:&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.filterforge.com/forum/read.php?PAGEN_1=2&amp;FID=15&amp;MID=3336&amp;phrase_id=917836' target='_blank' rel='nofollow'&gt;http://www.filterforge.com/forum/read..._id=917836&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Thx in advance!&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Wed, 27 Feb 2013 02:58:26 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;This is not the problem from 2006, but a &lt;a href='http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10846' target='_blank' rel='nofollow'&gt;much more recent issue&lt;/a&gt;. Please read that thread for  instructions.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Dearkx8&lt;/b&gt;, &lt;em&gt;Wed, 27 Feb 2013 03:49:43 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Thank you GMM ! :)&lt;/p&gt;
</description>
</item>
<item><title>Small/actual presets thumbnails look different on both website and FF</title> 
		             <dc:creator>lipebianc</dc:creator> 
		             <category></category> 
		             <pubDate>Thu, 21 Feb 2013 05:31:16 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11026</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11026</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;lipebianc&lt;/b&gt;, &lt;em&gt;Tue, 19 Feb 2013 12:32:47 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Recently, I updated my filter &quot;Image Mask Frame&quot; and noticed that the small presets thumbnails (114x114) looked different from the actual thumbnails (512x512) on both website/application.&lt;br /&gt;&lt;br /&gt;I don't know if that's only related to my filter, couldn't find other examples..&lt;br /&gt;Filter =&amp;gt; &lt;a href='http://www.filterforge.com/filters/10853.html' target='_blank' rel='nofollow'&gt;http://www.filterforge.com/filters/10853.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I'm using FF 3.012 (Professional Edition)&lt;br /&gt;Build: Filter Forge x86-SSE2 3.012.27269.23378 Release-SSE2, January 29, 2013 09:44&lt;br /&gt;Windows 7 Ultimate SP1 (x64) / 8Gb Ram&lt;br /&gt;&lt;br /&gt;Below, some examples for comparison (I enlarged the small thumbnails for a better comparison)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;lipebianc&lt;/b&gt;, &lt;em&gt;Tue, 19 Feb 2013 12:39:48 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;b&gt;While the actual thumbnail render as expected&lt;/b&gt;, the small ones produced a different result  :?:&lt;br /&gt;&lt;br /&gt;Below, a comparison between the small thumbnails of the version I uploaded and the version I downloaded from the website:&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Wed, 20 Feb 2013 04:31:20 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;lipebianc, will the thumbnails be identical if you enable Seamless tiling?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;lipebianc&lt;/b&gt;, &lt;em&gt;Wed, 20 Feb 2013 12:18:11 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Seamless tiling is disabled by autodetection...&lt;br /&gt;&lt;br /&gt;Clicking on any preset (on filter downloaded from the website) and simply adding it as a new one, renders the small thumbnail correctly &lt;b&gt;(example below)&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Should I re-submit this filter?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Thu, 21 Feb 2013 05:31:16 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Should I re-submit this filter?&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Yes.&lt;br /&gt;I guess the filter was initially made some time ago in a previous Filter Forge version. The thumbnails were rendered and saved in that previous version, and when something has changed in a newer version the cached presets were used and not updated. I recommend you delete all presets, re-create them and resubmit your filter. This should cause the server thumbnails to update as well.&lt;/p&gt;
</description>
</item>
<item><title>Filter Forge 3 handle error</title> 
		             <dc:creator>JesusSheep</dc:creator> 
		             <category></category> 
		             <pubDate>Sat, 16 Feb 2013 21:42:21 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11013</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=11013</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;JesusSheep&lt;/b&gt;, &lt;em&gt;Sat, 16 Feb 2013 21:42:21 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&amp;lt;class XFW::ArgumentError&amp;gt; The handle 0023D310 is not a valid window handle.&lt;br /&gt;&lt;br /&gt;Jusr ran the Plug-in in Serif Photo X6.&lt;/p&gt;
</description>
</item>
<item><title>Bug in normal map options?</title> 
		             <dc:creator>Steve Tack</dc:creator> 
		             <category></category> 
		             <pubDate>Mon, 11 Feb 2013 17:20:15 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10912</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10912</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;Steve Tack&lt;/b&gt;, &lt;em&gt;Mon, 11 Feb 2013 17:20:15 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I noticed that when I use the OpenGL (&quot;invert Y&quot;) normal map option, normal maps render correctly in the preview window, but the results I get in Photoshop still use the DirectX Y orientation.  It's easy enough to invert the green channel to get the results I want, but it'd be nice if what was on the preview matched the final render.  Or am I doing something wrong?&lt;/p&gt;
</description>
</item>
<item><title>Stable Rendering</title> 
		             <dc:creator>StevieJ</dc:creator> 
		             <category></category> 
		             <pubDate>Fri, 08 Feb 2013 10:24:14 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10840</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10840</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;StevieJ&lt;/b&gt;, &lt;em&gt;Fri, 18 Jan 2013 15:14:43 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;This is getting ridiculous...  Some images render fine if they are not too large and the filter not too complex...  Anything beyond that is hit or miss...have to set for single core use...and turn off all beckground programs...manually set computer power settings for sleep and hybernation to &quot;Never&quot; (when FF should not allow it while rendering)...etc etc etc...  Totally frustrating...and wasting my time not being able to use my computer for fear of it creating an error while rendering...   :evil: &lt;br /&gt;&lt;br /&gt;C'mon now...rendering should be the first and formost function with no problems...and should be stable without all these problems...  Please???   :|&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Crapadilla&lt;/b&gt;, &lt;em&gt;Fri, 18 Jan 2013 18:40:09 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Which filter? What resolution? System specs? Steps to reproduce?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;StevieJ&lt;/b&gt;, &lt;em&gt;Fri, 18 Jan 2013 22:12:01 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Many of my filters...which aren't that complex...  Some finish rendering...and some don't...  Just today...I actually experienced FF corrupting the external image with a bad allocation error...no joke...  sent bug report...&lt;br /&gt;&lt;br /&gt;Computer is fine...fast dual core...8 gigs RAM...Nvidia  x-graphics...etc...  When it does finish renders...a 12000 x 12000 finishes in about an hour...  FF is the problem...and part of the ongoing &quot;bad allocation&quot; error that they haven't remedied yet...&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Wed, 06 Feb 2013 17:33:47 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;StevieJ &lt;br /&gt;&lt;br /&gt;This is getting ridiculous... Some images render fine if they are not too large and the filter not too complex... Anything beyond that is hit or miss&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;I agree with you, this error has been already for 15 months already and is still unsolved and only happens less when used FF as a plugin, at least in Photoshop.&lt;br /&gt;&lt;br /&gt;I have tried to help the FF team to solve this in the way to put a thread with all the error reports from the FF users, but no one has put any bug report there&lt;br /&gt;&lt;br /&gt;&lt;a href='http://filterforge.com/forum/read.php?FID=8&amp;TID=9371' target='_blank' rel='nofollow'&gt;High resolution rendering test bug report compilation inside here&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Also see this other threads for more information about this and that there are some information to solve this in some way temporaly meanwhile they fix it&lt;/b&gt;:&lt;br /&gt;&lt;br /&gt;&lt;a href='http://filterforge.com/forum/read.php?FID=8&amp;TID=9955' target='_blank' rel='nofollow'&gt;9 MONTHS with this bug and still without a fix, solution or news&lt;/a&gt; (as put above this was before when the thread was done and now in this moment is 15 MONTHS instead of 9)&lt;br /&gt;&lt;br /&gt; --&amp;gt; &lt;a href='http://filterforge.com/forum/read.php?FID=8&amp;TID=9394' target='_blank' rel='nofollow'&gt;Please, MORE information class XFW:Kernel:StdException&amp;gt; bad allocation&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://filterforge.com/forum/read.php?FID=8&amp;TID=10882' target='_blank' rel='nofollow'&gt;RENDERING!!!&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://filterforge.com/forum/read.php?FID=8&amp;TID=9365' target='_blank' rel='nofollow'&gt;HUGE Resolutions = FAIL&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.filterforge.com/forum/read.php?FID=8&amp;TID=4967' target='_blank' rel='nofollow'&gt;Error when saving a 10,000 x 5,000 render&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.filterforge.com/forum/read.php?FID=8&amp;TID=9150' target='_blank' rel='nofollow'&gt;FF3 crashes frequently while long renders for big files&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Vladimir Golovin&lt;/b&gt;, &lt;em&gt;Fri, 08 Feb 2013 10:24:14 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Moved the thread to Bugs and Problems forum. &lt;br /&gt;&lt;br /&gt;Also: see this possible fix:&lt;br /&gt;&lt;a href='http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10903' target='_blank' rel='nofollow'&gt;http://www.filterforge.com/forum/read...&amp;TID=10903&lt;/a&gt;&lt;/p&gt;
</description>
</item>
<item><title>RENDERING!!!  :(</title> 
		             <dc:creator>StevieJ</dc:creator> 
		             <category></category> 
		             <pubDate>Fri, 08 Feb 2013 10:21:49 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10882</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10882</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;StevieJ&lt;/b&gt;, &lt;em&gt;Wed, 30 Jan 2013 18:57:49 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;b&gt;HUGE&lt;/b&gt; rendering problems with surface result filters...&lt;br /&gt;&lt;br /&gt;1) The &quot;Bad Allocation&quot; error needs to be fixed and rendering stabilized...  Renders rarely complete without being stopped by this error at 5000 x 5000 ppi and above resolutions...and if by some chance they do complete, they are mostly either corrupted files or lighting effects are only partially done...  Sometimes these high res renders won't even begin to render...  Using FF as a Photoshop plugin does not remedy the problem...and neither does using one core to render...&lt;br /&gt;&lt;br /&gt;2) The higher resolution you go...the less a rendered result looks like your display image...  Try it...  Take a high res image of 5000 x 5000 and render it using a surface result filter...  Then take the same image at a lower resolution like 1000 x 1000 and render it...  The lower resolution render looks pretty close to what you were looking at on your display...while the high res render has lost almost all the lighting effects...and is not even close to what you were seeing on your display...&lt;br /&gt;&lt;br /&gt;Below is a reduced 5000 x 5000 render that finished...but only partially did the lighting effects...  This is what is happening continuously at high resolution...if it even starts to render, stops rendering, or corrupts with the &quot;Bad Allocation&quot; error...&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;FilterForgePersonOfTheYear&lt;/b&gt;, &lt;em&gt;Thu, 31 Jan 2013 09:16:52 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hi Steve,&lt;br /&gt;&lt;br /&gt;I'm glad you are keeping up with this, because this is an important issue!  Sort of makes getting the Professional version overkill.  In it's current state (for anyone on the fence), I would not recommend the Pro version until they get this resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;joBox&lt;/b&gt;, &lt;em&gt;Tue, 05 Feb 2013 22:40:50 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I was bitching about this well over a year and a half ago, and it's STILL a problem.  I thought it would be fixed in 4.0, but so far, no luck.&lt;br /&gt;&lt;br /&gt;It's BEYOND frustrating, and I've basically given up using FF unfortunately.&lt;br /&gt;&lt;br /&gt;joBox&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;FilterForgePersonOfTheYear&lt;/b&gt;, &lt;em&gt;Wed, 06 Feb 2013 07:59:12 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I've had some success recently- at least with some of the well known filters (chain mail, tiles, scale armor).  As suggested by support- I ran it through photoshop and have successfully rendered a 4k image, 8k image, 10k image, and currently rendering a 12k image (started this morning).&lt;br /&gt;&lt;br /&gt;Here's some tech details:&lt;br /&gt;Platform: Win 8 Pro&lt;br /&gt;Software: Adobe Photoshop CS6 64bit (latest version)&lt;br /&gt;Plugin: Filter 4 (latest version) &lt;br /&gt;&lt;br /&gt;a) After creating a new Document in Adobe (sized in pixels), I add a new layer and save the project.  &lt;br /&gt;&lt;br /&gt;b) I select the Filter Forge 4 filter/plugin through the adobe menu (this launches Filter Forge 4)&lt;br /&gt;&lt;br /&gt;c) I verify the Render settings in filter forge are set to single cpu, and set the memory to 80% available.&lt;br /&gt;&lt;br /&gt;d) I select whatever filter I want to try out, make sure &quot;seamless texture&quot; is selected, and click &quot;apply&quot;.&lt;br /&gt;&lt;br /&gt;e) As it renders out (which takes most of the day 10+ hours for the 10K), Adobe Photoshop becomes unresponsive.  The only indicator is that popup window in Photoshop that shows rendering progress.&lt;br /&gt;&lt;br /&gt;I haven't had one error since I started doing this.  Keeping my fingers crossed the 12k renders out okay.&lt;br /&gt;&lt;br /&gt;I know not everyone has Photoshop, but just thought I'd post my experience with Filter Forge.  As a standalone app, high resolution textures never worked for me.  As a plugin to Photoshop- seems to work pretty good.. but I'll know more when I start experimenting with more process heavy filters.  &lt;br /&gt;&lt;br /&gt;If anyone has any filters they'd like me to try out as a test, let me know.&lt;br /&gt;Regards~&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Wed, 06 Feb 2013 17:28:07 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;joBox&lt;br /&gt;&lt;br /&gt;It's BEYOND frustrating, and I've basically given up using FF unfortunately. &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;YES, YES; I have made the same as you, I have given up making things in FF, as I have too many Bad allocation errors, and I am fed up of loosing time and waiting to see if the render error appears or not, AND I have 16 GB RAM so it is not a problem of not having enough (I know that FF can´t use more than 1,5 GB)&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;I was bitching about this well over a year and a half ago, and it's STILL a problem.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;I agree with you, the first news of this Bad Allocation bug error was in the 6th September 2011 and now we are in the 6th February 2013, so it has been already 15 MONTHS with this bug and still there is no news when this could be solved, and it also happens in FF 4.0 Beta 1.&lt;br /&gt;&lt;br /&gt;&lt;a href='http://filterforge.com/forum/read.php?FID=8&amp;TID=9955' target='_blank' rel='nofollow'&gt;9 MONTHS with this bug and still without a fix, solution or news&lt;/a&gt; (as put above this was before when the thread was done and now in this moment is 15 MONTHS instead of 9)&lt;br /&gt;&lt;br /&gt;I have tried to help the FF team to solve this in the way to put a thread with all the error reports from the FF users, but no one has put any bug report there&lt;br /&gt;&lt;br /&gt;&lt;a href='http://filterforge.com/forum/read.php?FID=8&amp;TID=9371' target='_blank' rel='nofollow'&gt;High resolution rendering test bug report compilation inside here&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Also see this other threads for more information about this and that there are some information to solve this in some way temporaly meanwhile they fix it&lt;/b&gt;:&lt;br /&gt;&lt;br /&gt; --&amp;gt; &lt;a href='http://filterforge.com/forum/read.php?FID=8&amp;TID=9394' target='_blank' rel='nofollow'&gt;Please, MORE information class XFW:Kernel:StdException&amp;gt; bad allocation&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;&lt;a href='http://filterforge.com/forum/read.php?FID=8&amp;TID=9365' target='_blank' rel='nofollow'&gt;HUGE Resolutions = FAIL&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.filterforge.com/forum/read.php?FID=8&amp;TID=4967' target='_blank' rel='nofollow'&gt;Error when saving a 10,000 x 5,000 render&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.filterforge.com/forum/read.php?FID=8&amp;TID=9150' target='_blank' rel='nofollow'&gt;FF3 crashes frequently while long renders for big files&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://filterforge.com/forum/read.php?FID=9&amp;TID=10840' target='_blank' rel='nofollow'&gt;Stable Rendering&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;StevieJ &lt;br /&gt;&lt;br /&gt;This is getting ridiculous... Some images render fine if they are not too large and the filter not too complex... Anything beyond that is hit or miss&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://filterforge.com/forum/read.php?FID=17&amp;TID=10449' target='_blank' rel='nofollow'&gt;Bad allocation error go away!&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://filterforge.com/forum/read.php?FID=17&amp;TID=10878' target='_blank' rel='nofollow'&gt;Rendering above 5000x ???&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Vladimir Golovin&lt;/b&gt;, &lt;em&gt;Fri, 08 Feb 2013 10:21:49 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Here's a possible fix for the Bad Allocation error:&lt;br /&gt;&lt;a href='http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10903' target='_blank' rel='nofollow'&gt;http://www.filterforge.com/forum/read...&amp;TID=10903&lt;/a&gt;&lt;/p&gt;
</description>
</item>
<item><title>Rendering Bugs</title> 
		             <dc:creator>StevieJ</dc:creator> 
		             <category></category> 
		             <pubDate>Fri, 08 Feb 2013 10:20:01 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10821</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10821</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;StevieJ&lt;/b&gt;, &lt;em&gt;Thu, 10 Jan 2013 17:21:36 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;1) Lighting/height being flattened on high resolution renders...   :cry: &lt;br /&gt;&lt;br /&gt;2) Image resolution being changed to 72 ppi on all images rendered...with image size being adjusted to keep overall resolution...  There is no loss...but FF should not be adjusting resolution to something different at all...creates problems for people who need their images to remain at the same size and don't catch the change...   :|&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;StevieJ&lt;/b&gt;, &lt;em&gt;Fri, 11 Jan 2013 14:18:04 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I know that I'm not the only one seeing these things...  Shello...   :|&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Crapadilla&lt;/b&gt;, &lt;em&gt;Mon, 14 Jan 2013 15:19:11 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;a href='http://www.filterforge.com/filters/6874-seamless.html' target='_blank' rel='nofollow'&gt;Clicky!&lt;/a&gt; :-p  ;)  :D&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Vladimir Golovin&lt;/b&gt;, &lt;em&gt;Tue, 15 Jan 2013 10:27:13 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;1) Lighting/height being flattened on high resolution renders...&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;StevieJ, could you elaborate on this?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;StevieJ&lt;/b&gt;, &lt;em&gt;Tue, 22 Jan 2013 00:27:58 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;First, having big problems even getting large images (5000 x 5000 pixels and larger) to start rendering now...and makes Phototshop non-reponsive if I use FF as a PS plugin... See submitted bug reports...&lt;br /&gt;&lt;br /&gt;Second, when I was able to render large images...height, reflectivity, and metallic were being lost...matting the lighting effects...&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;StevieJ&lt;/b&gt;, &lt;em&gt;Tue, 22 Jan 2013 10:14:24 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Would running FF on x64 system have anything to do with these problems???   Any virtual memory tweaks that will help remedy these rendering problems???&lt;br /&gt;&lt;br /&gt;Anyone???  Beuller???  Beuller???&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Vladimir Golovin&lt;/b&gt;, &lt;em&gt;Thu, 24 Jan 2013 01:44:55 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Second, when I was able to render large images...height, reflectivity, and metallic were being lost...matting the lighting effects...&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;When you experience matting on resolution changes, are you using any bitmaps in the bump / height subtree?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;StevieJ&lt;/b&gt;, &lt;em&gt;Fri, 25 Jan 2013 20:21:29 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hey Vlad...  No, I'm not...  Render at low res fine...  Seems to be happening with 5000 x  5000 ppi images and above...&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;StevieJ&lt;/b&gt;, &lt;em&gt;Mon, 28 Jan 2013 10:43:20 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;This is getting extremely frustating...   :cry: &lt;br /&gt;&lt;br /&gt;&quot;Bad Allocation&quot; errors before even starting to render high res images...drop resolution, starts to render, then stops with the same error...and if I can get an image to render, the lighting effects are totally gone...   :cry: &lt;br /&gt;&lt;br /&gt;I can't get anything to look like what it does on the display with lighting involved at high res anymore...  Only comes out right at low resolutions...  Totally frustrating!!!  My computer is more than adequate to render these images...  What is going on with FF...and is there any solutions to this coming???&lt;br /&gt;&lt;br /&gt;Will setting virtual memory to static at 3 times or more than computer's RAM work???&lt;br /&gt;&lt;br /&gt;I really need this program to render the way I see it on display and without all the errors...which is wasting alot of my time...   :evil:&lt;br /&gt;&lt;br /&gt;Images below 5000 x 5000 ppi seem to be rendering okay...  Everything above that resolution either won't start rendering or stops rendering with the &quot;Bad Allocation&quot; error...  If by some rare chance it does finish a render above this resolution, the lighting effects are totally gone...and ends up as a matted render...   :cry:&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;StevieJ&lt;/b&gt;, &lt;em&gt;Tue, 29 Jan 2013 00:49:03 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Here's a reduced 5000 x 5000 render that actually finished...but only rendered part of the lighting effects...  Not good...   :cry:&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sharandra&lt;/b&gt;, &lt;em&gt;Tue, 29 Jan 2013 01:21:12 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Have you tried reinstalling FF?&lt;br /&gt;I had a similar issue on a filter a while ago, it went away after an update.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;StevieJ&lt;/b&gt;, &lt;em&gt;Wed, 30 Jan 2013 14:25:13 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Fully updated in v3...  Three big problems with all surface result filters...loss of lighting effects with greater resolution...not rendering as displayed...and not completing renders at high resoltions...  I'm bumming...   :cry:&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sharandra&lt;/b&gt;, &lt;em&gt;Thu, 07 Feb 2013 10:13:21 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Grrr...now I´m getting these weird renderbugs again aswell. Can I revert to the previous version of 3.0?  :evil:&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Skybase&lt;/b&gt;, &lt;em&gt;Thu, 07 Feb 2013 10:25:56 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Is the preview what's supposed to be portraying the filtered result or is it a problem?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sharandra&lt;/b&gt;, &lt;em&gt;Thu, 07 Feb 2013 10:39:33 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Well I kinda expected to get what I see in the preview, just in a higher resolution, lol. But what I got looks totally different.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Skybase&lt;/b&gt;, &lt;em&gt;Thu, 07 Feb 2013 11:53:32 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Yeah, previews kinda get a bit biased with final renders, especially when you have a bunch of fine details. Pretty sure I encountered this trouble before as well. In these cases, I just edit the filter to make it look like the preview and that typically is the only solution so far.&lt;br /&gt;&lt;br /&gt;But... well.... maybe you're actually encountering a bug. I shouldn't just suggest things really. :p&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sharandra&lt;/b&gt;, &lt;em&gt;Fri, 08 Feb 2013 03:00:01 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Dunno, I usually get what I see. In this case the output looked almost like the original image, just blurred a bit. that was my embroidery filter btw, and in the left image you can see how it´s supposed to look. It has something to do with the image I feed into it, I guess. It works fine with other examples lol. Not tragic, as I was just messing around, but still weird.&lt;br /&gt;Oh and remember that little pond scene I made? I wanted to make that bigger, but when I changed the resolution and applied the Ivy preset, the preview would look the same as before, but the output was completely different.&lt;br /&gt;And that is really not supposed to happen.&lt;br /&gt;And with my wattle and daub filter, I had some presets, which wouldn´t render correctly at bigger then 1024x1024, similar to stevies problem above, but as I said, it went away after an update.&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;In these cases, I just edit the filter to make it look like the preview and that typically is the only solution so far.&lt;br /&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Yeah we can do that, but what about the ppl who only got the basic edition, or don´t know how to?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Vladimir Golovin&lt;/b&gt;, &lt;em&gt;Fri, 08 Feb 2013 10:20:01 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;This fix may improve the situation:&lt;br /&gt;&lt;a href='http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10903' target='_blank' rel='nofollow'&gt;http://www.filterforge.com/forum/read...&amp;TID=10903&lt;/a&gt;&lt;/p&gt;
</description>
</item>
<item><title>Latest 3.012 update and intense interface lag</title> 
		             <dc:creator>primitivedesign</dc:creator> 
		             <category></category> 
		             <pubDate>Thu, 07 Feb 2013 12:31:33 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10887</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10887</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;primitivedesign&lt;/b&gt;, &lt;em&gt;Fri, 01 Feb 2013 15:30:14 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Is anyone else experiencing extreme lag in the FF interface after the latest 3.012 update?&lt;br /&gt;&lt;br /&gt;It used to be that while a sample was rendering, I would be able to move around the interface, adjusting settings, or even just clicking fr om one preset to another.&lt;br /&gt;&lt;br /&gt;Starting immediately after the 3.012 update it's like the entire interface freezes up, sometimes for as much as 5-10 seconds. All of a sudden FF behaves as though I were running it on a 10 year old computer, wh ere before the 3.012 update I never had this lag and freezing. Even opening up the filter editor freezes the app and the editor doesn't open for as much as 15-20 seconds. Something is definitely off since the latest update.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Ozmandias&lt;/b&gt;, &lt;em&gt;Sun, 03 Feb 2013 05:51:31 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Well this is a bit disconcerting.  Is this happening to anyone else?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;primitivedesign&lt;/b&gt;, &lt;em&gt;Thu, 07 Feb 2013 12:31:33 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I reinstalled FF and it seems to be running more smoothly now. Not sure what that issue was.&lt;/p&gt;
</description>
</item>
<item><title>FF3 crash under Windows 8</title> 
		             <dc:creator>TomE</dc:creator> 
		             <category></category> 
		             <pubDate>Thu, 07 Feb 2013 05:37:13 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10898</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10898</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;TomE&lt;/b&gt;, &lt;em&gt;Wed, 06 Feb 2013 06:37:09 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I've updated my machine to Windows 8, and can't get FF3 to be stable under the new OS.&lt;br /&gt;&lt;br /&gt;This is Filter Forge 3.011 Pro Edition.&lt;br /&gt;&lt;br /&gt;When reinstalling the installer completes and then throws an Application Error 0xe06d7363 at location 0x76204b32.&lt;br /&gt;&lt;br /&gt;The software runs, but always throws an error on every exit:&lt;br /&gt;Filter Forge x86-SSE2.exe Application Error&lt;br /&gt;The instruction at 0x00f31f3e referenced memory at 0x00000000. The memory could not be read.&lt;br /&gt;&lt;br /&gt;I've tried reinstalling, but I can't shake this problem.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;FilterForgePersonOfTheYear&lt;/b&gt;, &lt;em&gt;Wed, 06 Feb 2013 07:43:01 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;When you run the install, have you tried right clicking the executable, and select &quot;run as administrator&quot;?  Not sure if it'll make a difference, but it's helped me with other problematic software installs (not related to FilterForge), in the past.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Wed, 06 Feb 2013 09:10:01 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Does it happen with the &lt;a href='http://www.filterforge.com/download/windows8/' target='_blank' rel='nofollow'&gt;Windows-8 compatible version&lt;/a&gt;?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;TomE&lt;/b&gt;, &lt;em&gt;Wed, 06 Feb 2013 17:13:24 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I'll soon find out!&lt;br /&gt;&lt;br /&gt;Er... I missed there was a Windows 8 version.  :?:&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;TomE&lt;/b&gt;, &lt;em&gt;Thu, 07 Feb 2013 05:23:30 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Actually no, the Windows 8 version gives a different set of numbers but also crashes on installation and exit from the interface.&lt;br /&gt;&lt;br /&gt;&quot;The instruction at 0x00ff1ae6 referenced memory at 0x00000011. The memory could not be read.&quot;&lt;br /&gt;&lt;br /&gt;Everything works perfectly inside the program, it's just when you close it.&lt;br /&gt;&lt;br /&gt;I only just uninstalled the older version, I'll try cleaning everything out from the file system next.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;TomE&lt;/b&gt;, &lt;em&gt;Thu, 07 Feb 2013 05:37:13 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;OK got it working. Could be I've got too many files called &lt;b&gt;Filter Forge 3 Setup.exe&lt;/b&gt; in this folder and might have used the wrong one. Now it wants the new license code which is a good sign. No crashes.&lt;br /&gt;&lt;br /&gt;Thanks.&lt;/p&gt;
</description>
</item>
<item><title>Submit Filter to Libary</title> 
		             <dc:creator>marwyn</dc:creator> 
		             <category></category> 
		             <pubDate>Fri, 01 Feb 2013 08:21:29 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10846</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10846</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;marwyn&lt;/b&gt;, &lt;em&gt;Mon, 21 Jan 2013 04:29:47 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hy! &lt;br /&gt;I can`t submit any new Filter. Only Update the older one.&lt;br /&gt;It fail all time and tell me i have to do it later.&lt;br /&gt;&lt;br /&gt;Is this because FF will be new restructuring or do i something wrong.:?:&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;marwyn&lt;/b&gt;, &lt;em&gt;Mon, 21 Jan 2013 17:23:54 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I submit a little one Filter in the morning and by the next, &lt;br /&gt;a bigger one, it comes the failed message. &lt;br /&gt;After that i reading a bit in the Forum, but I find nothing what can help me.&lt;br /&gt;I controll all Components, no HDRI-Problems.... :?: &lt;br /&gt;&lt;br /&gt;So here is my &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;...is there anybody out there???&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;marwyn&lt;/b&gt;, &lt;em&gt;Tue, 22 Jan 2013 06:47:20 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;An other Question: &lt;br /&gt;&lt;br /&gt;Give it a limit for the Setting? And how many?&lt;br /&gt;&lt;br /&gt;Can anyone help, please? :|&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Tue, 22 Jan 2013 06:56:13 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I've asked the devs to take a look at your filter.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Wed, 23 Jan 2013 08:27:25 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;marwyn, the devs say your ffxml contains an impossible combination of components. Have you by chanced edited the ffxml file manually?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;marwyn&lt;/b&gt;, &lt;em&gt;Wed, 23 Jan 2013 09:27:01 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hy, GMM!&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Have you by chanced edited the ffxml file manually? &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;No, i haven´t.&lt;br /&gt;&lt;br /&gt;But,&lt;br /&gt;&amp;gt; i sometimes copy &amp; paste components from a other filter who i made&lt;br /&gt;&amp;gt; with this filter was the same problem&lt;br /&gt;&amp;gt; i remember that i had a render-bug with it, i do something wrong to submit this problem&lt;br /&gt;&amp;gt; all this comes together with a pc-bluescreen-crash&lt;br /&gt;&lt;br /&gt;for the crash,&lt;br /&gt;&amp;gt; i install for everything new updates&lt;br /&gt;&amp;gt; i made a backup from the Filter-Libary and install Filter Forge new&lt;br /&gt;&amp;gt; copy &amp; past only a handful of Filter back &lt;br /&gt;&amp;gt; and change the CPU-Render to Single Core for a lower charge&lt;br /&gt;&amp;gt; (64bit AMD Duo Core 3,0 / Nividia GTX 560 )&lt;br /&gt;&lt;br /&gt;now&lt;br /&gt;&amp;gt; FF runs fine but i have this Filter-Problem only when i try to submit it&lt;br /&gt;&lt;br /&gt;I think i will rebuild this Filter as a new one.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Wed, 23 Jan 2013 09:51:02 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Yes, marwyn, it's a good idea to rebuild this filter from scratch and see if the problem persists.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;marwyn&lt;/b&gt;, &lt;em&gt;Thu, 24 Jan 2013 16:12:25 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Ok, thanks for your help! When i found something, i will let you now.....&lt;br /&gt;&lt;br /&gt; :!: Crash Info -&amp;gt; Bluescreen :!: for everyone who was interested in:  &lt;br /&gt;&lt;br /&gt;my Set:&lt;br /&gt;&amp;gt; Win7 / AMD Athlon 64 X2 6400+ / Nividia GTX 560 / 6GB RAM&lt;br /&gt;&lt;br /&gt;the Crash&lt;br /&gt;&amp;gt; my Bluescreen-Crash was a --&amp;gt; &lt;u&gt;dxgmms1.sys&lt;/u&gt; &amp;lt;--&lt;br /&gt;&amp;gt; i find out that this is a --&amp;gt; &lt;u&gt;DirectX&lt;/u&gt; &amp;lt;-- Problem&lt;br /&gt;&amp;gt; to check it --&amp;gt; &lt;u&gt;dxdiag&lt;/u&gt; &amp;lt;-- into command entry field  &lt;br /&gt;&amp;gt; and i install &lt;a href='http://go.microsoft.com/fwlink/?LinkId=159853' target='_blank' rel='nofollow'&gt;DirectX 11&lt;/a&gt; new&lt;br /&gt;&amp;gt; and new Updates for everything&lt;br /&gt;&lt;br /&gt;other thing: it can be a RAM-Malfunction &lt;br /&gt;&lt;br /&gt;Solution that i found:&lt;br /&gt;&amp;gt; checking Ram with &lt;a href='http://www.computerbase.de/downloads/system/memtest86/' target='_blank' rel='nofollow'&gt;Memtest86+&lt;/a&gt; &lt;br /&gt;&amp;gt; for a stable Run you can set the Voltage for the RAM higher (Bios)&lt;br /&gt;&amp;gt; i have much too little know to say what there are the best Se ttings&lt;br /&gt;&lt;br /&gt;&amp;gt; i hope it kills all the problems for the future or i must buy something new :| &lt;br /&gt;&lt;br /&gt;for more Info about the own Pc-Setup:&lt;br /&gt;&amp;gt; &lt;a href='http://dw.com.com/redir?edId=3&amp;siteId=4&amp;oId=3001-2086_4-10050423&amp;ontId=2086_4&amp;spi=02b296a3aac45b6569fc4e7555e1c9ff&amp;lop=link&amp;tag=dre&amp;ltype=dl_dlnow&amp;pid=12806990&amp;mfgId=74601&amp;merId=74601&amp;pguid=UQGWqwoOYJUAAG2WQNwAAABY&amp;ctype=dm;tv;pt;ps;at;te;np&amp;cval=TIGHTROPE;drec20;-;10050423;default;2;4&amp;destUrl=http%3A%2F%2Fdownload.cnet.com%2F3001-2086_4-75173045.html%3Fspi%3D02b296a3aac45b6569fc4e7555e1c9ff' target='_blank' rel='nofollow'&gt;CPU-Z&lt;/a&gt; (Mainboard...) / &lt;a href='http://dw.com.com/redir?edId=3&amp;siteId=4&amp;oId=3055-2086_4-75173045&amp;ontId=2086_4&amp;spi=ce54a5c2e85ee1a3da4648d323ef244b&amp;lop=link&amp;tag=dre&amp;ltype=dl_dlnow&amp;pid=12942108&amp;mfgId=6281363&amp;merId=6281363&amp;pguid=UQGWzgoOYI8AACrEso4AAADQ&amp;ctype=dm;tv;pt;ps;at;te;np&amp;cval=TIGHTROPE;drec20;-;75173045;default;2;2&amp;destUrl=http%3A%2F%2Fdownload.cnet.com%2F3001-2094_4-10788513.html%3Fspi%3Dce54a5c2e85ee1a3da4648d323ef244b' target='_blank' rel='nofollow'&gt;GPU-Z&lt;/a&gt; ( Graphic Card)&lt;br /&gt;&lt;br /&gt;for contolling GPU Clock speed, GPU Voltage, Memory Clock speed and Fan speed &lt;br /&gt;&amp;gt; &lt;a href='http://www.techspot.com/downloads.php?action=download_now&amp;id=5348&amp;evp=a4a28c62cded54b299bf9bcae0176d81&amp;file=1' target='_blank' rel='nofollow'&gt;EVGA Precision x 3.0.4&lt;/a&gt; / (&lt;a href='http://www.evga.com/precision/' target='_blank' rel='nofollow'&gt;evga.com&lt;/a&gt;) &lt;br /&gt;&amp;gt; (Nividia Cards. I think for other Cards there are something similar)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;marwyn&lt;/b&gt;, &lt;em&gt;Fri, 25 Jan 2013 06:15:59 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;:!: Complemental :!: &lt;br /&gt;&lt;br /&gt;Speed up RAM --&amp;gt; Optimize your Prefender &amp;lt;--&lt;br /&gt;&amp;gt; Win 7 loads frequently used programs during startup into memory&lt;br /&gt;&amp;gt; The downside: large amount of data collection&lt;br /&gt;&amp;gt; &lt;a href='http://www.isthisfilesafe.com/product/Windows%207%20Prefetch%20Manager%202012_details.aspx' target='_blank' rel='nofollow'&gt;Windows-7-Prefetch-Manager-2012&lt;/a&gt;&lt;br /&gt;&amp;gt; more Info about: &lt;a href='http://support.microsoft.com/kb/2727880/en-us' target='_blank' rel='nofollow'&gt;Windows 7 &amp; SSD: defragmentation, SuperFetch, prefetch&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;enhance virtual Memory Pagefile &lt;br /&gt;&amp;gt; Start Button &amp;gt; Control Panel &amp;gt; System and Security &amp;gt; System &amp;gt; Advanced system settings&lt;br /&gt;&amp;gt; Advanced Tab &amp;gt; Performance Group &amp;gt; Settings &amp;gt; Advanced Tab &lt;br /&gt;&amp;gt; Virtual Memory Group &amp;gt; Change&lt;br /&gt;&lt;br /&gt;&amp;gt; check off Automtically &amp;gt; check your System Drive C: &amp;gt; check Custome size &lt;br /&gt;&amp;gt; The Initial size must be the Recommended Number under the Total paging Group&lt;br /&gt;&amp;gt; The Maximum size should be twice of that Number&lt;br /&gt;&amp;gt; click Set &amp;gt; ok &amp;gt; ok and Restart &lt;br /&gt;&amp;gt; &lt;a href='http://www.youtube.com/watch?v=DWCVhk5gTps' target='_blank' rel='nofollow'&gt;helpvideoguru&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;helper&lt;br /&gt;&amp;gt; &lt;a href='http://system-monitor.org/' target='_blank' rel='nofollow'&gt;System-Monitor-Mini-Gadget&lt;/a&gt;&lt;br /&gt;&amp;gt; &lt;a href='http://www.futuremark.com/benchmarks/3dmark11' target='_blank' rel='nofollow'&gt;3DMark 11 / Free Basic Edition&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&amp;gt; no errors or malfunction &amp;gt; simple: you need more RAM like myself ;)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;marwyn&lt;/b&gt;, &lt;em&gt;Fri, 25 Jan 2013 14:49:29 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;:?:  :cry:  :?:  :cry:  :?: &lt;br /&gt;&lt;br /&gt;I rebuild the Filter 1 to 1 from scatch, but I can`t submit it to the Libary!!!!!&lt;br /&gt;To many Settings??? I had now Crashes with it. &lt;br /&gt;The Filter by itself works fine. &lt;br /&gt;&lt;br /&gt;If you could watch over it again, here is the new one:&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;marwyn&lt;/b&gt;, &lt;em&gt;Fri, 25 Jan 2013 14:50:18 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;...&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;marwyn&lt;/b&gt;, &lt;em&gt;Sat, 26 Jan 2013 02:40:25 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hy GMM!&lt;br /&gt;I think i found the Submit Failed Combination in my Filter :!:&lt;br /&gt;&lt;br /&gt;I send one with lower Setting and without this Comb as a Test with success!&lt;br /&gt;&lt;br /&gt;So can you check this?:&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;marwyn&lt;/b&gt;, &lt;em&gt;Sat, 26 Jan 2013 03:08:00 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Forget it!&lt;br /&gt;I can´t submit without combination.... :?:&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;marwyn&lt;/b&gt;, &lt;em&gt;Mon, 28 Jan 2013 03:43:21 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hy, GMM!&lt;br /&gt;Here is a other one and its similar to the mw_Studio Light_Tri-Filter.&lt;br /&gt;I have tested a lot of combination but i also can't submit it.&lt;br /&gt;I know jet that it has nothing to do with the number of Settings, &lt;br /&gt;because I've already sent some other filter.&lt;br /&gt;The only difference I noticed is, that i use there Math-Combos.&lt;br /&gt;But one further transfer test was not successful.&lt;br /&gt;&lt;br /&gt;If you find something let me now!  :|&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Mon, 28 Jan 2013 07:36:29 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;marwyn, thank you for your reports, we've figured it out. Your issue is caused by an error with Free Ellipse versioning (if you try to create your filter in 4.0 beta you'll see the component has been changed). Please try to replace all Free Ellipses with their obsolete counterparts called Free Ellipse 2.004.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;marwyn&lt;/b&gt;, &lt;em&gt;Mon, 28 Jan 2013 13:32:16 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;:banana:  :D  :ff:  :D  :beer:  :D ....&amp;gt; Great! i will change it. TX!&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Wed, 30 Jan 2013 08:17:48 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I guess the issue has been fixed in 3.012 - you should be able to use Free Ellipse again.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;marwyn&lt;/b&gt;, &lt;em&gt;Wed, 30 Jan 2013 08:33:34 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Great!&lt;br /&gt;I have updated the mw_Studio Light_Tri with 2.004 Version,&lt;br /&gt;but in my mw_Studio Light_Led - Filter must be a similar issue! It doesn`t run....&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;marwyn&lt;/b&gt;, &lt;em&gt;Fri, 01 Feb 2013 03:52:10 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;a new submit failed :!: &lt;br /&gt;&lt;br /&gt;what i have done:&lt;br /&gt;&lt;br /&gt;i´d changed some for around the Edge-Finder, for a better technical Look.&lt;br /&gt;and as i what update it,....failed! -&amp;gt; but i think that not the problem.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;marwyn&lt;/b&gt;, &lt;em&gt;Fri, 01 Feb 2013 03:52:53 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;The Filter:&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Fri, 01 Feb 2013 07:35:34 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;marwyn, thanks again for your report - it uncovered one more issue. &lt;br /&gt;&lt;br /&gt;Please take a look at the IntSlider named &quot;Tech &amp;gt; Profile&quot;. It has a subtle note that the component value is limited to 5. You've encountered a client/server mismatch: the client treats this as a soft warning and allows submission, but when the server checks the submitted file it considers this a Filter Problem and rejects the filter.&lt;br /&gt;&lt;br /&gt;You can wait until we fix this on the server side or you can modify all IntSliders so that they don't display the &quot;Value is limited&quot; note.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;marwyn&lt;/b&gt;, &lt;em&gt;Fri, 01 Feb 2013 08:21:29 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Ok, i think i will wait... the filter is almost there...&lt;br /&gt;For the other Filter it will probably be the same?!...thx&lt;/p&gt;
</description>
</item>
<item><title>Photoshop Elements 11</title> 
		             <dc:creator>Grauer Star</dc:creator> 
		             <category></category> 
		             <pubDate>Wed, 30 Jan 2013 14:55:29 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10688</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10688</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;Grauer Star&lt;/b&gt;, &lt;em&gt;Mon, 03 Dec 2012 12:29:06 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hi,&lt;br /&gt;&lt;br /&gt;i have updated from PSE10 to 11. But Filter Forge 3.011 is not working with PSE11. I've copied the Plugin Files manually from the PSE10 Folders to the PSE11 Folders. After that PSE11 shows Filter Forge in the Plugin Menue but if i click on it something crashes.&lt;br /&gt;Then I've tried to reinstall Filter Forge, but it is not recognizing PSE11.&lt;br /&gt;Any Ideas what I could do else?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;marwyn&lt;/b&gt;, &lt;em&gt;Sat, 19 Jan 2013 00:12:31 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hy! &lt;br /&gt;&lt;br /&gt;This is my Installation-Path and it works fine.&lt;br /&gt;&lt;br /&gt;C:\Program Files (x86)\Adobe\Photoshop Elements 11\Plug-Ins\Filters\Filter Forge 3&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;bagheertje&lt;/b&gt;, &lt;em&gt;Wed, 30 Jan 2013 14:55:29 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hello&lt;br /&gt;&lt;br /&gt;I have the same problem as Grauer Star, today I downloaded the latest update so FF would work with my PSE11. &lt;br /&gt;I have the same installatio-path as you Marwyn, but it just doesn't work; the program crashes and I have to CTRL+ALT+DEL because I can't do anything ...  :(&lt;/p&gt;
</description>
</item>
<item><title>Not Rendering As Seen</title> 
		             <dc:creator>StevieJ</dc:creator> 
		             <category></category> 
		             <pubDate>Mon, 28 Jan 2013 15:41:10 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10879</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10879</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;StevieJ&lt;/b&gt;, &lt;em&gt;Mon, 28 Jan 2013 15:41:10 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;The higher the resolution of renders...the more loss of lighting effects...until the image renders as Matt at about 5000 x 5000 ppi and above...  Also, renders are constantly being hung up, stopped, and won't finish with the &quot;Bad Allocation&quot; errors at this resolution and above...  The higher the resolution, renders won't even start at all...&lt;br /&gt;&lt;br /&gt;&lt;b&gt;I NEED THIS PROGRAM TO RENDER IMAGES EXACTLY HOW THEY ARE SEEN ON MY HD DISPLAY...AND FOR THIS PROGRAM TO BE STABLE IN RENDERING HIGH RESOLUTION IMAGES WITHOUT BEING CONTINUOUSLY HUNG UP AND STOPPED WITH &quot;BAD ALLOCATION&quot; ERRORS!!!&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;...and yes...I'm not happy...I have work that I'm trying to complete...and these problems are royally screwing it up and wasting my time...  Up to version 4.0 and stuff like this is happening???  Drop everything else to try and justify another version for sales...and stabilize the program...   :!:&lt;br /&gt;&lt;br /&gt;Sorry for the vent...but I'm having to go all the way down to a 1000 x 1000 render to get any surface result to look like the display image...then try to increase resolution in PS for printing...and not even close to the resolution quality I should have if FF was rendering correctly...   :cry:&lt;/p&gt;
</description>
</item>
<item><title>log in problem</title> 
		             <dc:creator>MysticBlueRaven</dc:creator> 
		             <category></category> 
		             <pubDate>Mon, 28 Jan 2013 00:38:37 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10875</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10875</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;MysticBlueRaven&lt;/b&gt;, &lt;em&gt;Sat, 26 Jan 2013 06:42:32 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I tried to log in the forum on my new computer and I get incorrect login or password. When I click on forgot your password, click here to retrieve it, I never get an email I wrote support about this and never heard back for them.&lt;br /&gt;Right now I am using my old computer and I tried to change my password in their and it will not let me. Please help&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;MysticBlueRaven&lt;/b&gt;, &lt;em&gt;Mon, 28 Jan 2013 00:38:37 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I figured out my problem&lt;/p&gt;
</description>
</item>
<item><title>Upgrade screen-Paid fee - Now FF won't work</title> 
		             <dc:creator>Amy Hutton</dc:creator> 
		             <category></category> 
		             <pubDate>Wed, 23 Jan 2013 03:40:00 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10845</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10845</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;Amy Hutton&lt;/b&gt;, &lt;em&gt;Sun, 20 Jan 2013 18:50:05 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I pulled up filter forge today from Paintshop Pro X4 and got a notice of an upgrade available for $24, which I of course bought.&lt;br /&gt;&lt;br /&gt;Then I went back to Paintshop to continue to work on an image but I get a bug message.&lt;br /&gt;&lt;br /&gt;&amp;gt;&amp;gt;Operating system:  x64 Edition (6.1 build 7601) Service Pack 1&lt;br /&gt;Physical memory: 7935 MB&lt;br /&gt;Number of processors: 6, available: 6&lt;br /&gt;Processor info: AMD Phenom&amp;#153; II X6 1035T Processor, ~2594 MHz&lt;br /&gt;&lt;br /&gt;Filter Forge x86-SSE2 3.011.26194.10674 Release-SSE2, October 19, 2012 11:17 [1/20/2013 6:39:21 PM Eastern Standard Time]&lt;br /&gt;Exception caught at thread 00000A18 'Application':&lt;br /&gt;&amp;lt;class XFW::RuntimeError&amp;gt; Bound control &amp;lt;class Controls::Panel&amp;gt;@034D3808 overlaps boundaries of splitter control 034D57F0.&lt;br /&gt;&lt;br /&gt;&amp;lt;unknown file&amp;gt;(0) : &amp;lt;unknown function&amp;gt;()+0 at 005AD31E in Filter Forge x86-SSE2.exe&lt;br /&gt;&amp;lt;unknown file&amp;gt;(0) : &amp;lt;unknown function&amp;gt;()+0 at 0067F9C8 in Filter Forge x86-SSE2.exe&lt;br /&gt;&amp;lt;unknown file&amp;gt;(0) : &amp;lt;unknown function&amp;gt;()+0 at 00555A44 in Filter Forge x86-SSE2.exe&lt;br /&gt;&amp;lt;unknown file&amp;gt;(0) : &amp;lt;unknown function&amp;gt;()+0 at 00551A15 in Filter Forge x86-SSE2.exe&lt;br /&gt;&amp;lt;unknown file&amp;gt;(0) : &amp;lt;unknown function&amp;gt;()+0 at 0040F86B in Filter Forge x86-SSE2.exe&lt;br /&gt;&amp;lt;unknown file&amp;gt;(0) : &amp;lt;unknown function&amp;gt;()+0 at 006D227F in Filter Forge x86-SSE2.exe&lt;br /&gt;&amp;lt;unknown file&amp;gt;(0) : &amp;lt;unknown function&amp;gt;()+0 at 0078B6C7 in Filter Forge x86-SSE2.exe&lt;br /&gt;&amp;lt;unknown file&amp;gt;(0) : &amp;lt;unknown function&amp;gt;()+0 at 006D1080 in Filter Forge x86-SSE2.exe&lt;br /&gt;&amp;lt;unknown file&amp;gt;(0) : &amp;lt;unknown function&amp;gt;()+0 at 006D205A in Filter Forge x86-SSE2.exe&lt;br /&gt;&amp;lt;unknown file&amp;gt;(0) : &amp;lt;unknown function&amp;gt;()+0 at 00823914 in Filter Forge x86-SSE2.exe&lt;br /&gt;&amp;lt;unknown file&amp;gt;(0) : &amp;lt;unknown function&amp;gt;()+0 at 008B2BB3 in Filter Forge x86-SSE2.exe&lt;br /&gt;&amp;lt;unknown file&amp;gt;(0) : BaseThreadInitThunk()+18 at 760833AA in C:\Windows\syswow64\kernel32.dll&lt;br /&gt;&amp;lt;unknown file&amp;gt;(0) : RtlInitializeExceptionChain()+99 at 773E9EF2 in C:\Windows\SysWOW64\ntdll.dll&lt;br /&gt;&amp;lt;unknown file&amp;gt;(0) : RtlInitializeExceptionChain()+54 at 773E9EC5 in C:\Windows\SysWOW64\ntdll.dll&lt;br /&gt;CONTEXT_CONTROL: CS:EIP 0023:7660C41F, SS:ESP 002B:001873CC, EBP 0018741C, FLAGS 00200206&lt;br /&gt;CONTEXT_INTEGER: EAX 001873CC, EBX 034D57F0, ECX 00000003, EDX 00000000, ESI 00B211A4, EDI 0018745C&lt;br /&gt;CONTEXT_SEGMENTS: DS 002B, ES 002B, FS 0053, GS 002B  &amp;lt;&amp;lt;&lt;br /&gt;&lt;br /&gt;How do I get the use of PSP back?  Keeps showing a bug screen.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Tue, 22 Jan 2013 06:55:24 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Please delete c:\Users\username\AppData\Roaming\Filter Forge 3\Preferences.xml and try again.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Amy Hutton&lt;/b&gt;, &lt;em&gt;Tue, 22 Jan 2013 10:06:12 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Nope, that didn't work.  Any other ideas?&lt;br /&gt;&lt;br /&gt;Says &quot;Plugin passed bad parameters&quot;&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Wed, 23 Jan 2013 03:40:00 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Please try uninstalling FF and reinstalling again.&lt;/p&gt;
</description>
</item>
<item><title>FF3 Program Soooo Slow</title> 
		             <dc:creator>beekeeper</dc:creator> 
		             <category></category> 
		             <pubDate>Thu, 17 Jan 2013 00:53:57 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10086</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10086</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;beekeeper&lt;/b&gt;, &lt;em&gt;Tue, 19 Jun 2012 21:17:09 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I'm looking for any suggestions as to what may be causing the following problem and how I may rectify it, if that's possible.&lt;br /&gt;&lt;br /&gt;Must confess I haven't been using FF much since the upd ate to 3.008 - or how ever many zeros it has - as, ever since I downloaded it and did a clean install the program itself has been running soooo slowly on my Windows 7 Quad-core laptop.&lt;br /&gt;&lt;br /&gt;I click on the icon to start the program in stand-alone mode and wait...and wait..and wait. Then I start up Task Manager to check if the process is actually running - it is. So I wait some more. Eventually the white outline of the program's GUI displays and then I have to wait for a couple more minutes as it slowly starts to 'fill-in' each element of the GUI.&lt;br /&gt;&lt;br /&gt;When that is finished, it is then a matter of luck as to whether or not it opens up to the last filter I was working with or some other filter I had accessed during the last session. NOTE - the filter render speed itself seems to be fine but that may be only because everything else is so slow.&lt;br /&gt;&lt;br /&gt;When I click on another filter or category to sel ect it, the program - once again - has to think about things for a long time before anything starts happening and it then has to slowly refresh the Presets/Settings tabs once it has decided to do something. The same delay occurs when trying to access the Menu items and the wait time for the Filter Editor or Filter Browser to open is nearly as long as waiting for the program to initiate in the first place.&lt;br /&gt;&lt;br /&gt;On occasion - for no apparently consistent reason - when I try to select another filter or menu item, or open the editor or browser the program crashes completely - no error report or anything.&lt;br /&gt;&lt;br /&gt;I do have the preferences se t for multi-threading.&lt;br /&gt;I make sure I have no other programs running.&lt;br /&gt;I do have a registered copy of the Pro version.&lt;br /&gt;I have the program installed on D: drive - which is internal.&lt;br /&gt;I didn't have this issue with previous versions of FF3 on the same machine.&lt;br /&gt;I have only been running FF as a stand alone while I have this issue.&lt;br /&gt;While the program itself is glacial, it doesn't actually freeze the computer.&lt;br /&gt;&lt;br /&gt;Any suggestions as to what the problem may be/ what I could do or try would be more than greatfully received as the bruise on my forehead fr om all the *headdesk* moments is really pronounced.  :cry:&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sphinx.&lt;/b&gt;, &lt;em&gt;Wed, 20 Jun 2012 00:44:58 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Perhaps a very aggressive virus scanner or firewall is causing this? Try disabling what you have installed temporarily and see if it helps.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;beekeeper&lt;/b&gt;, &lt;em&gt;Wed, 20 Jun 2012 03:06:32 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Thanks for the suggestion Sphinx  :) - I had tried it without the virus scanner, unsuccessfully but had thought of firewall. Just tried that as well - no joy, I'm afraid.  :(&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Wed, 20 Jun 2012 03:17:02 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;When starting up Task Manager as you describe, please watch not for Filter Forge but for other processes that eat up your CPU.&lt;br /&gt;&lt;br /&gt;On a second thought, the cause may be not the CPU but the hard drive. Run Task Manager, click Performance &amp;gt; Resource monitor &amp;gt; Disk and watch for I/O activity while Filter Forge starts (you may also want to defragment your D: drive).&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Morgantao&lt;/b&gt;, &lt;em&gt;Wed, 20 Jun 2012 06:52:07 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hey, Beekeeper, how many filters do you have in your library?&lt;br /&gt;I have the whole library installed, so it takes a long time for FF to load (although I don't have the slow GUI drawing problem you mention).&lt;br /&gt;&lt;br /&gt;Also, How much free memory do you have?  Some times when windows is running low on memory, it's trying to write a page file but also at the same time do other stuff (Like loading FF). The result is a VERY slow EVERYTHING.&lt;br /&gt;You can use the Windows 7 CPU meter gadget to see how much of the memory is available, and how bad is the CPU usage.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;beekeeper&lt;/b&gt;, &lt;em&gt;Wed, 20 Jun 2012 16:38:05 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Thanks for the further suggestions.  :) I will get to the heart of this mystery yet.&lt;br /&gt;&lt;br /&gt;GMM - I will see what the Task Manager reports as you suggested and see what that turns up. I will also try defragging the D: drive if that shows up nothing, but I'm hoping that is not the issue as D: is the partition that I use solely for the installation of programs - I save data to another partition to minimise the fragmentation of the program partition.&lt;br /&gt;&lt;br /&gt;Morantao - I must confess I have nearly all the filters available in my library at the moment so I'm not surprised that the program does take time to load initially. [But some clever FF user created a fantastic Filter Organiser which I'll be using to weed out quite a few filters  ;) ]&lt;br /&gt;&lt;br /&gt;My issue has been the sluggish nature of FF once it has loaded. It is perplexing me because I have never encountered this issue before with previous versions of FF, even with a huge library of filters.&lt;br /&gt;&lt;br /&gt;Free memory - right at this moment with only Firefox open, it says that I have just over 1 Gig of memory free. [I don't know if this points to a potential caching issue but it also says that I have just over 1800 Mb of memory tied up in Cache - and I'm not sure what might be causing that as I try to run as lean a machine as I can. The only other program I've had running today is FF.]&lt;br /&gt;&lt;br /&gt;Again, thanks for all the advice and suggestions so far. Much appreciated.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Hailie&lt;/b&gt;, &lt;em&gt;Thu, 17 Jan 2013 00:53:57 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Im having a terrible time with FF3 as well. I just had a brand new computer built and theres no reason why it should be maxing out my system just looking at filters. But it does and I start getting warnings after looking at about 5 filters. Its like they are massive files trying to load. The resources its taking to load is boggling. I just bought this program last week and im sad that i cannot even use it and on a brand new computer no less. A custom built one thats less then 3 weeks old.&lt;/p&gt;
</description>
</item>
<item><title>Filter Forge Backup Library Download not working</title> 
		             <dc:creator>Minnie</dc:creator> 
		             <category></category> 
		             <pubDate>Wed, 09 Jan 2013 07:55:19 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10792</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10792</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;Minnie&lt;/b&gt;, &lt;em&gt;Sat, 05 Jan 2013 12:14:42 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hi,  I don't know if there is anyone who can help.  I recently purchased FF 3 and also the backup library.  I have vista installed on my pc and the instructions I received was to copy the downloaded filter library into appdata/roaming.  I have done this but this file does not appear to be able synchronize with Filter Forge.  I am assuming I have to do something else to get it to work and I have tried all sorts of combinations,without success. There is also showing in the list of contents FF 3.  The file I copied here is a zip file. I have tried unzipping it but it makes difference.  I've tried contacting FF but haven't had a reply I suppose it's down to the Christmas period. :?:&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;profundities&lt;/b&gt;, &lt;em&gt;Wed, 09 Jan 2013 07:55:19 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hi Minnie,&lt;br /&gt;&lt;br /&gt;I've just made the same purchase. The directions sent in the email that contains the zip file is missing the first step. Here is what I did that worked for me:&lt;br /&gt;&lt;br /&gt;-I unzipped the file using 7-zip&lt;br /&gt;&lt;br /&gt;-Then I copied the Filter Forge 3 file (look within the file you unzipped for it) to (just as the email directed for Vista users):&lt;br /&gt;&lt;br /&gt; C:\Users\Your_User_Name\AppData\Roaming  &lt;br /&gt;&lt;br /&gt;- It is important to note that I already had a Filter Forge file there but that did not cause a problem at all&lt;br /&gt;&lt;br /&gt;- Next I did click 'Yes to All' when I was asked for confirmation to many different warning windows&lt;br /&gt;&lt;br /&gt;Once I did all of this all of the filters loaded beautifully. Many thanks to whomever took the time to send them! :)&lt;br /&gt;&lt;br /&gt;I hope this helps you Minnie :)&lt;/p&gt;
</description>
</item>
<item><title>Rendering Bug</title> 
		             <dc:creator>StevieJ</dc:creator> 
		             <category></category> 
		             <pubDate>Tue, 08 Jan 2013 22:43:12 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10808</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10808</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;StevieJ&lt;/b&gt;, &lt;em&gt;Tue, 08 Jan 2013 22:43:12 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;My high res images are not rendering as seen...while lower res renders of the same images are fine...  All reflective, metallic, and lighting is completely flattened on high res renders...  Definite render bug...at 4000 x 4000 and above...&lt;/p&gt;
</description>
</item>
<item><title>Error: Filter Forge Bata 4 wont open</title> 
		             <dc:creator>PrimeTime</dc:creator> 
		             <category></category> 
		             <pubDate>Tue, 08 Jan 2013 10:48:30 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10807</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10807</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;PrimeTime&lt;/b&gt;, &lt;em&gt;Tue, 08 Jan 2013 10:48:30 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&amp;lt;class XFW::ArgumentError&amp;gt; The handle 009CB2B0 is not a valid window handle.&lt;br /&gt;Adobe Photoshop CS6 error message:&lt;br /&gt;Could not complete the Filter Forge 4 command because of a problem with the module interface.&lt;br /&gt;&lt;br /&gt;I'm running Win8/64b / Photoshop CS6&lt;br /&gt;&lt;br /&gt;Tried re-installing 3x's with same result.&lt;/p&gt;
</description>
</item>
<item><title>Rendering</title> 
		             <dc:creator>bobbijake</dc:creator> 
		             <category></category> 
		             <pubDate>Fri, 04 Jan 2013 23:05:55 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10779</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10779</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;bobbijake&lt;/b&gt;, &lt;em&gt;Sun, 30 Dec 2012 15:03:20 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I am trying out the free trial of FF to see if it will work for me. I work with images 3600 x 3600 and up.  I am testing filters under &quot;creative&quot; such as paint HDRist and watercolor. The rendering is taking hours to complete.  &lt;br /&gt;&lt;br /&gt;I am also getting an error message but I know that this is a bug that FF is working on. (&amp;lt;class XFW::Kernel::StdException&amp;gt; bad allocation). &lt;br /&gt;&lt;br /&gt;I am using a duel core processor, windows/vista. I am using FF stand alone. My question is: are there any settings that I can choose to speed things up or is this normal and should I expect it every time with this size file and this type of filter?&lt;br /&gt;&lt;br /&gt;Thanks for any help.&lt;br /&gt;&lt;br /&gt;Bobbi&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Mon, 31 Dec 2012 06:12:28 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;If you search in the forums there are many posts and threads about the &lt;a href='http://filterforge.com/forum/search.php?q=BAD+ALLOCATION&amp;FORUM_ID=0' target='_blank' rel='nofollow'&gt;BAD ALLOCATION&lt;/a&gt; error and the answer from Filter Forge support is that they are working on it to fix it, so there is no solution for now.&lt;br /&gt;&lt;br /&gt;The only possible solution is that this happens much less if you use filter forge as a plugin rather than the standalone&lt;br /&gt;&lt;br /&gt;See the others threads available in the forum from the link above for more information&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;bobbijake&lt;/b&gt;, &lt;em&gt;Mon, 31 Dec 2012 09:00:11 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Thanks for the reply SpaceRay.&lt;br /&gt;&lt;br /&gt;I have been reading the forums for a couple of days now, so I know that Bad Allocation is a bug.&lt;br /&gt;&lt;br /&gt;I also see in the forums that with some files and some filters FF runs slow, but what I can't find is why I can't get it to work at all.  &lt;br /&gt;&lt;br /&gt;I have been running a rendering all night and it is still going now, so obviously it is not going to work.  I have tried three different filters and three different files with the same results. Each one receives the error message about 3/4 of the way through and after many hours of rendering they will not save.&lt;br /&gt;&lt;br /&gt;I have PS CS5.5 64 bit so I understand that I can't us it as a plug in.&lt;br /&gt;&lt;br /&gt;Thanks &lt;br /&gt;Bobbi&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;ddaydreams&lt;/b&gt;, &lt;em&gt;Mon, 31 Dec 2012 21:54:40 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Still buggy at higher res on some systems with some filters.&lt;br /&gt;For Hi res &lt;b&gt;FF works best for me using FF in 64Bit Photoshop 5.1&lt;/b&gt;&lt;br /&gt;I don't know if there's a difference with PS 5.5 that would not allow you run FF as plugin.&lt;br /&gt;FF can do 5000 X 5000 image for me on 64Bit Photoshop win 7 64 16bg mem&lt;br /&gt;On the same system Stand Alone FF hangs and does Bad Allocation error at 3000 X 3000 with one filter I'm using.&lt;br /&gt;&lt;br /&gt;I suspect that the advertized 6000 x 6000 can be done with some filters.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;bobbijake&lt;/b&gt;, &lt;em&gt;Mon, 31 Dec 2012 22:54:49 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Got the plug in to work on my CS5.5 and now it's not crashing. Still a bit slow to render, but it works so I don't mind. I also turned off anti aliasing and turned down the ram to 60%. &lt;br /&gt;Bobbi&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Skybase&lt;/b&gt;, &lt;em&gt;Mon, 31 Dec 2012 23:33:50 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;wait before you jump to conclusions regarding that obnoxious issue, on the Mac version, I've been able to render pretty large images no problem, and this goes with pretty much any filter. I use standalone copy instead of running it through Photoshop. Maybe I just have a freak case of things actually running perfectly lol.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Morgantao&lt;/b&gt;, &lt;em&gt;Wed, 02 Jan 2013 05:04:49 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Skybase, the fact you're running it on Mac, I think, is the solution to the problem.  As far as I understand, the bad allocation error is a windows only issue.&lt;br /&gt;Then again, Mac version can't reliably run LUA scripts.&lt;br /&gt;&lt;br /&gt;Nobody's perfect, eh?  :D&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;StevieJ&lt;/b&gt;, &lt;em&gt;Fri, 04 Jan 2013 23:05:55 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I'm rendering 8000 x 8000 and above...and had the same issue...  Make sure you have your computer's power settings for 'Sleep' and 'Hybernation' time settings to &quot;Never&quot;...  Can allow Display to go off...  This corrected the &quot;Bad Allocattion&quot; error...  I'm still getting render hangups and it stops rendering in the middle of the image...so trying FF Render Setting to &quot;Use Single Core&quot; with max 90% RAM...much slower...but at least finishes the render...  Hope this helps...    :)&lt;/p&gt;
</description>
</item>
<item><title>Submission preview image-rendering produces different results</title> 
		             <dc:creator>Tim2501</dc:creator> 
		             <category></category> 
		             <pubDate>Tue, 11 Dec 2012 05:32:48 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10722</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10722</guid>
		             <description><script>oForumForm['images_for_resize'].push('popup_1953007084');</script>
<script>oForumForm['images_for_resize'].push('popup_2060964420');</script>
<script>oForumForm['images_for_resize'].push('popup_11491956');</script>
<script>oForumForm['images_for_resize'].push('popup_107289227');</script>
&lt;p&gt;&lt;small&gt;&lt;b&gt;Tim2501&lt;/b&gt;, &lt;em&gt;Tue, 11 Dec 2012 04:21:23 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;When I submitted my Filter &lt;a href='http://www.filterforge.com/filters/11074.html' target='_blank' rel='nofollow'&gt;&quot;Whisp&quot;&lt;/a&gt; yesterday, the preview renders didn't look like my presets at all:&lt;br /&gt;What the submission-renderer made:&lt;br /&gt;&lt;img src='http://www.filterforge.com/filters/11074.jpg'  alt='Image' onload=&quot;try{window.onForumImageLoad(this, '300', '300', 'FORUM');}catch(e){}&quot;  id='popup_1953007084' border='0' /&gt;&lt;br /&gt;What the preset does look like:&lt;br /&gt;&lt;img src='https://dl.dropbox.com/u/36498915/Pictures/Whisp.png'  alt='Image' onload=&quot;try{window.onForumImageLoad(this, '300', '300', 'FORUM');}catch(e){}&quot;  id='popup_2060964420' border='0' /&gt;&lt;br /&gt;&lt;br /&gt;The same thing ocurred to me a while ago with my Filter &lt;a href='http://www.filterforge.com/filters/10733.html' target='_blank' rel='nofollow'&gt;&quot;Glow wire&quot;&lt;/a&gt;:&lt;br /&gt;&lt;br /&gt;Rendered on upload:&lt;br /&gt;&lt;img src='http://www.filterforge.com/filters/10733.jpg'  alt='Image' onload=&quot;try{window.onForumImageLoad(this, '300', '300', 'FORUM');}catch(e){}&quot;  id='popup_11491956' border='0' /&gt;&lt;br /&gt;Actual preset rendered in FF:&lt;br /&gt;&lt;img src='https://dl.dropbox.com/u/36498915/Pictures/Glow%20wire.png'  alt='Image' onload=&quot;try{window.onForumImageLoad(this, '300', '300', 'FORUM');}catch(e){}&quot;  id='popup_107289227' border='0' /&gt;&lt;br /&gt;&lt;br /&gt;Is there a way to fix that, because the presets I made look waaay better than the 'random' presets that got rendered...&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Tue, 11 Dec 2012 05:32:48 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Is there a way to fix that&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Check the 'Seamless tiling' checkbox, and your local presets should match those on the website.&lt;/p&gt;
</description>
</item>
<item><title>In-Editor Render Preview Stuck</title> 
		             <dc:creator>Betis</dc:creator> 
		             <category></category> 
		             <pubDate>Mon, 10 Dec 2012 02:38:49 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10709</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10709</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;Betis&lt;/b&gt;, &lt;em&gt;Sun, 09 Dec 2012 02:58:40 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Background Info: When outside the filter editor, we are allowed to switch between a smaller preview size and the full render size.&lt;br /&gt;&lt;br /&gt;The Problem: When inside the filter editor, this preview/full size is &quot;locked&quot; or &quot;stuck&quot; without a way to switch.&lt;br /&gt;&lt;br /&gt;If I make a new image while in the editor (a feature I like ;) ) it doesn't fix the problem, and remains the percentage smaller that the old image preview was at.&lt;br /&gt;&lt;br /&gt;For example I tried making a new 600x600 image and it remained about 150x150 because the last larger image had been sub-sampled for the preview size.&lt;br /&gt;&lt;br /&gt;Leaving the editor and making a new image or switching between preview-size toggle is the only workaround.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Crapadilla&lt;/b&gt;, &lt;em&gt;Sun, 09 Dec 2012 07:40:32 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;a href='http://www.filterforge.com/forum/read.php?FID=8&amp;TID=1944&amp;MID=12834&amp;sphrase_id=1344421' target='_blank' rel='nofollow'&gt;Clicky!&lt;/a&gt; ;)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Betis&lt;/b&gt;, &lt;em&gt;Mon, 10 Dec 2012 02:38:49 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;:(&lt;/p&gt;
</description>
</item>
<item><title>Questions and Troubles</title> 
		             <dc:creator>QuirkySue</dc:creator> 
		             <category></category> 
		             <pubDate>Thu, 06 Dec 2012 16:31:52 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10703</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10703</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;QuirkySue&lt;/b&gt;, &lt;em&gt;Thu, 06 Dec 2012 16:07:46 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I used ff trial a long time ago on my old system with no problems. Loved it. Now I have a brand new computer running windows 8 that I'm setting up today and I just downloaded the compatible version trial. It's been a while. I'm rusty but I remember it being fairly easy.&lt;br /&gt;&lt;br /&gt;I can't download any filters. It says unable to connect to server although I'm obviously connected. Tried changing tools/options to obsolete library as suggested in another thread. Tried latest versions of both IE and Chrome. &lt;br /&gt;&lt;br /&gt;I want to buy the basic version while the sale price is still offered (70% off is a no brainer) but this is frustrating and a major turn off for a program I already know I love. Is the server down? What else can I try? I did contact support but hopefully the forums are faster to fix this problem and they can answer my other questions later.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Sharandra&lt;/b&gt;, &lt;em&gt;Thu, 06 Dec 2012 16:21:54 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I think the server is down, I can´t download filters either atm.&lt;br /&gt;It´s probably still because of the Provider change, maybe they´re still in the process of moving the library over or something.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;QuirkySue&lt;/b&gt;, &lt;em&gt;Thu, 06 Dec 2012 16:31:52 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Is there a server status update somewhere that will let me know when it's down (or back up?!) so I don't waste anymore time fighting with something that isn't broken on my end.&lt;/p&gt;
</description>
</item>
<item><title>Can't contact server with WinXP? Can't get updates?</title> 
		             <dc:creator>Tsu Dho Nimh</dc:creator> 
		             <category></category> 
		             <pubDate>Tue, 04 Dec 2012 17:52:38 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10693</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10693</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;Tsu Dho Nimh&lt;/b&gt;, &lt;em&gt;Tue, 04 Dec 2012 14:48:35 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I'm running FF3.0 on a VMware virtual machine: Windows XP inside Linux Ubuntu.&lt;br /&gt;&lt;br /&gt;I just upgraded to 3.0Pro (yay me!) and can't contact the server to get the latest version or filter updates. Even trying to go to filterforge.com gets a &quot;server not found&quot; error.&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Firefox can't establish a connection to the server at filterforge.com.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;I know I have a working Internet connection because I can go to yahoo.com and other websites using Firefox and WinXP. &lt;br /&gt;&lt;br /&gt;Attached is the error message when I try to download and install the newest version. I've installed new versions before with no problems.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Tsu Dho Nimh&lt;/b&gt;, &lt;em&gt;Tue, 04 Dec 2012 14:49:30 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Trying that file attachment again.  And, obviously y'all are online, because Firefox via Linux (same computer, modem, and wires) finds you just fine.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Tsu Dho Nimh&lt;/b&gt;, &lt;em&gt;Tue, 04 Dec 2012 17:52:38 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Fixed it!  :) &lt;br /&gt;&lt;br /&gt;On advice from VMWare forum user, I shut down all software, shut down the XP virtual machine, shut down the VMWare server inside Linux, and restarted everything including the Linux host.&lt;br /&gt;&lt;br /&gt;They are all working together again.&lt;/p&gt;
</description>
</item>
<item><title>Mouse wheel doesn't work on secondary monitor</title> 
		             <dc:creator>Ian Prest</dc:creator> 
		             <category></category> 
		             <pubDate>Mon, 03 Dec 2012 06:35:07 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10687</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10687</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;Ian Prest&lt;/b&gt;, &lt;em&gt;Sun, 02 Dec 2012 17:47:08 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hi,&lt;br /&gt;&lt;br /&gt;The mouse wheel is not working in either the filter-editor or the main window if Filter Forge is placed on my secondary monitor.  If I place the application so that it straddles both monitors, the mouse wheel only works when the mouse is over the part of it on the main monitor.&lt;br /&gt;&lt;br /&gt;I've monitored the window-messages, and can confirm that the application is receiving WM_MOUSEWHEEL messages in both cases.&lt;br /&gt;&lt;br /&gt;The problem is almost certainly that my secondary monitor is to the left of my primary monitor, which causes the mouse x-coordinates to be negative on that monitor.  I suspect FF is (incorrectly) assuming the negative coordinates are invalid and ignoring the WM_MOUSEWHEEL message.  This is further corroborated by the fact that if I (virtually) swap my primary and secondary monitors so that the secondary monitor uses positive x-coordinates, the mouse wheel works fine.&lt;br /&gt;&lt;br /&gt;The problem affect both the current version of FF3, and the betas of FF4.&lt;br /&gt;&lt;br /&gt;Thanks,&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Mon, 03 Dec 2012 06:35:07 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Thanks for your report, I've assigned this to the devs.&lt;/p&gt;
</description>
</item>
<item><title>Free Trial Ended - First Install</title> 
		             <dc:creator>JPiiONEFOURONE</dc:creator> 
		             <category></category> 
		             <pubDate>Sun, 02 Dec 2012 17:47:36 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10483</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10483</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;JPiiONEFOURONE&lt;/b&gt;, &lt;em&gt;Sat, 15 Sep 2012 12:02:55 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hey guys,&lt;br /&gt;&lt;br /&gt;I just downloaded and installed the free trial and it says my trial has ended, even though it's the fist time I have run it.&lt;br /&gt;&lt;br /&gt;I have never installed any version of Filter Forge before, why is it saying this?&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;&lt;br /&gt;JPiiONEFOURONE&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Mon, 17 Sep 2012 03:32:09 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Please contact the support team with this issue.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Milo002&lt;/b&gt;, &lt;em&gt;Wed, 28 Nov 2012 22:47:42 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Same thing just happened to me.  I had Comodo and found the instructions to get it to work.  I will write try contacting support as well.  I hope the pricing doesn't change before I can test to see if this will work for what I need.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Ian Prest&lt;/b&gt;, &lt;em&gt;Sat, 01 Dec 2012 12:11:14 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Had the same thing happen to me.  Never tried it before (unless you count a trial of 1.0 many moons and several computers ago).  No antivirus/firewall installed.  Tried uninstalling &amp; reg-cleaning, but to no avail.&lt;br /&gt;&lt;br /&gt;Luckily, the 4.0 beta seems to work, so I'm able to evaluate it that way.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Ian Prest&lt;/b&gt;, &lt;em&gt;Sun, 02 Dec 2012 17:47:36 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;And thankfully, FF3 works fine now that I've registered.  :)&lt;/p&gt;
</description>
</item>
<item><title>error of memory</title> 
		             <dc:creator>chaddr18</dc:creator> 
		             <category></category> 
		             <pubDate>Fri, 30 Nov 2012 02:58:38 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10676</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10676</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;chaddr18&lt;/b&gt;, &lt;em&gt;Wed, 28 Nov 2012 20:08:36 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;:?: error when i open the program and it frezze mi photoshop when i open it form photoshop&lt;br /&gt;windows 7 32bits&lt;br /&gt;2gb ram&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Thu, 29 Nov 2012 05:22:33 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Do you use &lt;a href='http://www.filterforge.com/forum/read.php?FID=8&amp;TID=8705' target='_blank' rel='nofollow'&gt;Comodo, ZoneAlarm or other incompatible software&lt;/a&gt;?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;chaddr18&lt;/b&gt;, &lt;em&gt;Thu, 29 Nov 2012 09:33:12 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;no i dont use any of that software&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;CFandM&lt;/b&gt;, &lt;em&gt;Thu, 29 Nov 2012 10:38:54 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I see you have the filter forge folder opened....Did you open FF from the plug-in menu in Photoshop or did you double click on the FF icon in the folder that you have opened?..&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;chaddr18&lt;/b&gt;, &lt;em&gt;Thu, 29 Nov 2012 12:38:04 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;both nome works&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;CFandM&lt;/b&gt;, &lt;em&gt;Thu, 29 Nov 2012 13:05:50 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Try opening Filter Forge with nothing else opened......&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;chaddr18&lt;/b&gt;, &lt;em&gt;Thu, 29 Nov 2012 15:54:18 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Try opening Filter Forge with nothing else opened......&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;i tried everything&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Fri, 30 Nov 2012 02:58:38 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Please reboot into Safe Mode and try running Filter Forge from Safe mode.&lt;/p&gt;
</description>
</item>
<item><title>transparent background has  preview image</title> 
		             <dc:creator>Drookit</dc:creator> 
		             <category></category> 
		             <pubDate>Wed, 28 Nov 2012 23:55:04 -0500</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10673</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10673</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;Drookit&lt;/b&gt;, &lt;em&gt;Tue, 27 Nov 2012 23:19:45 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;trying to save images  with transparent background, preview image cannot be removed, making  the output absolutely useless. Why is &quot;none&quot; not one of the choices in preview images.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Drookit&lt;/b&gt;, &lt;em&gt;Tue, 27 Nov 2012 23:21:09 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;totally new at this BTW&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Skybase&lt;/b&gt;, &lt;em&gt;Wed, 28 Nov 2012 02:48:41 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;If you go to the file menu there's &quot;new&quot; :) By default it'll give you a white image but you can change colors and transparency there.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;Drookit&lt;/b&gt;, &lt;em&gt;Wed, 28 Nov 2012 23:55:04 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Did the trick ...would nevr had  thought of that , &lt;br /&gt;&lt;br /&gt;Thanks  much Skybase :)&lt;/p&gt;
</description>
</item>
<item><title>All My Favorites Lost When Updating FF ???</title> 
		             <dc:creator>DisTrash</dc:creator> 
		             <category></category> 
		             <pubDate>Thu, 01 Nov 2012 04:43:16 -0400</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10633</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10633</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;DisTrash&lt;/b&gt;, &lt;em&gt;Fri, 26 Oct 2012 12:15:08 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hello,&lt;br /&gt;&lt;br /&gt;I update my FF 3 to FF 3x and i lost all my favorites and my presets, how to restore it or found them back ?&lt;br /&gt;&lt;br /&gt;I don't remember they names at all, nor the filters i tweaked  (my presets on filters).&lt;br /&gt;&lt;br /&gt;Can i bring them back in my menus or where to search on my computer ?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Thanks a lot !&lt;br /&gt;&lt;br /&gt;Best Regards.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;DisTrash&lt;/b&gt;, &lt;em&gt;Tue, 30 Oct 2012 18:25:09 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hi,&lt;br /&gt;&lt;br /&gt;Nobody can help me ?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Thanks a lot !!&lt;br /&gt;&lt;br /&gt;Best Regards.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;PS : If this post is in the wrong section, moderators can you replace it in the good section (and le me know, to found it please ^^&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;;) ;) ;) ;) ;) ;) ;) ;) ;)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Wed, 31 Oct 2012 02:48:48 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;DisTrash, nobody replies because you haven't specified much detail about your issue. What OS version do you use?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;DisTrash&lt;/b&gt;, &lt;em&gt;Wed, 31 Oct 2012 15:01:19 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hi,&lt;br /&gt;&lt;br /&gt;Ok i understand.&lt;br /&gt;&lt;br /&gt;I use Windows 7 pro x64&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I also used a recovery data software for another hard drive, but it seems some of my softwares are to be resintalled, i don't know why ? :( :( :( &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Thanks a lot.&lt;br /&gt;&lt;br /&gt;Best Regards.&lt;br /&gt;&lt;br /&gt;;) ;) ;)&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Thu, 01 Nov 2012 04:43:16 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;On Windows custom presets are stored in the c:\Users\YourUserName\AppData\Roaming\Filter Forge 3\My Presets folder, and favorites are stored in the c:\Users\YourUserName\AppData\Roaming\Filter Forge 3\favorites.xml.&lt;/p&gt;
</description>
</item>
<item><title>WEA_CURRECTION_ERROR on Windows 8</title> 
		             <dc:creator>JesusSheep</dc:creator> 
		             <category></category> 
		             <pubDate>Fri, 26 Oct 2012 10:04:38 -0400</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10629</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10629</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;JesusSheep&lt;/b&gt;, &lt;em&gt;Fri, 26 Oct 2012 10:04:38 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Filter forge 3 Crashed Windows 8&lt;/p&gt;
</description>
</item>
<item><title>error to open beta4</title> 
		             <dc:creator>jclP</dc:creator> 
		             <category></category> 
		             <pubDate>Mon, 08 Oct 2012 13:48:33 -0400</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10563</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10563</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;jclP&lt;/b&gt;, &lt;em&gt;Thu, 04 Oct 2012 03:49:32 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;hyi,&lt;br /&gt;&lt;br /&gt;error  top open beta4 ,message box &quot;cannot load'local normalization.ffxml&quot; the file format is invalid.&lt;br /&gt;&lt;br /&gt;os:win7 64b&lt;br /&gt; 	  	&lt;br /&gt;What must he do to correct this!&lt;br /&gt;&lt;br /&gt;regards,&lt;br /&gt;jclp&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;jclP&lt;/b&gt;, &lt;em&gt;Mon, 08 Oct 2012 13:48:33 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;hi,&lt;br /&gt;&lt;br /&gt;ok ,problem found,&lt;br /&gt;&lt;br /&gt;\my filter: deleted local normalization.ffxml&lt;br /&gt;&lt;br /&gt;no = ok&lt;br /&gt;not message box&lt;br /&gt;&lt;br /&gt;jc&lt;/p&gt;
</description>
</item>
<item><title>Unable to download filters</title> 
		             <dc:creator>InspiredArts</dc:creator> 
		             <category></category> 
		             <pubDate>Sun, 07 Oct 2012 16:54:41 -0400</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10572</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10572</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;InspiredArts&lt;/b&gt;, &lt;em&gt;Sun, 07 Oct 2012 01:10:12 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I downloaded and installed Forge Filter 4 and though everything seems to be working correctly I can't get the filter from the website to open in Filter Forge on the desktop.&lt;br /&gt;&lt;br /&gt;with Firefox I do get a pop-up box asking which application I should use to open the link. I chose Filter Forge and then nothing happens.&lt;br /&gt;&lt;br /&gt;I also tried IE9 which i very rarely use but thought I'd give it a go.&lt;br /&gt;&lt;br /&gt;Don't know if this is a thing for problems or 4.0 beta - I'll post there as well.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Sun, 07 Oct 2012 16:54:41 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;&lt;a href='http://filterforge.com/forum/read.php?FID=8&amp;TID=9427' target='_blank' rel='nofollow'&gt;BEFORE Posting an error downloading FF filters PLEASE see this thread&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;see also my answer in your other thread&lt;br /&gt;&lt;br /&gt;&lt;a href='http://filterforge.com/forum/read.php?FID=17&amp;TID=10573' target='_blank' rel='nofollow'&gt;http://filterforge.com/forum/read.php?FID=17&amp;TID=10573&lt;/a&gt;&lt;/p&gt;
</description>
</item>
<item><title>BEFORE Posting an error downloading FF filters PLEASE see this thread</title> 
		             <dc:creator>SpaceRay</dc:creator> 
		             <category></category> 
		             <pubDate>Sun, 07 Oct 2012 16:51:16 -0400</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=9427</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=9427</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Wed, 01 Feb 2012 23:05:28 -0500&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hello, &lt;br /&gt;I have seen lots of threads asking for help because they have errors downloading filters and can´t do it and feel frustated and wonder WHY I can´t do it.&lt;br /&gt;&lt;br /&gt;Well I want help you here and have some sugesstions you can try if you have problems with downloading filters.&lt;br /&gt;&lt;br /&gt;Please try one or all the follow suggestions to fix and solve the problem of downloading.&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;u&gt;&lt;b&gt;SUGESSTIONS AND TIPS TO TRY WHEN HAVING PROBLEMS DOWNLOADING FF FILTERS &lt;/b&gt;&lt;/u&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;1 - THE FILTER DOWNLOADING PROBLEM IS FROM THE FF ONLINE LIBRARY OR FROM THE FORUM?&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;2 - TRY MANY DIFFERENT BROWSERS&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;3 - DO YOU GET THE &quot;get_families_versions-list() failed.&quot; WHEN TRIED TO DOWNLOAD A FILTER ?&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;4 - NEED URGENTLY TO DOWNLOAD A FILTER AND NONE OF THE ABOVE THINGS WORK?&lt;br /&gt;TRY THE FILTER FORGE BROWSER INSIDE FF&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;5 - HAVE YOU CHANGED YOUR SECURITY SOFTWARE BEFORE THE ERROR HAPPENS?&lt;br /&gt;ARE YOU USING SOME OF THE INCOMPATIBLE SECURITY APPLICATION WITH FF ?&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;u&gt;6 - ARE YOU GETTING A INTERNET ERROR MESSAGE THAT FF CAN´T CONNECT TO DOWNLOAD FILTERS? DO YOU HAVE A PROXY?&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;7 - UNINSTALL AND REINSTALL FILTER FORGE MAKING A BACKUP OF YOUR FILTERS&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;u&gt;8 - IF STILL YOU CAN´T FIX IT YOU CAN TRY TO CLEAN YOUR REGISTRY IN WINDOWS&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;If I find more options or possible errors that are not here in this 8 points I will put them in a post below in this thead.&lt;br /&gt;&lt;br /&gt;Here below are this points more explained in full detail&lt;br /&gt;&lt;br /&gt;____________________________________________________________________________________&lt;br /&gt;&lt;u&gt;&lt;b&gt;1 - THE FILTER DOWNLOADING PROBLEM IS FROM THE FF ONLINE LIBRARY OR FROM THE FORUM?&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;____________________________________________________________________________________&lt;br /&gt;&lt;br /&gt;If you are trying to download a filter that has been uploaded to the forum and you are NOT getting the .ffxml file that should be please read this thread here&lt;br /&gt;&lt;br /&gt;&lt;a href='http://filterforge.com/forum/read.php?FID=5&amp;TID=9375' target='_blank' rel='nofollow'&gt;Do not use Internet Explorer to download .ffxml files from the forum&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://filterforge.com/forum/read.php?FID=8&amp;TID=8908' target='_blank' rel='nofollow'&gt;Found bug in Internet explorer 9 when try download FF filters (.ffxml file) from the forum&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;____________________________________________________________________________________&lt;br /&gt;&lt;u&gt;&lt;b&gt;2 - TRY MANY DIFFERENT BROWSERS&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;____________________________________________________________________________________&lt;br /&gt;&lt;br /&gt;Probably you are trying to downloading to download one filter with ONE of the available browsers, and after trying many times you can´t do it. &lt;br /&gt;&lt;br /&gt;Have you tried to download the same filter with ANOTHER DIFFERENT browser ?&lt;br /&gt;&lt;br /&gt;It has happened to me that sometimes using one browser it does not work, BUT when I try another I CAN get it to download. Do not ask why this happens.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;There are at least 5 very well known and popular browsers available:&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.firefox.com' target='_blank' rel='nofollow'&gt;Firefox&lt;/a&gt;&lt;br /&gt;&lt;a href='http://www.opera.com' target='_blank' rel='nofollow'&gt;Opera&lt;/a&gt;&lt;br /&gt;Google Chrome&lt;br /&gt;Internet Explorer&lt;br /&gt;Safari (Windows and Mac versions)&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;USING INTERNET EXPLORER&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Be aware that Internet explorer have 2 versions, one for 32 bit and another for 64 bit, and they work in different way, and sometimes one can see well a webpage and the other can´t.&lt;br /&gt;&lt;br /&gt;Also if you use Internet Explorer you can activate the &quot;Compatible view&quot; option by clicking on the first icon after the loupe close to URL address box. Looks like a page cut in half. This sometimes can solve and fix things, please try it with and without.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;IS RECOMMENDED ALSO TO USE THE LATEST VERSION OF THE BROWSERS&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;The browser are updated and have many versions changed very frequently, so if you are having a problem, is possible that in a newer version, this have been already been fixed.&lt;br /&gt;&lt;br /&gt;____________________________________________________________________________________&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;3 - DO YOU GET THE &quot;get_families_versions-list() failed.&quot; WHEN TRIED TO DOWNLOAD A FILTER ?&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;The best solution and fix I found is to wait some time and will be fixed itself, see below&lt;br /&gt;____________________________________________________________________________________&lt;br /&gt;&lt;br /&gt;I have copied this post fr om another thread&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;When I try to download a filter I get the following error: &lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Initial data download failed. Reason: 'get_families_versions-list() failed.'.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;I tried more than one filter, and I keep getting this error. Yesterday I got no errors.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;YES, this can happen frequently, perhaps today you can download without any problem and tomorrow you get this error, and then in the next day, this error is gone making the SAME thing  :?:  :?: (or it can happen in the same day)&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Nobody have yet explained why this error happens and what is this, BUT the good thing is that if you have tried many browsers and does not work, you only have to WAIT some time, and then try again later.&lt;/b&gt; It can be 1 hour,  a few hours, or even next day, but most of the times it gets fixed without having you to do nothing.&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;IS DOES NOT DEPEND ON THE FILTER YOU HAVE CHOOSEN&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;I have seen that the problem happens with ANY filter you want do download, and it does not get fixed if you try download other different filters. &lt;br /&gt;&lt;br /&gt;OR perhaps it could happen that when you try to download it does not work, and few minutes later it works, and you think that it was because you choosen a different filter, but this is NOT true.&lt;br /&gt;&lt;br /&gt;____________________________________________________________________________________&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;4 - NEED URGENTLY TO DOWNLOAD A FILTER AND NONE OF THE ABOVE THINGS WORK?&lt;br /&gt; &lt;br /&gt;TRY THE FILTER FORGE BROWSER INSIDE FF&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;____________________________________________________________________________________&lt;br /&gt;&lt;br /&gt;Probably not everybody knows that downloading filter from the FF online THROUGH A BROWSER is NOT the ONLY way to do it as you can see ALSO the Filter Forge Browser that is built inside the Filter Forge application.&lt;br /&gt;&lt;br /&gt;By default is NOT activated, and you have to go to inside FF to:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Tools --&amp;gt; Options ---&amp;gt; Online and choose &quot;Library browser obsolete&quot; and click OK&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Then to be able to enter to this FF Browser you go to the main window of FF and look  in the top right corner wh ere is put &quot;Download more filters&quot; and when cliking on this it will appear.&lt;br /&gt;&lt;br /&gt;Then if what you need to download is very new filter, you have to configure it to see &quot;new filters first&quot; so it appears in the first positions.&lt;br /&gt; &lt;br /&gt;Here you have to choose all the filters you want and then click on &quot;download&quot; button on the bottom right corner.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Do you get and error when using this FF browser and can´t download ?&lt;/b&gt; &lt;br /&gt;&lt;br /&gt;Well I am sorry, but I have no solution for this. I have never had a problem downloading with the FF Browser so I can´t tell.&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Advantages and Disadvantages of using the OL and OLIFF Filters Library&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;I have made in this thread here a list of the advantages and disadvantages I have found from using both ways to download filters, please take a look at it.&lt;br /&gt;&lt;br /&gt;&lt;a href='http://filterforge.com/forum/read.php?FID=5&amp;TID=8939' target='_blank' rel='nofollow'&gt;http://filterforge.com/forum/read.php?FID=5&amp;TID=8939&lt;/a&gt;&lt;br /&gt;____________________________________________________________________________________&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;5 - HAVE YOU CHANGED YOUR SECURITY SOFTWARE BEFORE THE ERROR HAPPENS?&lt;br /&gt;&lt;br /&gt;WHAT SECURITY SOFTWARE DO YOU HAVE INSTALLED ?&lt;br /&gt;&lt;br /&gt;ARE YOU USING SOME OF THE INCOMPATIBLE APPLICATION WITH FF ?&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;____________________________________________________________________________________&lt;br /&gt;&lt;br /&gt;I did not say this before, because I suposse and think that you USUALLY have not problems to download, so is not a problem with the firewall and/or the security software you are using.&lt;br /&gt;&lt;br /&gt;There a thread in the forum to solve and fix problems with incompatibility with some security software and FF&lt;br /&gt;&lt;br /&gt;See here --&amp;gt; &lt;a href='http://filterforge.com/forum/read.php?FID=8&amp;TID=8705' target='_blank' rel='nofollow'&gt;Comodo IS, ZoneAlarm, Spyware PC Doctor – incompatibility w/FF&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I myself after testing many security softwares, I decided to use the best I have found and is &lt;b&gt;Norton Internet Security 2012&lt;/b&gt;, works seamless, without interfering in your work, DOES NOT HOG AND SLOW DOWN you computer as others do, and is very friendly with software installed, and is very agressive and like a police, when stopping unwanted malware and viruses.&lt;br /&gt;&lt;br /&gt;____________________________________________________________________________________&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;u&gt;6 - ARE YOU GETTING A INTERNET ERROR MESSAGE THAT FF CAN´T CONNECT TO DOWNLOAD FILTERS? DO YOU HAVE A PROXY?&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;____________________________________________________________________________________&lt;br /&gt;&lt;br /&gt;Here in this thread --&amp;gt; &lt;a href='http://filterforge.com/forum/read.php?FID=8&amp;TID=9789' target='_blank' rel='nofollow'&gt;Can´t download filters&lt;/a&gt; there is this error&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&amp;lt;class XFW::OSCallError&amp;gt; ::InternetQueryOptionA(proxy settings) failed with error code 0x0000000E: Not enough storage is available to complete this operation.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;GMM wrote:&lt;br /&gt;do you use a proxied or a direct Internet connection? &lt;br /&gt;Please delete the following file: %APPDATA%\Filter Forge 3\Options.xml and try again.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;See the thread link for a possible fix if this does not work&lt;br /&gt;____________________________________________________________________________________&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Sun, 22 Apr 2012 02:22:19 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;____________________________________________________________________________________&lt;br /&gt;&lt;u&gt;&lt;b&gt;6 - UNINSTALL AND REINSTALL FILTER FORGE MAKING A BACKUP OF YOUR FILTERS&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;____________________________________________________________________________________&lt;br /&gt;&lt;br /&gt;If you have tried all the above and you could not fix it, and you have waited 2 or 3 days, and when trying to download you can´t do it, there is a final possible solution&lt;br /&gt;&lt;br /&gt;Make a backup of all your filters you have downloaded, and ALSO backup the &quot;my filters&quot; folders, &quot;my presets&quot; folders, AND the favorites file.&lt;br /&gt;&lt;br /&gt;Then uninstall Filter Forge, install the latest and newest version, and then copy back the backup you made before.&lt;br /&gt;&lt;br /&gt;NOW, try to download the filters you want, and see if it works&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;YOU DO NOT KNOW HOW TO MAKE THE BACKUP ?&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;Please see this threads that could help you &lt;br /&gt;&lt;br /&gt;&lt;a href='http://filterforge.com/forum/read.php?FID=5&amp;TID=9049' target='_blank' rel='nofollow'&gt;Where are the downloaded Filter Forge filters located physically?&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://filterforge.com/forum/read.php?FID=5&amp;TID=8910' target='_blank' rel='nofollow'&gt;Guide to how to backup your FF filters library from your hard drive&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;____________________________________________________________________________________&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;u&gt;8 - IF STILL YOU CAN´T FIX IT AND STILL CAN´T DOWNLOAD, YOU CAN TRY TO CLEAN YOUR REGISTRY IN WINDOWS&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;____________________________________________________________________________________&lt;br /&gt;&lt;br /&gt;FREE very good and trusted Software  www.ccleaner.com&lt;br /&gt;&lt;br /&gt;Paying Software that cleans very well - &lt;a href='http://www.raxco.com/home/perfectregistry.aspx' target='_blank' rel='nofollow'&gt;Perfect Registry 2.0 by Raxco Software&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Please, Be aware that NOT to use any not trusted software to do this if you search for alternatives to these ones here. There are available many &quot;cleaners&quot; that what they do is the opposites and make a mess inside the windows.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Sat, 28 Apr 2012 03:17:16 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Please if you know any other problems that could happen when downloading filter it would be good that you tell it here so it would be good to help even more.&lt;br /&gt;&lt;br /&gt;If you have had a problem downloading filter that has not been included in the above list, please tell it here. &lt;br /&gt;&lt;br /&gt;Thanks for your help&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Sat, 26 May 2012 12:26:24 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;For possible newer users that still are having problems  with downloading problems and do not want to wait that someone can help you, I suggest a faster way to try the possible fixes above or  post then about the problem you are having if the above does not work.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;wynpotter&lt;/b&gt;, &lt;em&gt;Sat, 26 May 2012 13:11:31 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I may have found the problem in that there was a problem with the install on my machine and the stand alone part of FF did not install only the plugin for PS.&lt;br /&gt;This is a rather old computer and it may suffer from a few problems that crop up from time to time &lt;br /&gt;I have another machine at home to try later so I think it may well be on my side.&lt;br /&gt;Thanks for the help.&lt;br /&gt;Wyndham&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Mon, 16 Jul 2012 04:55:19 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I have found a new error when downloading filters that was not in the list above&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10166#postform' target='_blank' rel='nofollow'&gt;http://www.filterforge.com/forum/read...6#postform&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;souxsi wrote&lt;br /&gt;&lt;br /&gt;For months now, I have not been able to get any new filters. I've just upgraded to FF3, so am taking the time to try to solve the issue. I connect to the server fine, but gets hung up on &quot;Getting the list of filters.&quot; &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;I then get this error:&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Initial data download failed. Reason: 'get_filters_short_info() failed.'.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;table class='forum-quote'&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Quote&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;GMM wrote:&lt;br /&gt;&lt;br /&gt;Seems to be a temporary outage, please try again.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;So if you find this it seems that is a temporal error ? Or not ?&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Fri, 10 Aug 2012 11:23:25 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I do not know why this thread looks bad when viewed in the windows version of the Safari 5.0 browser (with Google Chrome browser you can read it right)&lt;br /&gt;&lt;br /&gt;All the texts are overlaid over the right columm  :( &lt;br /&gt;&lt;br /&gt;I think it is because I have it wrong putting oversized and too long lines like this ones&lt;br /&gt;&lt;br /&gt;____________________________________&lt;br /&gt;&lt;br /&gt;and of course I can´t edit them to make them shorter as this one shown here&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;SpaceRay&lt;/b&gt;, &lt;em&gt;Sun, 07 Oct 2012 16:51:16 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I think I have forgot an important thing here&lt;br /&gt;&lt;br /&gt;&lt;b&gt;HAVE FILTER FORGE OPEN ALREADY WHEN TRYING TO DOWNLOAD FILTERS&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;To avoid and reduce the risk of having problem when trying to download a filter is MUCH better to have the Filter Forge software already open and working and so it the browser will contact and detect directly FF and will not have to ask to allow to open it.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;ALSO IS GOOD FOR CHOOSING THE VERSION YOU WANT&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;For example now that FF 4.0 Beta is available, when you install it, this new FF 4.0 will override the default association of the FF filters, so ANY filter that you want to download without FF open will be opened always with the new FF 4.0 beta and not with FF 3.0 or any other version.&lt;br /&gt;&lt;br /&gt;So if you want to download it to FF 3.0 you can have it open BEFORE downloading any filter OR you can reassign again the FF .ffxml file extension to FF 3.0 instead of FF 4.0.&lt;/p&gt;
</description>
</item>
<item><title>Render issue and crash on Windows 8</title> 
		             <dc:creator>jrchrist</dc:creator> 
		             <category></category> 
		             <pubDate>Sat, 06 Oct 2012 16:55:15 -0400</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10567</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10567</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;jrchrist&lt;/b&gt;, &lt;em&gt;Fri, 05 Oct 2012 00:55:44 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Hi,&lt;br /&gt;&lt;br /&gt;I'm running version 3.010 on Windows 8 RTM x64.  When I start up the program, filters render fine, but when I select &quot;new image&quot;, some filters like &quot;Gaudi3&quot; render completely black.&lt;br /&gt;&lt;br /&gt;Also, every time I close the program I get an access violation.  I have a dump of the crash if anyone wants to take a look.&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;~ Jon&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Fri, 05 Oct 2012 09:19:22 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Thanks Jon, we're aware of the error messages under Windows 8 but they are not critical. We hope to fix them by the official Win8 release date.&lt;br /&gt;&lt;br /&gt;As for the Gaudi3 filter, I guess you've set the 'Size, pixels' slider to 1 or you've selected two black colors. Please tweak the filter settings to generate something else.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;jrchrist&lt;/b&gt;, &lt;em&gt;Fri, 05 Oct 2012 21:29:13 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Good to hear that the shutdown crash is known.&lt;br /&gt;&lt;br /&gt;For the black rendering, it will happen immediately after I press okay in the &quot;new image&quot; dialog.  The size of the image does not change nor the settings on the filter.  It's not a big deal because I've only noticed it with the Gaudi3 filter and it can be fixed by closing and restarting the app.&lt;br /&gt;&lt;br /&gt;I'll send you a PM with a link to the video to show you what it looks like.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;CFandM&lt;/b&gt;, &lt;em&gt;Sat, 06 Oct 2012 06:15:33 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;That filter renders in black because it is based on an image that you open.....Thats what the lifesaver represents....SO instead of doing &quot;New Image&quot; choose to open an image and choose an image of your own....You can also choose to open one of the built-in images.....&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;jrchrist&lt;/b&gt;, &lt;em&gt;Sat, 06 Oct 2012 12:27:33 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Ah yeah, you're right.  Didn't even notice that - wasn't obvious to me with the filter.  I was getting tripped up because it would work when I restarted the program and the image size looked identical to when I had closed it.  But really the default image was being reset.&lt;br /&gt;&lt;br /&gt;Guess I need to pay closer attention to the details.  Thanks!&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;CFandM&lt;/b&gt;, &lt;em&gt;Sat, 06 Oct 2012 16:55:15 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;hehe...Don't worry there were other users that had the same issue here somewhere in the forums...But their much better now.. ;)  :)&lt;/p&gt;
</description>
</item>
<item><title>Rendering &quot;Glitch&quot;...</title> 
		             <dc:creator>StevieJ</dc:creator> 
		             <category></category> 
		             <pubDate>Fri, 05 Oct 2012 20:44:24 -0400</pubDate> 
		             <link>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10548</link> 
		             <guid>http://www.filterforge.com/forum/read.php?FID=8&amp;TID=10548</guid>
		             <description>&lt;p&gt;&lt;small&gt;&lt;b&gt;StevieJ&lt;/b&gt;, &lt;em&gt;Mon, 01 Oct 2012 11:10:39 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;I have a 2.8 meg jpeg image that renders on screen...but seizes up and will not complete render to a saved image...  When trying to do this with FF as a plugin in Photoshop CS6, PS becomes unresponsive and generates a &quot;Child Pipe Shutdown&quot; error...  When trying to render the same image using FF as stand-alone, FF seizes up at the same place in rendering...just hangs up and stops rendering without error...  Any help to remedy this would be greatly appreciated...&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;GMM&lt;/b&gt;, &lt;em&gt;Tue, 02 Oct 2012 06:49:05 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;StevieJ, how do you expect us to reproduce that? A random 2,8 MB image on my office machine renders and saves correctly.&lt;/p&gt;&lt;p&gt;&lt;small&gt;&lt;b&gt;StevieJ&lt;/b&gt;, &lt;em&gt;Fri, 05 Oct 2012 20:44:24 -0400&lt;/em&gt;&lt;/small&gt;&lt;br/&gt;Switched to decaf, eh???  lol...  Thought the &quot;Child Pipe Shutdown&quot; error might mean something to you...but obviously not...&lt;/p&gt;
</description>
</item>
</channel></rss> 
