<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1-alpha-2539" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
		>
	<channel>
		<title>WordPress.com Forums &#187; Tag: script - Recent Posts</title>
		<link>http://en.forums.wordpress.com/tags/script</link>
		<description>WordPress.com Forums &#187; Tag: script - Recent Posts</description>
		<language>en</language>
		<pubDate>Sat, 18 May 2013 06:44:49 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/tags/script" rel="self" type="application/rss+xml" />

		<item>
			<title>tandava108 on "Code doesnt work in wordpress"</title>
			<link>http://en.forums.wordpress.com/topic/code-doesnt-work-in-wordpress#post-1230412</link>
			<pubDate>Thu, 18 Apr 2013 12:44:24 +0000</pubDate>
			<dc:creator>tandava108</dc:creator>
			<guid isPermaLink="false">1230412@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Worpress.com sites do not allow any script and only restricted html. See <a href="http://en.support.wordpress.com/code/" rel="nofollow">http://en.support.wordpress.com/code/</a> for an explanation and list of permitted tags.</p>
<p>If you need script then you need to move to a s<a href="http://en.support.wordpress.com/com-vs-org/">elf-hosted WordPress.org </a>site.
</p>
]]></description>
					</item>
		<item>
			<title>tazzipoo on "Code doesnt work in wordpress"</title>
			<link>http://en.forums.wordpress.com/topic/code-doesnt-work-in-wordpress#post-1230408</link>
			<pubDate>Thu, 18 Apr 2013 12:40:28 +0000</pubDate>
			<dc:creator>tazzipoo</dc:creator>
			<guid isPermaLink="false">1230408@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>this is for <a href="http://www.bnw.wcad.co.za" rel="nofollow">http://www.bnw.wcad.co.za</a>
</p>
]]></description>
					</item>
		<item>
			<title>supportbot on "Code doesnt work in wordpress"</title>
			<link>http://en.forums.wordpress.com/topic/code-doesnt-work-in-wordpress#post-1230405</link>
			<pubDate>Thu, 18 Apr 2013 12:39:37 +0000</pubDate>
			<dc:creator>supportbot</dc:creator>
			<guid isPermaLink="false">1230405@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You did not specify a blog address or reason for posting when you created this topic.</p>
<p>This support forum is for blogs hosted at WordPress.com. If your question is about a self-hosted WordPress blog then you'll find help at the <a href="http://wordpress.org/support/">WordPress.org forums</a>.</p>
<p>If you don't understand the difference between WordPress.com and WordPress.org, you may find <a href="http://support.wordpress.com/com-vs-org/">this information</a> helpful.</p>
<p>If you forgot to include a link to your blog, you can reply and include it below.  It'll help people to answer your question.</p>
<p>This is an automated message.
</p>
]]></description>
					</item>
		<item>
			<title>tazzipoo on "Code doesnt work in wordpress"</title>
			<link>http://en.forums.wordpress.com/topic/code-doesnt-work-in-wordpress#post-1230404</link>
			<pubDate>Thu, 18 Apr 2013 12:39:36 +0000</pubDate>
			<dc:creator>tazzipoo</dc:creator>
			<guid isPermaLink="false">1230404@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I am trying to create a form in my site and am having no luck. the generic code is below. Its works in my browser but not through wordpress. Is there a way to rectify this?</p>
