<?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>Support Forum: Recent Posts</title>
<link>http://newmedias.co.uk/support/</link>
<description>Cambridge New Media Services Support Forum</description>
<language>en</language>
<pubDate>Fri, 10 Sep 2010 11:29:16 +0000</pubDate>

<item>
<title>Glenn on "How to do a Discount Code???"</title>
<link>http://newmedias.co.uk/support/topic/how-to-do-a-discount-code-1#post-8213</link>
<pubDate>Fri, 10 Sep 2010 10:08:22 +0000</pubDate>
<dc:creator>Glenn</dc:creator>
<guid isPermaLink="false">8213@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Hi Ernie,&#60;/p&#62;
&#60;p&#62;Having just seen the screenshots you sent to Tim, everything actually seems to be there and active. So I'm unsure as to what exactly isn't working. Is the user not being prompted for the coupon code, or is the user entering the code and it not applying a discount ?
&#60;/p&#62;</description>
</item>
<item>
<title>MylifeinFiction on "How to do a Discount Code???"</title>
<link>http://newmedias.co.uk/support/topic/how-to-do-a-discount-code-1#post-8212</link>
<pubDate>Fri, 10 Sep 2010 08:58:14 +0000</pubDate>
<dc:creator>MylifeinFiction</dc:creator>
<guid isPermaLink="false">8212@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Where is the 'coupons table setup in the db' located at???&#60;/p&#62;
&#60;p&#62;Thanks for your help!&#60;/p&#62;
&#60;p&#62;Ernie-
&#60;/p&#62;</description>
</item>
<item>
<title>Tim on "How to do a Discount Code???"</title>
<link>http://newmedias.co.uk/support/topic/how-to-do-a-discount-code-1#post-8211</link>
<pubDate>Fri, 10 Sep 2010 08:10:23 +0000</pubDate>
<dc:creator>Tim</dc:creator>
<guid isPermaLink="false">8211@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Name - place your code&#60;br /&#62;
Value - place 200&#60;br /&#62;
Description - a short description to remind you why you have that coupon&#60;/p&#62;
&#60;p&#62;Done.&#60;/p&#62;
&#60;p&#62;If you do this and nothing happens, check you have a coupons table setup in the db, old versions that are upgraded sometimes forget to add the table db.
&#60;/p&#62;</description>
</item>
<item>
<title>MylifeinFiction on "How to do a Discount Code???"</title>
<link>http://newmedias.co.uk/support/topic/how-to-do-a-discount-code-1#post-8209</link>
<pubDate>Thu, 09 Sep 2010 20:16:31 +0000</pubDate>
<dc:creator>MylifeinFiction</dc:creator>
<guid isPermaLink="false">8209@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Hey guys I am loving the Pluging now just wanting to know how can I make a discount for 200 dollars on it and use this code AMS913 as the one I give out to clients?&#60;/p&#62;
&#60;p&#62;Thanks!&#60;/p&#62;
&#60;p&#62;Ernie-
&#60;/p&#62;</description>
</item>
<item>
<title>Glenn on "Printing - etc."</title>
<link>http://newmedias.co.uk/support/topic/printing-etc#post-8207</link>
<pubDate>Thu, 09 Sep 2010 14:46:24 +0000</pubDate>
<dc:creator>Glenn</dc:creator>
<guid isPermaLink="false">8207@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;I did consider suggesting something similar, but figured if I did somebody would point out how easy it is to copy and paste the content or disable the stylesheet.&#60;/p&#62;
&#60;p&#62;But yes, if you're only looking to deter casual users from printing, a custom printer style sheet in the way wzp explains is certainly a good possibility to consider.
&#60;/p&#62;</description>
</item>
<item>
<title>wzp on "Printing - etc."</title>
<link>http://newmedias.co.uk/support/topic/printing-etc#post-8206</link>
<pubDate>Thu, 09 Sep 2010 14:02:57 +0000</pubDate>
<dc:creator>wzp</dc:creator>
<guid isPermaLink="false">8206@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Create a copy of your theme's stylesheet. and save the copy as your printer stylesheet.&#60;/p&#62;
&#60;p&#62;In the header.php for your theme, tell WP to use the original for screen media and the copy for print media.  Here is an example from my header.php file (warning: extra spaces added to angle brackets!):&#60;/p&#62;
&#60;p&#62;&#38;lt; !-- Where to find the screen style sheet. -- &#38;gt;&#60;br /&#62;
        &#38;lt; link rel=&#38;quot;stylesheet&#38;quot; href=&#38;quot;&#38;lt; ?php bloginfo(&#38;quot;stylesheet_url&#38;quot;);? &#38;gt;&#38;quot; type=&#38;quot;text/css&#38;quot; media=&#38;quot;screen&#38;quot; / &#38;gt;&#60;br /&#62;
