<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress &#8250; Support Tag: wp-affiliate</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Tag: wp-affiliate</description>
<language>en</language>
<pubDate>Thu, 26 Nov 2009 10:12:29 +0000</pubDate>

<item>
<title>lectronics on "[Plugin: WP-Affiliate] plugin doesn't work anymore with WP 2.8"</title>
<link>http://wordpress.org/support/topic/279893#post-1154087</link>
<pubDate>Tue, 28 Jul 2009 15:12:09 +0000</pubDate>
<dc:creator>lectronics</dc:creator>
<guid isPermaLink="false">1154087@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have this same problem, its stopped working now soon after I upgraded. Old links that were already saved are working but any new links show 404 error. &#60;/p&#62;
&#60;p&#62;I tried permalinks suggestion above, but doesnt work. I use custom structure:&#60;/p&#62;
&#60;p&#62;%postname%
&#60;/p&#62;</description>
</item>
<item>
<title>dumdidum1983 on "[Plugin: WP-Affiliate] is slowing down JavaScript"</title>
<link>http://wordpress.org/support/topic/289517#post-1147282</link>
<pubDate>Wed, 22 Jul 2009 10:58:44 +0000</pubDate>
<dc:creator>dumdidum1983</dc:creator>
<guid isPermaLink="false">1147282@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have the same problem... and no answer!&#60;/p&#62;
&#60;p&#62;But at the moment witz 2.8.2 it is not working- I have no menu to edit the links.
&#60;/p&#62;</description>
</item>
<item>
<title>Diplominformatiker on "[Plugin: WP-Affiliate] is slowing down JavaScript"</title>
<link>http://wordpress.org/support/topic/289517#post-1136743</link>
<pubDate>Mon, 13 Jul 2009 22:57:22 +0000</pubDate>
<dc:creator>Diplominformatiker</dc:creator>
<guid isPermaLink="false">1136743@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Having WP-Affiliate activated creating a Post in WP gets very slow in Firefox. Firefox blocks two times when opening post-new.php. Other Browsers slow down, too but firefox (my preference) is the max.&#60;/p&#62;
&#60;p&#62;I suppose it's because of the xx other plugins I use. Any Idea? I already updated JQuery to the latest version (1.3.2), WP-Affiliate takes its time while creating the link treeview...
&#60;/p&#62;</description>
</item>
<item>
<title>0xCAFE on "[Plugin: WP-Affiliate] plugin doesn't work anymore with WP 2.8"</title>
<link>http://wordpress.org/support/topic/279893#post-1128002</link>
<pubDate>Mon, 06 Jul 2009 17:17:55 +0000</pubDate>
<dc:creator>0xCAFE</dc:creator>
<guid isPermaLink="false">1128002@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Just found the solution!&#60;/p&#62;
&#60;p&#62;You have to re-save the permalink structure so that WP refreshes its cached list of permalinks.&#60;/p&#62;
&#60;p&#62;Just to to Settings &#38;gt; Permalinks and hit Save.
&#60;/p&#62;</description>
</item>
<item>
<title>0xCAFE on "[Plugin: WP-Affiliate] plugin doesn't work anymore with WP 2.8"</title>
<link>http://wordpress.org/support/topic/279893#post-1124962</link>
<pubDate>Fri, 03 Jul 2009 16:37:58 +0000</pubDate>
<dc:creator>0xCAFE</dc:creator>
<guid isPermaLink="false">1124962@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have found that the problem is with this line :&#60;/p&#62;
&#60;p&#62;wp_print_scripts( array( 'sack' ));&#60;/p&#62;
&#60;p&#62;When WP-Affiliate adds the SACK js lib to the page, a bunch of JS errors appear.  Is there an incompatibility with SACK and 2.8, it does come with WP 2.8, should I use the .dev version instead?&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action(&#38;#39;admin_print_scripts&#38;#39;, &#38;#39;wp_affiliate_js_admin_header&#38;#39; );