<p>&#60;html&#62;</p>
<p>&#60;head&#62;</p>
<p>&#60;title&#62;Order form template&#60;/title&#62;<br />
&#60;script language=javascript&#62;<br />
&#60;!--//</p>
<p>function dm(amount)<br />
{<br />
  string = "" + amount;<br />
  dec = string.length - string.indexOf('.');<br />
  if (string.indexOf('.') == -1)<br />
  return string + '.00';<br />
  if (dec == 1)<br />
  return string + '00';<br />
  if (dec == 2)<br />
  return string + '0';<br />
  if (dec &#62; 3)<br />
  return string.substring(0,string.length-dec+3);<br />
  return string;<br />
}</p>
<p>function calculate()<br />
{</p>
<p>  QtyA = 0;  QtyB = 0;  QtyC = 0;<br />
  TotA = 0;  TotB = 0;  TotC = 0;</p>
<p>  PrcA = 1.25; PrcB = 2.35; PrcC = 3.45;</p>
<p>  if (document.ofrm.qtyA.value &#62; "")<br />
     { QtyA = document.ofrm.qtyA.value };<br />
  document.ofrm.qtyA.value = eval(QtyA);  </p>
<p>  if (document.ofrm.qtyB.value &#62; "")<br />
     { QtyB = document.ofrm.qtyB.value };<br />
  document.ofrm.qtyB.value = eval(QtyB);  </p>
<p>  if (document.ofrm.qtyC.value &#62; "")<br />
     { QtyC = document.ofrm.qtyC.value };<br />
  document.ofrm.qtyC.value = eval(QtyC);</p>
<p>  TotA = QtyA * PrcA;<br />
  document.ofrm.totalA.value = dm(eval(TotA));</p>
<p>  TotB = QtyB * PrcB;<br />
  document.ofrm.totalB.value = dm(eval(TotB));</p>
<p>  TotC = QtyC * PrcC;<br />
  document.ofrm.totalC.value = dm(eval(TotC));</p>
<p>  Totamt =<br />
     eval(TotA) +<br />
     eval(TotB) +<br />
     eval(TotC) ;</p>
<p>  document.ofrm.GrandTotal.value = dm(eval(Totamt));</p>
<p>} </p>
<p>function validNum(theForm)<br />
{<br />
  var checkOK = "0123456789.,";<br />
  var checkStr = theForm.qtyA.value;<br />
  var allValid = true;<br />
  var validGroups = true;<br />
  var decPoints = 0;<br />
  var allNum = "";<br />
  for (i = 0;  i &#60; checkStr.length;  i++)<br />
  {<br />
    ch = checkStr.charAt(i);<br />
    for (j = 0;  j &#60; checkOK.length;  j++)<br />
      if (ch == checkOK.charAt(j))<br />
        break;<br />
    if (j == checkOK.length)<br />
    {<br />
      allValid = false;<br />
      break;<br />
    }<br />
    if (ch == ".")<br />
    {<br />
      allNum += ".";<br />
      decPoints++;<br />
    }<br />
    else if (ch == "," &#38;&#38; decPoints != 0)<br />
    {<br />
      validGroups = false;<br />
      break;<br />
    }<br />
    else if (ch != ",")<br />
      allNum += ch;<br />
  }<br />
  if (!allValid)<br />
  {<br />
    alert("Please enter only digit characters in the \"Class A quantity\" field.");<br />
    theForm.qtyA.focus();<br />
    return (false);<br />
  }</p>
<p>  if (decPoints &#62; 1 &#124;&#124; !validGroups)<br />
  {<br />
    alert("Please enter a valid number in the \"Class A quantity\" field.");<br />
    theForm.qtyA.focus();<br />
    return (false);<br />
  }</p>
<p>  var checkOK = "0123456789.,";<br />
  var checkStr = theForm.qtyB.value;<br />
  var allValid = true;<br />
  var validGroups = true;<br />
  var decPoints = 0;<br />
  var allNum = "";<br />
  for (i = 0;  i &#60; checkStr.length;  i++)<br />
  {<br />
    ch = checkStr.charAt(i);<br />
    for (j = 0;  j &#60; checkOK.length;  j++)<br />
      if (ch == checkOK.charAt(j))<br />
        break;<br />
    if (j == checkOK.length)<br />
    {<br />
      allValid = false;<br />
      break;<br />
    }<br />
    if (ch == ".")<br />
    {<br />
      allNum += ".";<br />
      decPoints++;<br />
    }<br />
    else if (ch == "," &#38;&#38; decPoints != 0)<br />
    {<br />
      validGroups = false;<br />
      break;<br />
    }<br />
    else if (ch != ",")<br />
      allNum += ch;<br />
  }<br />
  if (!allValid)<br />
  {<br />
    alert("Please enter only digit characters in the \"Class B quantity\" field.");<br />
    theForm.qtyB.focus();<br />
    return (false);<br />
  }</p>
<p>  if (decPoints &#62; 1 &#124;&#124; !validGroups)<br />
  {<br />
    alert("Please enter a valid number in the \"Class B quantity\" field.");<br />
    theForm.qtyA.focus();<br />
    return (false);<br />
  }</p>
<p>  var checkOK = "0123456789.,";<br />
  var checkStr = theForm.qtyC.value;<br />
  var allValid = true;<br />
  var validGroups = true;<br />
  var decPoints = 0;<br />
  var allNum = "";<br />
  for (i = 0;  i &#60; checkStr.length;  i++)<br />
  {<br />
    ch = checkStr.charAt(i);<br />
    for (j = 0;  j &#60; checkOK.length;  j++)<br />
      if (ch == checkOK.charAt(j))<br />
        break;<br />
    if (j == checkOK.length)<br />
    {<br />
      allValid = false;<br />
      break;<br />
    }<br />
    if (ch == ".")<br />
    {<br />
      allNum += ".";<br />
      decPoints++;<br />
    }<br />
    else if (ch == "," &#38;&#38; decPoints != 0)<br />
    {<br />
      validGroups = false;<br />
      break;<br />
    }<br />
    else if (ch != ",")<br />
      allNum += ch;<br />
  }<br />
  if (!allValid)<br />
  {<br />
    alert("Please enter only digit characters in the \"Class C quantity\" field.");<br />
    theForm.qtyC.focus();<br />
    return (false);<br />
  }</p>
<p>  if (decPoints &#62; 1 &#124;&#124; !validGroups)<br />
  {<br />
    alert("Please enter a valid number in the \"Class C quantity\" field.");<br />
    theForm.qtyC.focus();<br />
    return (false);<br />
  }</p>
<p>  calculate();<br />
  return (true);<br />
} </p>
<p>//--&#62;<br />
&#60;/script&#62;</p>
<p>&#60;/head&#62;</p>
<p>&#60;body bgcolor="#FFFFCC"&#62;</p>
<p>&#60;h2&#62;The Acme Widget Company&#60;/h2&#62;<br />
&#60;h3&#62;Get Your Widgets Here!&#60;/h3&#62;<br />
<br />
&#60;p&#62;Please make your selections from the following choices:&#60;/p&#62;</p>
<p>&#60;form method="POST" action="submitted.html" name="ofrm"&#62;<br />
	&#60;p&#62;Please tell us who you are (&#60;font color="#FF0000"&#62;red&#60;/font&#62; denotes<br />
	required information):&#60;/p&#62;<br />
	&#60;table border="0" cellpadding="0" width="550" id="table1"&#62;<br />
		&#60;tr&#62;<br />
			&#60;td width="340" align="right"&#62;&#60;font color="#FF0000"&#62;Name&#60;/font&#62;&#60;/td&#62;<br />
			&#60;td width="10"&#62;&#160;&#60;/td&#62;<br />
			&#60;td width="200"&#62;&#60;input type="text" name="Name" size="30" tabindex="1"&#62;&#60;/td&#62;<br />
		&#60;/tr&#62;<br />
		&#60;tr&#62;<br />
			&#60;td width="340" align="right"&#62;&#60;font color="#FF0000"&#62;Email&#60;/font&#62;<br />
			(Your confirmation will be sent here): &#60;/td&#62;<br />
			&#60;td width="10"&#62;&#160;&#60;/td&#62;<br />
			&#60;td width="200"&#62;&#60;input type="text" name="Email" size="30" tabindex="1"&#62;&#60;/td&#62;<br />
		&#60;/tr&#62;<br />
		&#60;tr&#62;<br />
			&#60;td width="340" align="right"&#62;Other Contact Info:&#60;/td&#62;<br />
			&#60;td width="10"&#62;&#160;&#60;/td&#62;<br />
			&#60;td width="200"&#62;&#60;input type="text" name="OtherInfo" size="30" tabindex="1"&#62;&#60;/td&#62;<br />
		&#60;/tr&#62;<br />
		&#60;tr&#62;<br />
			&#60;td width="340" align="right"&#62;&#160;&#60;/td&#62;<br />
			&#60;td width="10"&#62;&#160;&#60;/td&#62;<br />
			&#60;td width="200"&#62;&#160;&#60;/td&#62;<br />
		&#60;/tr&#62;<br />
	&#60;/table&#62;<br />
	&#60;p&#62;And tell us what you would like:&#60;/p&#62;<br />
	&#60;table border="0" cellpadding="0" width="550" id="table2"&#62;<br />
		&#60;tr&#62;<br />
			&#60;td width="250" height="31"&#62;&#60;b&#62;Item Description&#60;/b&#62;&#60;/td&#62;<br />
			&#60;td align="center" width="100" height="31"&#62;&#60;b&#62;Quantity&#60;/b&#62;&#60;/td&#62;<br />
			&#60;td align="right" height="31" width="60"&#62;&#60;b&#62;Price &#60;/b&#62;&#60;/td&#62;<br />
			&#60;td align="right" height="31" width="140"&#62;&#60;b&#62;Total&#60;/b&#62;&#60;/td&#62;<br />
		&#60;/tr&#62;<br />
		&#60;tr&#62;<br />
			&#60;td width="250"&#62;Class &#34;A&#34; Widgets&#60;/td&#62;<br />
			&#60;td align="center" width="100"&#62;<br />
			&#60;input type="text" name="qtyA" size="5" tabindex="5" onchange="return validNum(document.ofrm)"&#62;&#60;/td&#62;<br />
			&#60;td align="right" width="60"&#62;1.25&#60;/td&#62;<br />
			&#60;td align="right" width="140"&#62;<br />
			&#60;input type="text" name="totalA" size="12" tabindex="99" onchange="calculate()"&#62;&#60;/td&#62;<br />
		&#60;/tr&#62;<br />
		&#60;tr&#62;<br />
			&#60;td width="250"&#62;Class &#34;B&#34; Widgets&#60;/td&#62;<br />
			&#60;td align="center" width="100"&#62;<br />
			&#60;input type="text" name="qtyB" size="5" tabindex="5" onchange="return validNum(document.ofrm)"&#62;&#60;/td&#62;<br />
			&#60;td align="right" width="60"&#62;2.35&#60;/td&#62;<br />
			&#60;td align="right" width="140"&#62;<br />
			&#60;input type="text" name="totalB" size="12" tabindex="99" onchange="calculate()"&#62;&#60;/td&#62;<br />
		&#60;/tr&#62;<br />
		&#60;tr&#62;<br />
			&#60;td width="250"&#62;Class &#34;C&#34; Widgets&#60;/td&#62;<br />
			&#60;td align="center" width="100"&#62;<br />
			&#60;input type="text" name="qtyC" size="5" tabindex="5" onchange="return validNum(document.ofrm)"&#62;&#60;/td&#62;<br />
			&#60;td align="right" width="60"&#62;3.45&#60;/td&#62;<br />
			&#60;td align="right" width="140"&#62;<br />
			&#60;input type="text" name="totalC" size="12" tabindex="99" onchange="calculate()"&#62;&#60;/td&#62;<br />
		&#60;/tr&#62;<br />
		&#60;tr&#62;<br />
			&#60;td width="250"&#62;&#160;&#60;/td&#62;<br />
			&#60;td align="center" width="100"&#62;&#160;&#60;/td&#62;<br />
			&#60;td align="right" width="60"&#62;&#160;&#60;/td&#62;<br />
			&#60;td align="right" width="140"&#62;&#160;&#60;/td&#62;<br />
		&#60;/tr&#62;<br />
		&#60;tr&#62;<br />
			&#60;td width="250"&#62;<br />
			&#60;p align="right"&#62;&#60;b&#62;TOTALS:&#60;/b&#62;&#60;/td&#62;<br />
			&#60;td align="center" width="100"&#62;&#160;&#60;/td&#62;<br />
			&#60;td align="right" width="60"&#62;&#160;&#60;/td&#62;<br />
			&#60;td align="right" width="140"&#62;<br />
			&#60;input type="text" name="GrandTotal" size="15" tabindex="99" onchange="calculate()"&#62;&#60;/td&#62;<br />
		&#60;/tr&#62;<br />
		&#60;tr&#62;<br />
			&#60;td width="250"&#62;&#160;&#60;/td&#62;<br />
			&#60;td align="center" width="100"&#62;&#160;&#60;/td&#62;<br />
			&#60;td align="right" width="60"&#62;&#160;&#60;/td&#62;<br />
			&#60;td align="right" width="140"&#62;&#160;&#60;/td&#62;<br />
		&#60;/tr&#62;<br />
	&#60;/table&#62;<br />
	&#60;p&#62;&#160;&#60;/p&#62;<br />
	&#60;table border="0" cellpadding="0" width="550" id="table3"&#62;<br />
		&#60;tr&#62;<br />
			&#60;td width="563"&#62;<br />
			&#60;p align="center"&#62;<br />
			&#60;input type="submit" value="Submit" name="subButton" tabindex="50"&#62;&#160;&#160;&#160;&#160;<br />
			&#60;input type="reset" value="Reset" name="resetButton" tabindex="50"&#62;&#60;/td&#62;<br />
		&#60;/tr&#62;<br />
	&#60;/table&#62;<br />
&#60;/form&#62;</p>
<p>&#60;p&#62;&#160;&#60;/p&#62;<br />
&#60;p&#62;If you have questions or difficulties with this order page,<br />
&#160;please contact<br />
our Customer Service Department (see our Contacts page.)&#60;/p&#62;</p>
<p>    &#60;script language="JavaScript" type="text/javascript"&#62;<br />
	var gDomain="www.qsstats.com";<br />
	var gDcsId="dcs37pv2c00000oun93vypyva_4k6d";<br />
	var gFpc="WT_FPC";<br />
	var gConvert=true;<br />
	var gFpcDom = "htmlgoodies.com";<br />
	if ((typeof(gConvert) != "undefined") &#38;&#38; gConvert &#38;&#38; (document.cookie.indexOf(gFpc + "=") == -1) &#38;&#38; (document.cookie.indexOf("WTLOPTOUT=")==-1)) {<br />
	    document.write("&#60;SCR"+"IPT TYPE='text/javascript' SRC='http"+(window.location.protocol.indexOf('https:')==0?'s':'')+"://"+gDomain+"/"+gDcsId+"/wtid.js"+"'&#62;&#60;\/SCR"+"IPT&#62;");<br />
	}<br />
	function dcsAdditionalParameters() {}<br />
    &#60;/script&#62;</p>
<p>    &#60;script type="text/javascript" src="/imageserver/common/webtrends.js"&#62;&#60;/script&#62;</p>
<p>    &#60;noscript&#62;&#60;img alt="" border="0" name="DCSIMG" width="1" height="1" src="http://www.qsstats.com/dcs37pv2c00000oun93vypyva_4k6d/njs.gif?dcsuri=/nojavascript&#38;WT.js=No&#38;WT.tv=8.0.2;WT.qs_dlk=UW-DTArIZ3MAAEvaRvgAAAAq;" /&#62;&#60;/noscript&#62;<br />
&#60;/body&#62;</p>
<p>&#60;/html&#62;
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Zopim"</title>
			<link>http://en.forums.wordpress.com/topic/zopim#post-1117608</link>
			<pubDate>Wed, 09 Jan 2013 19:47:01 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">1117608@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I searched and found out that it's live chat widget and we cannot use it because it's a JavaScript widget.  <a href="https://www.zopim.com/product" rel="nofollow">https://www.zopim.com/product</a>
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Zopim"</title>
			<link>http://en.forums.wordpress.com/topic/zopim#post-1117606</link>
			<pubDate>Wed, 09 Jan 2013 19:44:50 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">1117606@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>If it's JavaScript or an iframe the answer is you can't use it for security reasons. <a href="http://en.support.wordpress.com/code/" rel="nofollow">http://en.support.wordpress.com/code/</a>
</p>
]]></description>
					</item>
		<item>
			<title>penguinn2 on "Zopim"</title>
			<link>http://en.forums.wordpress.com/topic/zopim#post-1117604</link>
			<pubDate>Wed, 09 Jan 2013 19:42:36 +0000</pubDate>
			<dc:creator>penguinn2</dc:creator>
			<guid isPermaLink="false">1117604@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi!  When the Zopim widget will be available for WordPress? I really want to get it for my website.
</p>
]]></description>
					</item>
		<item>
			<title>raincoaster on "script_and_code"</title>
			<link>http://en.forums.wordpress.com/topic/script_and_code#post-1093918</link>
			<pubDate>Thu, 13 Dec 2012 11:12:36 +0000</pubDate>
			<dc:creator>raincoaster</dc:creator>
			<guid isPermaLink="false">1093918@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>We can't tell without seeing the actual code. Paste it here between backticks so it displays.
</p>
]]></description>
					</item>
		<item>
			<title>gajputns on "script_and_code"</title>
			<link>http://en.forums.wordpress.com/topic/script_and_code#post-1093907</link>
			<pubDate>Thu, 13 Dec 2012 10:43:27 +0000</pubDate>
			<dc:creator>gajputns</dc:creator>
			<guid isPermaLink="false">1093907@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I want to add my blog to the top of blogs at <a href="http://www.gemius.lv" rel="nofollow">http://www.gemius.lv</a>  (gemiusTraffic). They sent me script and code fragment with my blog ID. How I can insert them in my wordpress blog?
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Insert script in text widget"</title>
			<link>http://en.forums.wordpress.com/topic/insert-script-in-text-widget#post-1090848</link>
			<pubDate>Sun, 09 Dec 2012 20:57:16 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">1090848@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>We cannot use JavaScript on free hosted WordPress.com blogs for security reasons.  <a href="http://en.support.wordpress.com/code/#javascript" rel="nofollow">http://en.support.wordpress.com/code/#javascript</a>
</p>
]]></description>
					</item>
		<item>
			<title>pattibum on "Insert script in text widget"</title>
			<link>http://en.forums.wordpress.com/topic/insert-script-in-text-widget#post-1090620</link>
			<pubDate>Sun, 09 Dec 2012 12:45:25 +0000</pubDate>
			<dc:creator>pattibum</dc:creator>
			<guid isPermaLink="false">1090620@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I'm trying to insert the following script in text widget<br />
&#60;script src="http://blogger.grazia.it/images/blogger/js/badge.js?blid=0" blid="0" name="grzscript"&#62;&#60;/script&#62;<br />
without any result. Why?
</p>
]]></description>
					</item>
		<item>
			<title>eraynai on "Changing Over Our WordPress Site to A New Host - Issues"</title>
			<link>http://en.forums.wordpress.com/topic/changing-over-our-wordpress-site-to-a-new-host-issues#post-1051090</link>
			<pubDate>Thu, 25 Oct 2012 16:49:46 +0000</pubDate>
			<dc:creator>eraynai</dc:creator>
			<guid isPermaLink="false">1051090@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks, will do!
</p>
]]></description>
					</item>
		<item>
			<title>eridout on "Changing Over Our WordPress Site to A New Host - Issues"</title>
			<link>http://en.forums.wordpress.com/topic/changing-over-our-wordpress-site-to-a-new-host-issues#post-1051082</link>
			<pubDate>Thu, 25 Oct 2012 16:45:17 +0000</pubDate>
			<dc:creator>eridout</dc:creator>
			<guid isPermaLink="false">1051082@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>As your site is longer on wordpress.com you're more likely to get the help you need via the wordpress.org support or forum.
</p>
]]></description>
					</item>
		<item>
			<title>eraynai on "Changing Over Our WordPress Site to A New Host - Issues"</title>
			<link>http://en.forums.wordpress.com/topic/changing-over-our-wordpress-site-to-a-new-host-issues#post-1051075</link>
			<pubDate>Thu, 25 Oct 2012 16:28:43 +0000</pubDate>
			<dc:creator>eraynai</dc:creator>
			<guid isPermaLink="false">1051075@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi,</p>
<p>To give you some context this is our website</p>
<p><a href="http://www.raindancecanada.com" rel="nofollow">http://www.raindancecanada.com</a></p>
<p>We are changing over to a new hosting provider and have just transferred upload all the files.  Before point the name to the new server, we want to test it out.</p>
<p>Unfortunately, it's not working as the site is not showing up properly. We have contacted the hosting provider for support and they have responded by saying</p>
<p>Since it is a WordPress site, the WordPress works and it is redirecting to another page to register for something. Probably something to do with the theme you installed. We cannot help you. It is a third party script causing the issue.</p>
<p>If anyone can help me shed some light on this issue it would be greatly appreciated!</p>
<p>Thanks,</p>
<p>Elli Raynai
</p>
]]></description>
					</item>
		<item>
			<title>bethfreeman on "URL parameters vulnerable to script injection?"</title>
			<link>http://en.forums.wordpress.com/topic/url-parameters-vulnerable-to-script-injection#post-1028656</link>
			<pubDate>Wed, 03 Oct 2012 03:02:09 +0000</pubDate>
			<dc:creator>bethfreeman</dc:creator>
			<guid isPermaLink="false">1028656@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi, I paid for a security review of my wordpress blog and one of the items it came back with is a vulnerability to "extended injection" through URL parameters. </p>