&#38;lt; !-- Where to find the printer style sheet. -- &#38;gt;&#60;br /&#62;
        &#38;lt; link rel=&#38;quot;stylesheet&#38;quot; href=&#38;quot;&#38;lt;?php bloginfo(&#38;quot;stylesheet_directory&#38;quot;); ?&#38;gt;/print.css&#38;quot; type=&#38;quot;text/css&#38;quot; media=&#38;quot;print&#38;quot; / &#38;gt;&#60;/p&#62;
&#60;p&#62;In this example, &#38;quot;style.css&#38;quot; is the main stylesheet and &#38;quot;print.css&#38;quot; is the printer stylesheet.&#60;/p&#62;
&#60;p&#62;Then in the &#38;quot;printer stylesheet,&#38;quot; put &#38;quot;display:none&#38;quot; inside all of the elements that you wish to disable during printing.&#60;/p&#62;
&#60;p&#62;Now, because the print stylesheet is referenced from the header.php file, it may be possible to use YM to turn on/off different stylesheets for printing.
&#60;/p&#62;</description>
</item>
<item>
<title>Charles on "YM error after updating website"</title>
<link>http://newmedias.co.uk/support/topic/ym-error-after-updating-website#post-8205</link>
<pubDate>Thu, 09 Sep 2010 09:33:05 +0000</pubDate>
<dc:creator>Charles</dc:creator>
<guid isPermaLink="false">8205@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Hi Sean,&#60;br /&#62;
I sent you a messgae to &#60;a href=&#34;mailto:sean@newmedias.co.uk&#34;&#62;sean@newmedias.co.uk&#60;/a&#62; with details. Thanks for your immediate reply. :)&#60;/p&#62;
&#60;p&#62;thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>Glenn on "Printing - etc."</title>
<link>http://newmedias.co.uk/support/topic/printing-etc#post-8204</link>
<pubDate>Thu, 09 Sep 2010 09:29:51 +0000</pubDate>
<dc:creator>Glenn</dc:creator>
<guid isPermaLink="false">8204@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Hi Nick,&#60;/p&#62;
&#60;p&#62;The concept of allowing non-members to see a small amount of &#38;quot;teaser text&#38;quot; and members get the full article is something well catered for in YM as is selling groups of pages together in one pack.&#60;/p&#62;
&#60;p&#62;However, printing is a whole different issue, this is all controlled by the web browser and not something the website can't easily influence, you can do things like more simplistic style sheets to generate a more print-friendly version of the page, but I'm unaware of any way of simply stopping users printing the content they can see on site.&#60;/p&#62;
&#60;p&#62;I hope this helps.
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "YM error after updating website"</title>
<link>http://newmedias.co.uk/support/topic/ym-error-after-updating-website#post-8203</link>
<pubDate>Thu, 09 Sep 2010 09:14:55 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">8203@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Hi, why did you not just overwrite the old copy of WP and then it would have taken 5mins instead of having to mess about with db tables etc... Can you send me an email with an admin login and I shall activate it for you again.&#60;/p&#62;
&#60;p&#62;ta&#60;br /&#62;
S
&#60;/p&#62;</description>
</item>
<item>
<title>Charles on "YM error after updating website"</title>
<link>http://newmedias.co.uk/support/topic/ym-error-after-updating-website#post-8202</link>
<pubDate>Thu, 09 Sep 2010 09:04:34 +0000</pubDate>
<dc:creator>Charles</dc:creator>
<guid isPermaLink="false">8202@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Hi,&#60;br /&#62;
We updated our website from wp 2.9.2 to 3.0.1. After update that it gives following error.&#60;br /&#62;
&#38;quot;The email provided has not purchased a copy of YourMembers&#60;/p&#62;
&#60;p&#62;Your Members will not function until a valid License Key has been entered. Please enter the email address you used to purchase the plugin in the box below to activate it. We also ask for the site that you purchased YM at so that the license check can be performed on the correct database.&#60;/p&#62;
&#60;p&#62;If you don't have a key then please visit &#60;a href=&#34;http://www.newmedias.co.uk&#34; rel=&#34;nofollow&#34;&#62;http://www.newmedias.co.uk&#60;/a&#62; to purchase one.&#38;quot;&#60;/p&#62;
&#60;p&#62;I know the email address is correct but it doesn't recognize it and this error can be occurred because we installed a brand new copy of the WP, copy and paste the content&#60;br /&#62;
and just import users from MySQL. So I have no wonder to happen this. So can you please make the adjustments for us? Sean configured the YM for us last time because it gave the same error. Please help us to solve this.&#60;br /&#62;
Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>ilya on "wp_ym_transaction_action table missing?"</title>
<link>http://newmedias.co.uk/support/topic/wp_ym_transaction_action-table-missing#post-8199</link>
<pubDate>Wed, 08 Sep 2010 09:28:57 +0000</pubDate>
<dc:creator>ilya</dc:creator>
<guid isPermaLink="false">8199@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Okay, I found the table structure in the plugin activation function, and setup the missing tables: (XXX_ym_transaction, XXX_ym_transaction_action).
&#60;/p&#62;</description>
</item>
<item>
<title>ilya on "wp_ym_transaction_action table missing?"</title>
<link>http://newmedias.co.uk/support/topic/wp_ym_transaction_action-table-missing#post-8198</link>
<pubDate>Wed, 08 Sep 2010 09:19:58 +0000</pubDate>
<dc:creator>ilya</dc:creator>
<guid isPermaLink="false">8198@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I'm currently struggling to get WorldPay to work in our installation, and I found in the error logs a reference to a missing table: wp_ym_transaction_action.&#60;/p&#62;
&#60;p&#62;Any ideas why it'd be missing -- or how I could set it up?&#60;/p&#62;
&#60;p&#62;Thanks in advance!&#60;/p&#62;
&#60;p&#62;Ilya
&#60;/p&#62;</description>
</item>
<item>
<title>NickStrong on "Printing - etc."</title>
<link>http://newmedias.co.uk/support/topic/printing-etc#post-8193</link>
<pubDate>Tue, 07 Sep 2010 15:14:23 +0000</pubDate>
<dc:creator>NickStrong</dc:creator>
<guid isPermaLink="false">8193@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;I have a large WP information site, I'd to be able to&#60;br /&#62;
a) Control printing of pages, maybe globally, maybe on a category or grouped basis.&#60;br /&#62;
b) Sell groups of pages, or the whole site (more or less), as a download. Maybe as PDFs, maybe as compiled .exe files. &#60;/p&#62;
&#60;p&#62;Essentially, the open public can see the site and its contents/navigation/pages etc. but each individual page has a 'more' link after (say) 30 lines being visible, then free membership sign-up is required. Non-members can print pages but the output is similarly severely restricted and no images print. These restrictions would be lifted for Members, but I'd also like to restrict printing out every page of the whole site even to them. Possibly with the option that images only print for (paid)(one-time or maybe annual repeat) Subscribers. And finally, as noted above, Customers can purchase various assemblages of the information as downloads, on a one-off basis. &#60;/p&#62;
&#60;p&#62;I'd be very grateful if you could answer these points. Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>Tim on "Updating Downloads"</title>
<link>http://newmedias.co.uk/support/topic/updating-downloads#post-8192</link>
<pubDate>Tue, 07 Sep 2010 12:05:30 +0000</pubDate>
<dc:creator>Tim</dc:creator>
<guid isPermaLink="false">8192@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;I agree to put bluntly the download manager currently sucks, it won't be in the next release, but its on the todo list of restarting from scratch
&#60;/p&#62;</description>
</item>
<item>
<title>anmari on "Updating Downloads"</title>
<link>http://newmedias.co.uk/support/topic/updating-downloads#post-8191</link>
<pubDate>Tue, 07 Sep 2010 11:53:14 +0000</pubDate>
<dc:creator>anmari</dc:creator>
<guid isPermaLink="false">8191@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Hi guys,&#60;br /&#62;
I am playing with downloads for zipped plugin files and have found that basically If I want to update a download file, I have to ftp the update to overwrite the existing download file.&#60;/p&#62;
&#60;p&#62;Problems:&#60;br /&#62;
I cannot overwrite /update a download file within the same download number and with the same filename.&#60;/p&#62;
&#60;p&#62;If I delete the existing download, the underlying file is not deleted, so I cannot add the new file anyway.&#60;/p&#62;
&#60;p&#62;Because these are plugin files, the names have to be the same otherwise the wordpress zip install will create a new folder (uses the zip file name as the folder name).&#60;/p&#62;
&#60;p&#62;Now that I know I have no problem ftp'ing, but thought you may want to address this in next release.  (Basically I think &#60;/p&#62;
&#60;p&#62;1) one should be able to, from the edit download screen, overwrite the download file and&#60;br /&#62;
2) a delete download should probably delete the file too? or make that an explicit option.
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "tracking downloads"</title>
<link>http://newmedias.co.uk/support/topic/tracking-downloads#post-8189</link>
<pubDate>Mon, 06 Sep 2010 23:03:17 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">8189@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;It has been quite rightly suggested to me by another forum user that the new YM transaction logging code can store information on number of hits etc.. It's not nicely formatted but it does indeed log downloads.&#60;/p&#62;
&#60;p&#62;You can find it in the transaction log pages within the YM admin.&#60;/p&#62;
&#60;p&#62;thanks&#60;br /&#62;
Sean
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "User Roles, Capabilities &#38; YM's place in all of it!"</title>
<link>http://newmedias.co.uk/support/topic/user-roles-capabilities-amp-yms-place-in-all-of-it#post-8188</link>
<pubDate>Mon, 06 Sep 2010 21:50:28 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">8188@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Hi Anthony,&#60;/p&#62;
&#60;p&#62;Sorry about the delay in response... Our role system is very different from the WP roles and capabilities system. Users sign up as subscribers as normal and then if they decide to pay then they are given a YM role (which you can choose the name(s) for) which you then allocate access for. YM does allow you to escalate users' roles according to the subscription they buy (optionally).&#60;/p&#62;
&#60;p&#62;RE the YR integration, you can email YM roles only at the moment so people who are signed up but have not purchased a subscription can be emailed as well.&#60;/p&#62;
&#60;p&#62;thanks&#60;br /&#62;
Sean
&#60;/p&#62;</description>
</item>
<item>
<title>ilya on "Changing all posts' pay-per-post price"</title>
<link>http://newmedias.co.uk/support/topic/changing-all-posts-pay-per-post-price#post-8184</link>
<pubDate>Mon, 06 Sep 2010 13:49:13 +0000</pubDate>
<dc:creator>ilya</dc:creator>
<guid isPermaLink="false">8184@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Thanks! That did the trick!
&#60;/p&#62;</description>
</item>
<item>
<title>dropvision on "german language"</title>
<link>http://newmedias.co.uk/support/topic/german-language#post-8183</link>
<pubDate>Mon, 06 Sep 2010 13:24:27 +0000</pubDate>
<dc:creator>dropvision</dc:creator>
<guid isPermaLink="false">8183@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;allright thank you&#60;br /&#62;
then i will send it to you if i am successfull ; )
&#60;/p&#62;</description>
</item>
<item>
<title>Glenn on "german language"</title>
<link>http://newmedias.co.uk/support/topic/german-language#post-8182</link>
<pubDate>Mon, 06 Sep 2010 13:02:43 +0000</pubDate>
<dc:creator>Glenn</dc:creator>
<guid isPermaLink="false">8182@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;I'm not aware of anyone having done any translation work in the past, so yes, you'd have to undertake the work yourself. Let me know how it goes as I'm sure other would like to see the results.
&#60;/p&#62;</description>
</item>
<item>
<title>dropvision on "german language"</title>
<link>http://newmedias.co.uk/support/topic/german-language#post-8179</link>
<pubDate>Mon, 06 Sep 2010 11:36:13 +0000</pubDate>
<dc:creator>dropvision</dc:creator>
<guid isPermaLink="false">8179@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;is there a german language file or do i have to translate it for myselfe in the &#38;quot;lang&#38;quot; folder?&#60;/p&#62;
&#60;p&#62;best regards
&#60;/p&#62;</description>
</item>
<item>
<title>Tim on "Import User Data as Promised?"</title>
<link>http://newmedias.co.uk/support/topic/import-user-data-as-promised#post-8172</link>
<pubDate>Sat, 04 Sep 2010 05:32:21 +0000</pubDate>
<dc:creator>Tim</dc:creator>
<guid isPermaLink="false">8172@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Can you tell me which version of Your Members and Wordpress you are you using?&#60;br /&#62;
Also what details are there on your users, import is still very experiemental, as it has no validation and relatively strict data requirements
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "callback failed"</title>
<link>http://newmedias.co.uk/support/topic/callback-failed-2#post-8170</link>
<pubDate>Fri, 03 Sep 2010 18:36:24 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">8170@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Hi Reece,&#60;/p&#62;
&#60;p&#62;Sorry about the late response... I would recommend upgrading to 1.7 and having another go. We did a lot of work on this issue for 1.6 I believe.&#60;/p&#62;
&#60;p&#62;thanks&#60;br /&#62;
Sean
&#60;/p&#62;</description>
</item>
<item>
<title>kamenlee on "Authorize.net ARB Issue"</title>
<link>http://newmedias.co.uk/support/topic/authorizenet-arb-issue#post-8169</link>
<pubDate>Fri, 03 Sep 2010 18:19:51 +0000</pubDate>
<dc:creator>kamenlee</dc:creator>
<guid isPermaLink="false">8169@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Thanks for all of the help Sean. Things seem to be working as needed.
&#60;/p&#62;</description>
</item>
<item>
<title>reece_wba on "callback failed"</title>
<link>http://newmedias.co.uk/support/topic/callback-failed-2#post-8167</link>
<pubDate>Fri, 03 Sep 2010 06:48:38 +0000</pubDate>
<dc:creator>reece_wba</dc:creator>
<guid isPermaLink="false">8167@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;I also forgot to mention that I am using YM version 1.5.3 with WordPress 2.9.2.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>Burgy on "Import User Data as Promised?"</title>
<link>http://newmedias.co.uk/support/topic/import-user-data-as-promised#post-8165</link>
<pubDate>Thu, 02 Sep 2010 17:24:56 +0000</pubDate>
<dc:creator>Burgy</dc:creator>
<guid isPermaLink="false">8165@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;I did buy your Product also because you said:&#60;br /&#62;
&#38;quot;CSV Import and Export of Users&#60;br /&#62;
Easily move your member info to and from any application that supports the comma separated variable (CSV) format.&#38;quot;&#60;br /&#62;
&#60;a href=&#34;http://www.yourmembers.co.uk/the-plugin/feature-overview/&#34; rel=&#34;nofollow&#34;&#62;http://www.yourmembers.co.uk/the-plugin/feature-overview/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;After hours of search I can´t find any place where I can import the useres (1200), also the content of the page is locked down sucessfull and nobody can get the content for which they are paying 120 Euro. &#60;/p&#62;
&#60;p&#62;Please get back as soon as possible&#60;br /&#62;
Thanky for the nice piece of work, I would really love to get it going&#60;br /&#62;
Sincerely&#60;br /&#62;
 Burgy