function wp_affiliate_js_admin_header() // this is a PHP function
{
  // use JavaScript SACK library for Ajax
  wp_print_scripts( array( &#38;#39;sack&#38;#39; ));

  // Define custom JavaScript function
?&#38;gt;
&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
//&#38;lt;![CDATA[
function wp_affiliate_ajax_add_link( link, text, category )
{
   var mysack = new sack( &#38;quot;&#38;lt;?php bloginfo( &#38;#39;wpurl&#38;#39; ); ?&#38;gt;/wp-admin/admin-ajax.php&#38;quot; );    

  mysack.execute = 1;
  mysack.method = &#38;#39;POST&#38;#39;;
  mysack.setVar( &#38;quot;action&#38;quot;, &#38;quot;wp_affiliate_add_link&#38;quot; );
  mysack.setVar( &#38;quot;link&#38;quot;, link.value );
  mysack.setVar( &#38;quot;text&#38;quot;, text.value );
  mysack.setVar( &#38;quot;category&#38;quot;, category );
  mysack.encVar( &#38;quot;cookie&#38;quot;, document.cookie, false );
  mysack.onError = function() { alert(&#38;#39;Ajax error in adding affiliate link&#38;#39; )};
  mysack.runAJAX();

  return true;

} // end of JavaScript function
//]]&#38;gt;
&#38;lt;/script&#38;gt;
&#38;lt;?php
} // end of PHP function myplugin_js_admin_header&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This outputs the following:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;#39;text/javascript&#38;#39; src=&#38;#39;http://bloguedegeek.net/wp-includes/js/tw-sack.js?ver=1.6.1&#38;#39;&#38;gt;&#38;lt;/script&#38;gt;
&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
//&#38;lt;![CDATA[
function wp_affiliate_ajax_add_link( link, text, category )
{
[...]&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>arcab4 on "[Plugin: WP-Affiliate] plugin doesn't work anymore with WP 2.8"</title>
<link>http://wordpress.org/support/topic/279893#post-1124350</link>
<pubDate>Thu, 02 Jul 2009 23:42:07 +0000</pubDate>
<dc:creator>arcab4</dc:creator>
<guid isPermaLink="false">1124350@http://wordpress.org/support/</guid>
<description>&#60;p&#62;just tagging on..having the same issue....anything new links created don't work..but looks like older links are still working....
&#60;/p&#62;</description>
</item>
<item>
<title>gawel44 on "[Plugin: WP-Affiliate] plugin doesn't work anymore with WP 2.8"</title>
<link>http://wordpress.org/support/topic/279893#post-1102941</link>
<pubDate>Sun, 14 Jun 2009 08:28:12 +0000</pubDate>
<dc:creator>gawel44</dc:creator>
<guid isPermaLink="false">1102941@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;Since the version 2.8 of WP, the plugin WP-Affiliate (wordpress.org/extend/plugins/wp-affiliate/) doesn't work, i've try to desactivate, re-activated, etc.&#60;/p&#62;
&#60;p&#62;Do you have the same problem ?&#60;br /&#62;
Do you know how to fix it ?&#60;/p&#62;
&#60;p&#62;The website of the plugin is down and it's the same for the creator.&#60;/p&#62;
&#60;p&#62;Thank's for your reply !
&#60;/p&#62;</description>
</item>
<item>
<title>derchris79 on "[Plugin: WP-Affiliate] problem with same linktext in different subcats"</title>
<link>http://wordpress.org/support/topic/275449#post-1088531</link>
<pubDate>Mon, 01 Jun 2009 09:27:48 +0000</pubDate>
<dc:creator>derchris79</dc:creator>
<guid isPermaLink="false">1088531@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I have a basecat with several subcats and some of them have the same link name&#60;/p&#62;
&#60;p&#62;basecat/subcat1/name1&#60;br /&#62;
basecat/subcat2/name1&#60;br /&#62;
basecat/subcatX/name1&#60;/p&#62;
&#60;p&#62;if I now link to basecat/subcat2/name1 I will redirected to that site that is linked behind basecat/subcat1/name1 ...&#60;/p&#62;
&#60;p&#62;is this plugin still in support? or is their an alternativ?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/wp-affiliate/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/wp-affiliate/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>luckybugblog on "[Plugin: WP-Affiliate] Exactly what it does?"</title>
<link>http://wordpress.org/support/topic/185876#post-1000597</link>
<pubDate>Fri, 27 Feb 2009 22:43:00 +0000</pubDate>
<dc:creator>luckybugblog</dc:creator>
<guid isPermaLink="false">1000597@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have the same problem, could it be that WP-Affiliate doesn't work with wordpress 2.7.1?
&#60;/p&#62;</description>
</item>
<item>
<title>rivermaya on "[Plugin: WP-Affiliate] Exactly what it does?"</title>
<link>http://wordpress.org/support/topic/185876#post-975910</link>
<pubDate>Wed, 04 Feb 2009 18:40:16 +0000</pubDate>
<dc:creator>rivermaya</dc:creator>
<guid isPermaLink="false">975910@http://wordpress.org/support/</guid>
<description>&#60;p&#62;@ZeRohiLL&#60;br /&#62;
to bad, link is broken, can u post it again ?
&#60;/p&#62;</description>
</item>
<item>
<title>ZeRohiLL on "[Plugin: WP-Affiliate] Exactly what it does?"</title>
<link>http://wordpress.org/support/topic/185876#post-916437</link>
<pubDate>Sat, 06 Dec 2008 16:37:39 +0000</pubDate>
<dc:creator>ZeRohiLL</dc:creator>
<guid isPermaLink="false">916437@http://wordpress.org/support/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://zerohill.com/wordpress-hacks/wp-affiliate-fix-soapclient.html&#34;&#62;Here&#60;/a&#62; is a &#60;a href=&#34;http://zerohill.com/wordpress-hacks/wp-affiliate-fix-soapclient.html&#34;&#62;Fix for WP-Affiliate&#60;/a&#62; for issue described in post #2.
&#60;/p&#62;</description>
</item>
<item>
<title>drazek on "[Plugin: WP-Affiliate] Exactly what it does?"</title>
<link>http://wordpress.org/support/topic/185876#post-886500</link>
<pubDate>Wed, 29 Oct 2008 01:26:15 +0000</pubDate>
<dc:creator>drazek</dc:creator>
<guid isPermaLink="false">886500@http://wordpress.org/support/</guid>
<description>&#60;p&#62;i get a fatal error when search product&#60;/p&#62;
&#60;p&#62;Warning: SoapClient::SoapClient() expects parameter 2 to be array, boolean given in wp-content/plugins/wp-affiliate/wp-affiliate-cj.php on line 100&#60;/p&#62;
&#60;p&#62;Fatal error: Uncaught SoapFault exception: [Client] SoapClient::SoapClient() [&#60;a href='soapclient.soapclient'&#62;soapclient.soapclient&#60;/a&#62;]: Invalid parameters in wp-content/plugins/wp-affiliate/wp-affiliate-cj.php:100 Stack trace: #0 wp-content/plugins/wp-affiliate/wp-affiliate-cj.php(100): SoapClient-&#38;gt;SoapClient('https://api.cj....', true) #1 wp-content/plugins/wp-affiliate/wp-affiliate-admin-functions.php(25): require_once('/home/...') #2 wp-includes/plugin.php(311): wp_affiliate_cj_page('') #3 wp-admin/admin.php(55): do_action('wp_affiliate_cj...', Array) #4 {main} thrown in wp-content/plugins/wp-affiliate/wp-affiliate-cj.php on line 100
&#60;/p&#62;</description>
</item>
<item>
<title>cycon on "[Plugin: WP-Affiliate] Exactly what it does?"</title>
<link>http://wordpress.org/support/topic/185876#post-793274</link>
<pubDate>Mon, 30 Jun 2008 15:10:00 +0000</pubDate>
<dc:creator>cycon</dc:creator>
<guid isPermaLink="false">793274@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Description (as of today) says: &#34;Easy affiliate link masking and more&#34;. I have installed it hoping that it masks affiliate links on my blog. It seems that this plugin works only with CJ network?&#60;br /&#62;
----&#60;br /&#62;
&#60;a href=&#34;http://WebLifeLive.com&#34;&#62;WebLifeLive.com&#60;/a&#62; - fell the digital breeze&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/wp-affiliate/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/wp-affiliate/&#60;/a&#62;
&#60;/p&#62;</description>
</item>

</channel>
</rss>