<p>For instance, if you append a parameter to the end of a URL, like this:<br />
<a href="http://examplewordpresssite.com/2011/1051/?D=%00qkoikf" rel="nofollow">http://examplewordpresssite.com/2011/1051/?D=%00qkoikf</a></p>
<p>Then the D parameter gets carried into other URLs on the page, like previous and next entries, comment links, and others.</p>
<p>Is the wordpress team aware of this? Is this a major issue I should be concerned about?  </p>
<p>Thanks,</p>
<p>Elisabeth
</p>
]]></description>
					</item>
		<item>
			<title>supportbot on "URL parameters vulnerable to script injection?"</title>
			<link>http://en.forums.wordpress.com/topic/url-parameters-vulnerable-to-script-injection#post-1028657</link>
			<pubDate>Wed, 03 Oct 2012 03:02:09 +0000</pubDate>
			<dc:creator>supportbot</dc:creator>
			<guid isPermaLink="false">1028657@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You did not specify a blog address or reason for posting when you created this topic.</p>
<p>This support forum is for blogs hosted at WordPress.com. If your question is about a self-hosted WordPress blog then you'll find help at the <a href="http://wordpress.org/support/">WordPress.org forums</a>.</p>
<p>If you don't understand the difference between WordPress.com and WordPress.org, you may find <a href="http://support.wordpress.com/com-vs-org/">this information</a> helpful.</p>
<p>If you forgot to include a link to your blog, you can reply and include it below.  It'll help people to answer your question.</p>
<p>This is an automated message.
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "How do I add a new widget in my sidebar"</title>
			<link>http://en.forums.wordpress.com/topic/how-do-i-add-a-new-widget-in-my-sidebar#post-1023993</link>
			<pubDate>Thu, 27 Sep 2012 20:33:46 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1023993@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Apologies if I was unclear before.