&#60;/p&#62;</description>
</item>
<item>
<title>reece_wba on "callback failed"</title>
<link>http://newmedias.co.uk/support/topic/callback-failed-2#post-8162</link>
<pubDate>Thu, 02 Sep 2010 07:41:06 +0000</pubDate>
<dc:creator>reece_wba</dc:creator>
<guid isPermaLink="false">8162@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;I am getting the following error messages from the Your Members plugin in regards to PayPal IPN.&#60;/p&#62;
&#60;p&#62;sent a request to host: 'www.paypal.com'.&#60;br /&#62;
response was:&#60;br /&#62;
HTTP/1.1 200 OK Date: Wed, 01 Sep 2010 22:42:14 GMT Server: Apache Set-Cookie: ****COOKIE STRING REMOVE**** domain=.paypal.com; path=/; HttpOnly Set-Cookie: cookie_check=yes; expires=Sat, 29-Aug-2020 22:42:14 GMT; domain=.paypal.com; path=/; HttpOnly Set-Cookie: navcmd=_notify-validate; domain=.paypal.com; path=/; HttpOnly Set-Cookie: navlns=0.0; expires=Tue, 27-Aug-2030 22:42:14 GMT; domain=.paypal.com; path=/; HttpOnly Vary: Accept-Encoding Connection: close Transfer-Encoding: chunked Content-Type: text/html; charset=UTF-8 7 INVALID 0&#60;br /&#62;
post vars: &#60;/p&#62;
&#60;p&#62;Array&#60;br /&#62;
(&#60;br /&#62;
    [address_status] =&#38;gt; unconfirmed&#60;br /&#62;
    [recur_times] =&#38;gt; 11&#60;br /&#62;
    [subscr_date] =&#38;gt; 15:42:00 Sep 01, 2010 PDT&#60;br /&#62;
    [payer_id] =&#38;gt; ****REMOVED****&#60;br /&#62;
    [address_street] =&#38;gt; ****REMOVED****&#60;br /&#62;
    [mc_amount1] =&#38;gt; 1.00&#60;br /&#62;
    [inventory] =&#38;gt; 994&#60;br /&#62;
    [mc_amount2] =&#38;gt; 16.00&#60;br /&#62;
    [mc_amount3] =&#38;gt; 17.00&#60;br /&#62;
    [charset] =&#38;gt; windows-1252&#60;br /&#62;
    [address_zip] =&#38;gt; ****REMOVED****&#60;br /&#62;
    [first_name] =&#38;gt; ****REMOVED****&#60;br /&#62;
    [reattempt] =&#38;gt; 1&#60;br /&#62;
    [address_country_code] =&#38;gt; AU&#60;br /&#62;
    [address_name] =&#38;gt; ****REMOVED****&#60;br /&#62;
    [notify_version] =&#38;gt; 3.0&#60;br /&#62;
    [subscr_id] =&#38;gt; ****REMOVED****&#60;br /&#62;
    [custom] =&#38;gt; 1_1_AUD_458_bhc_W&#60;br /&#62;
    [payer_status] =&#38;gt; verified&#60;br /&#62;
    [business] =&#38;gt; ****REMOVED****&#60;br /&#62;
    [address_country] =&#38;gt; Australia&#60;br /&#62;
    [address_city] =&#38;gt; ****REMOVED****&#60;br /&#62;
    [verify_sign] =&#38;gt; ****REMOVED****&#60;br /&#62;
    [payer_email] =&#38;gt; ****REMOVED****&#60;br /&#62;
    [btn_id] =&#38;gt; 11245769&#60;br /&#62;
    [last_name] =&#38;gt; ****REMOVED****&#60;br /&#62;
    [address_state] =&#38;gt; ****REMOVED****&#60;br /&#62;
    [receiver_email] =&#38;gt; ****REMOVED****&#60;br /&#62;
    [recurring] =&#38;gt; 1&#60;br /&#62;
    [txn_type] =&#38;gt; subscr_signup&#60;br /&#62;
    [item_name] =&#38;gt; Study Horses Enrolment&#60;br /&#62;
    [mc_currency] =&#38;gt; AUD&#60;br /&#62;
    [item_number] =&#38;gt; w-bhc&#60;br /&#62;
    [residence_country] =&#38;gt; AU&#60;br /&#62;
    [period1] =&#38;gt; 7 D&#60;br /&#62;
    [period2] =&#38;gt; 7 D&#60;br /&#62;
    [period3] =&#38;gt; 1 W&#60;br /&#62;
    [payment_status] =&#38;gt; Processed&#60;br /&#62;
)&#60;/p&#62;
&#60;p&#62;Any ideas why I am getting these email notifications?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Reece.
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "Authorize.net ARB Issue"</title>
<link>http://newmedias.co.uk/support/topic/authorizenet-arb-issue#post-8161</link>
<pubDate>Wed, 01 Sep 2010 21:33:32 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">8161@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Thanks for getting in touch with us. I think I know what the redirect issue is. It's to do with either the form method being blank or the form name not being filled in (sometimes JS is used to submit forms). I remember fixing it recently but it's gone into the next version. If you want to email me directly then I can send you another copy of YM to try instead.&#60;/p&#62;
&#60;p&#62;Another problem you are likely to face is that ARB isn't currently supported.. well.. the rebilling part isn't anyway. The CRON code required to get it working isn't yet in place and therefore rebills will be ignored. I would recommend sticking to single payments for now until we announce the next version of the Authorize.net module. It can't be far off but might not make it into 1.7.2 (the next YM version).&#60;/p&#62;
&#60;p&#62;thanks&#60;br /&#62;
Sean
&#60;/p&#62;</description>
</item>
<item>
<title>anthonydispezio on "User Roles, Capabilities &#38; YM's place in all of it!"</title>
<link>http://newmedias.co.uk/support/topic/user-roles-capabilities-amp-yms-place-in-all-of-it#post-8159</link>
<pubDate>Wed, 01 Sep 2010 14:42:56 +0000</pubDate>
<dc:creator>anthonydispezio</dc:creator>
<guid isPermaLink="false">8159@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;I am eager to have a stronger understanding of WP User Roles and how they coincide with Your Memebers.&#60;/p&#62;
&#60;p&#62;I am designing a site that requires users of all walks of userlevel:&#60;/p&#62;
&#60;p&#62;Admins - obligatory&#60;/p&#62;
&#60;p&#62;Subscribers - both free and paid subscription services linked to paypal renewal&#60;/p&#62;
&#60;p&#62;Authors/Editors - users with access to wp-admin to manage posts, custom post types, etc.&#60;/p&#62;
&#60;p&#62;Sales Reps - users who do not have access to wp-admin, but do have private front-end pages design specifically for their role (and sometimes specifically for that user).&#60;/p&#62;
&#60;p&#62;Advertisers - similar to sales reps, no wp-admin access, but have access to front-end pages designed specifically for users who are &#38;quot;advertisers&#38;quot; with the website.&#60;/p&#62;
&#60;p&#62;Ideally, I would like to be able to manage all of these roles and their different capabilities from a single user management page (available to admins).&#60;/p&#62;
&#60;p&#62;Is this something that can be done by WP? Or by Your Members? Or a collection of plugins? Or some snippets for the functions.php? Am I even understanding user roles correctly?&#60;/p&#62;
&#60;p&#62;Any help would be greatly appreciated.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Anthony&#60;/p&#62;
&#60;p&#62;As a side note: I am interested in using the Your Reminder integration, specifically the ability to email all users of a particular role. Is it possible to maintain this feature for my non-subscription roles?
&#60;/p&#62;</description>
</item>
<item>
<title>kamenlee on "Authorize.net ARB Issue"</title>
<link>http://newmedias.co.uk/support/topic/authorizenet-arb-issue#post-8156</link>
<pubDate>Tue, 31 Aug 2010 19:30:37 +0000</pubDate>
<dc:creator>kamenlee</dc:creator>
<guid isPermaLink="false">8156@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Authorize.net Issue&#60;/p&#62;
&#60;p&#62;I am trying to setup Authorize.net ARB. I have all of my settings in place and Member Roles setup, but have an issue subscribing as a paid member.&#60;/p&#62;
&#60;p&#62;If I choose register from the sidebar, I fill in the fields for a new account and choose Member. It adds the account, but lands in a redirect loop that is never ending. Also, if I log in as a trial user and choose &#38;quot;Upgrade Account&#38;quot;, choose &#38;quot;member&#38;quot; and hit next, it just refreshes the page to where I would choose member again.&#60;/p&#62;
&#60;p&#62;Can someone give me a hand with this?
&#60;/p&#62;</description>
</item>
<item>
<title>frederic on "Donors and subscription"</title>
<link>http://newmedias.co.uk/support/topic/donors-and-subscription#post-8155</link>
<pubDate>Tue, 31 Aug 2010 16:32:42 +0000</pubDate>
<dc:creator>frederic</dc:creator>
<guid isPermaLink="false">8155@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Thanks Tim.&#60;br /&#62;
I admit I haven't seen a membership plugin dealing with non-fixed donations yet... This would be really convenient for reporters and photographers like me who increasingly rely on donations and crowdfunding to do their job.&#60;br /&#62;
If you could implement such a feature this would give you an edge over the competition IMHO.&#60;br /&#62;
Frederic
&#60;/p&#62;</description>
</item>
<item>
<title>Tim on "Donors and subscription"</title>
<link>http://newmedias.co.uk/support/topic/donors-and-subscription#post-8154</link>
<pubDate>Tue, 31 Aug 2010 16:10:44 +0000</pubDate>
<dc:creator>Tim</dc:creator>
<guid isPermaLink="false">8154@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;I'm afraid we don't offer the option but it would not be hard to build in, piggybacking on the coupon system. I will have a think about it.
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "Membership role with Free account type - no description"</title>
<link>http://newmedias.co.uk/support/topic/membership-role-with-free-account-type-no-description#post-8152</link>
<pubDate>Tue, 31 Aug 2010 15:32:18 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">8152@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Hi anmari, yep the Free module is intentionally like that but it might be worth me looking into the way those things work. If you create a new account type not called Free and then create a pack with 0 value it will work in the same way and respect your naming template. I think the Free module itself might be on it's way out in favour of a pseudo module as opposed to an actual module as we have now.&#60;/p&#62;
&#60;p&#62;thanks&#60;br /&#62;
Sean
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "Membership role with Free account type - no description"</title>
<link>http://newmedias.co.uk/support/topic/membership-role-with-free-account-type-no-description#post-8151</link>
<pubDate>Tue, 31 Aug 2010 15:32:09 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">8151@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Hi anmari, yep the Free module is intentionally like that but it might be worth me looking into the way those things work. If you create a new account type not called Free and then create a pack with 0 value it will work in the same way and respect your naming template. I think the Free module itself might be on it's way out in favour of a pseudo module as opposed to an actual module as we have now.&#60;/p&#62;
&#60;p&#62;thanks&#60;br /&#62;
Sean
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "Membership role with Free account type - no description"</title>
<link>http://newmedias.co.uk/support/topic/membership-role-with-free-account-type-no-description#post-8150</link>
<pubDate>Tue, 31 Aug 2010 15:25:02 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">8150@http://newmedias.co.uk/support/</guid>
<description>&#60;p&#62;Hi anmari, yep the Free module is intentionally like that but it might be worth me looking into the way those things work. If you create a new account type not called Free and then create a pack with 0 value it will work in the same way and respect your naming template. I think the Free module itself might be on it's way out in favour of a pseudo module as opposed to an actual module as we have now.&#60;/p&#62;
&#60;p&#62;thanks&#60;br /&#62;
Sean
&#60;/p&#62;</description>
</item>

</channel>
</rss>