</p>
]]></description>
					</item>
		<item>
			<title>justjennifer on "How do I add a new widget in my sidebar"</title>
			<link>http://en.forums.wordpress.com/topic/how-do-i-add-a-new-widget-in-my-sidebar#post-1023714</link>
			<pubDate>Thu, 27 Sep 2012 16:19:51 +0000</pubDate>
			<dc:creator>justjennifer</dc:creator>
			<guid isPermaLink="false">1023714@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>@designsimply-From the collective answers given by staff over the past two years, it seems clear (to me anyway) that "<em>limited</em> use of Amazon affiliate links" and "real blog" are the key words here. What threw me was the last part in your earlier reply <a href="http://en.forums.wordpress.com/topic/how-do-i-add-a-new-widget-in-my-sidebar?replies=7#post-1023413" rel="nofollow">http://en.forums.wordpress.com/topic/how-do-i-add-a-new-widget-in-my-sidebar?replies=7#post-1023413</a></p>
<p>As far as the thread that I pointed to, there was no question about the OP there. :) That was pretty cut and dried from the questions and answers given in that thread, including macmanx's and mine.</p>
<p>Again, thanks for the clarifications.
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "How do I add a new widget in my sidebar"</title>
			<link>http://en.forums.wordpress.com/topic/how-do-i-add-a-new-widget-in-my-sidebar#post-1023693</link>
			<pubDate>Thu, 27 Sep 2012 16:01:23 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1023693@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>There is no blanket, perfect answer.The TOS are subject to interpretation and you cannot make too broad of statements about the rules because spammers change tactics and then we have to adjust (although, in context, it's sometimes best to make a statement directed at a particular user that is clear and unambiguous). If you report blogs that are suspected as spammy, we will review them and decide if it's allowed. Without seeing the blog, I can't make any definitive statement that will always be true.</p>
<p>In the case of the user in the thread you mentioned. The first blog on their account is: <a href="http://earnmoneyfastonline.wordpress.com/" rel="nofollow">http://earnmoneyfastonline.wordpress.com/</a>  I can tell by just looking at the URL that it won't be allowed. :) See <a href="http://en.wordpress.com/types-of-blogs/" rel="nofollow">http://en.wordpress.com/types-of-blogs/</a> and <a href="http://en.forums.wordpress.com/topic/affiliate-link" rel="nofollow">http://en.forums.wordpress.com/topic/affiliate-link</a></p>
<p>The rule is, if the content in your blog is good well-written, real, original, not-duplicated, not designed for SEO only, not designed to generate affiliate money then you don't need to worry.
</p>
]]></description>
					</item>
		<item>
			<title>justjennifer on "How do I add a new widget in my sidebar"</title>
			<link>http://en.forums.wordpress.com/topic/how-do-i-add-a-new-widget-in-my-sidebar#post-1023608</link>
			<pubDate>Thu, 27 Sep 2012 14:22:47 +0000</pubDate>
			<dc:creator>justjennifer</dc:creator>
			<guid isPermaLink="false">1023608@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks. :)</p>
<p>Just realized I missed the "now" in my last sentence. It should have read </p>
<blockquote><p>Are you saying that judicious use of Amazon affiliate links in a real blog is <strong>now</strong> not OK?</p></blockquote>
<p>I was referring to this earlier forum post with staff replies:  <a href="http://en.forums.wordpress.com/topic/affiliate-links-doubt-in-wordpresscom-not-org?replies=34" rel="nofollow">http://en.forums.wordpress.com/topic/affiliate-links-doubt-in-wordpresscom-not-org?replies=34</a>
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "How do I add a new widget in my sidebar"</title>
			<link>http://en.forums.wordpress.com/topic/how-do-i-add-a-new-widget-in-my-sidebar#post-1023581</link>
			<pubDate>Thu, 27 Sep 2012 13:42:27 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1023581@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>No, for questions like that, I think this is the best guideline:<br />
<a href="http://en.forums.wordpress.com/topic/affiliate-link" rel="nofollow">http://en.forums.wordpress.com/topic/affiliate-link</a>
</p>
]]></description>
					</item>
		<item>
			<title>justjennifer on "How do I add a new widget in my sidebar"</title>
			<link>http://en.forums.wordpress.com/topic/how-do-i-add-a-new-widget-in-my-sidebar#post-1023416</link>
			<pubDate>Thu, 27 Sep 2012 07:32:55 +0000</pubDate>
			<dc:creator>justjennifer</dc:creator>
			<guid isPermaLink="false">1023416@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Interesting.</p>
<p>@designsimply-Could you clarify? Are you saying that judicious use of Amazon affiliate links in a real blog is not OK?
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "How do I add a new widget in my sidebar"</title>
			<link>http://en.forums.wordpress.com/topic/how-do-i-add-a-new-widget-in-my-sidebar#post-1023413</link>
			<pubDate>Thu, 27 Sep 2012 07:21:01 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1023413@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>An Amazon link on a line by itself will convert into a widget if it's in a post content area, but it doesn't work in sidebars.</p>
<p>Example link:</p>
<p><a href="http://www.amazon.com/Kindle-Paperwhite-Resolution-Display-Built-/dp/B007OZNZG0/" rel="nofollow">http://www.amazon.com/Kindle-Paperwhite-Resolution-Display-Built-/dp/B007OZNZG0/</a></p>
<p>It also doesn't give you the option to get affiliate credit. If you wanted to setup advertising on your blog, you should apply for <a href="http://en.support.wordpress.com/advertising/">WordAds</a> instead.
</p>
]]></description>
					</item>
		<item>
			<title>raincoaster on "How do I add a new widget in my sidebar"</title>
			<link>http://en.forums.wordpress.com/topic/how-do-i-add-a-new-widget-in-my-sidebar#post-1013420</link>
			<pubDate>Mon, 17 Sep 2012 10:50:48 +0000</pubDate>
			<dc:creator>raincoaster</dc:creator>
			<guid isPermaLink="false">1013420@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You can't. </p>
<p>We can use static text and image links to Amazon if referring to a particular product, but we can't have advertising widgets at all, nor can we use the javascript and/or iframes common with such widgets.
</p>
]]></description>
					</item>
		<item>
			<title>gritsandmagnoliasblog on "How do I add a new widget in my sidebar"</title>
			<link>http://en.forums.wordpress.com/topic/how-do-i-add-a-new-widget-in-my-sidebar#post-1013404</link>
			<pubDate>Mon, 17 Sep 2012 10:30:41 +0000</pubDate>
			<dc:creator>gritsandmagnoliasblog</dc:creator>
			<guid isPermaLink="false">1013404@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I have an Amazon Widget I would like to add to my blog. All I have is their script. I have tried pasting in the of the available widgets such as text, links, etc. but it doesn't show up on my sidebar. Can you tell me how to add this widget to my blog? </p>
<p>Thanks,<br />
Susan
</p>
]]></description>
					</item>
		<item>
			<title>workstressblog on "My blog is getting a dialogue box (do you want to leave this page - yes or no)"</title>
			<link>http://en.forums.wordpress.com/topic/my-blog-is-getting-a-dialogue-box-do-you-want-to-leave-this-page-yes-or-no#post-998567</link>
			<pubDate>Tue, 04 Sep 2012 22:10:23 +0000</pubDate>
			<dc:creator>workstressblog</dc:creator>
			<guid isPermaLink="false">998567@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>The problem seems to be resolved.  Thanks for all the tips!<br />
I use the latest Firefox on an iMac.
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "My blog is getting a dialogue box (do you want to leave this page - yes or no)"</title>
			<link>http://en.forums.wordpress.com/topic/my-blog-is-getting-a-dialogue-box-do-you-want-to-leave-this-page-yes-or-no#post-998539</link>
			<pubDate>Tue, 04 Sep 2012 21:55:30 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">998539@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hooray! I love happy endings. :)
</p>
]]></description>
					</item>
		<item>
			<title>workstressblog on "My blog is getting a dialogue box (do you want to leave this page - yes or no)"</title>
			<link>http://en.forums.wordpress.com/topic/my-blog-is-getting-a-dialogue-box-do-you-want-to-leave-this-page-yes-or-no#post-998534</link>
			<pubDate>Tue, 04 Sep 2012 21:54:14 +0000</pubDate>
			<dc:creator>workstressblog</dc:creator>
			<guid isPermaLink="false">998534@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>The problem seems to be resolved.  Thanks for all the tips!<br />
I use the latest Firefox on an iMac.
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "My blog is getting a dialogue box (do you want to leave this page - yes or no)"</title>
			<link>http://en.forums.wordpress.com/topic/my-blog-is-getting-a-dialogue-box-do-you-want-to-leave-this-page-yes-or-no#post-997019</link>
			<pubDate>Mon, 03 Sep 2012 16:53:18 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">997019@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>(1) How are are connecting to the internet and to WordPress.com?</p>
<p>I'm asking because the way you connect to the internet (mobile, satellite, DSL, dial-up) and to your blog, and how many proxy server jumps etc. it takes to connect can cause problems. There maybe be problems with your ISP and/or with the proxy servers. Also note that the main dashboard isn’t designed to work with touch devices through the tablet and smartphone browsers.</p>
<p>(2) Exactly which browser and version of it are you using. If you don’t know click here to find out &#62; <a href="http://whatsmyuseragent.com/" rel="nofollow">http://whatsmyuseragent.com/</a><br />
Note: If you are running IE9 in compatibility mode then be aware that it renders as IE7 and IE7 is not supported.</p>
<p>(3) Have you tried?<br />
clearing your browser cache and cookies &#62; <a href="http://www.google.com/support/accounts/bin/answer.py?hl=en&#038;answer=32050" rel="nofollow">http://www.google.com/support/accounts/bin/answer.py?hl=en&#038;answer=32050</a><br />
using the browser with all extensions or add-ons disabled<br />
updating the browser to the latest stable version (not a buggy BETA browser version) <a href="http://browsehappy.com/" rel="nofollow">http://browsehappy.com/</a><br />
using another browser</p>
<p>(4) Are you logging in using the secure https:// log-in? see <a href="http://en.support.wordpress.com/https/" rel="nofollow">http://en.support.wordpress.com/https/</a>
</p>
]]></description>
					</item>
		<item>
			<title>raincoaster on "My blog is getting a dialogue box (do you want to leave this page - yes or no)"</title>
			<link>http://en.forums.wordpress.com/topic/my-blog-is-getting-a-dialogue-box-do-you-want-to-leave-this-page-yes-or-no#post-996699</link>
			<pubDate>Mon, 03 Sep 2012 07:54:35 +0000</pubDate>
			<dc:creator>raincoaster</dc:creator>
			<guid isPermaLink="false">996699@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>What browser and version are you using? Are you connecting to your site via secure https or just http?
</p>
]]></description>
					</item>

	</channel>
</rss>
