<?xml version="1.0" encoding="UTF-8"?><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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Proper Virtuemart Support</title>
	<atom:link href="http://www.2checkout.com/community/public/general/proper-virtuemart-support/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.2checkout.com/community/public/general/proper-virtuemart-support/</link>
	<description>Just another 192.168.2.217 weblog</description>
	<lastBuildDate>Fri, 20 Nov 2009 14:25:40 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: soeren</title>
		<link>http://www.2checkout.com/community/public/general/proper-virtuemart-support/#comment-5090</link>
		<dc:creator>soeren</dc:creator>
		<pubDate>Fri, 04 Sep 2009 10:56:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.2checkout.com/community/public/general/proper-virtuemart-support/#comment-5090</guid>
		<description>ok, see here: &lt;a href=&quot;http://dev.virtuemart.net/cb/wiki/4070&quot; rel=&quot;nofollow&quot;&gt;2Checkout in VM 1.1.3&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>ok, see here: <a href="http://dev.virtuemart.net/cb/wiki/4070" rel="nofollow">2Checkout in VM 1.1.3</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: soeren</title>
		<link>http://www.2checkout.com/community/public/general/proper-virtuemart-support/#comment-5089</link>
		<dc:creator>soeren</dc:creator>
		<pubDate>Fri, 04 Sep 2009 10:52:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.2checkout.com/community/public/general/proper-virtuemart-support/#comment-5089</guid>
		<description>there&#039;s something missing at the beginning of the code!

this:
###
f

###</description>
		<content:encoded><![CDATA[<p>there&#8217;s something missing at the beginning of the code!</p>
<p>this:<br />
###<br />
f</p>
<p>###</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: soeren</title>
		<link>http://www.2checkout.com/community/public/general/proper-virtuemart-support/#comment-5088</link>
		<dc:creator>soeren</dc:creator>
		<pubDate>Fri, 04 Sep 2009 10:51:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.2checkout.com/community/public/general/proper-virtuemart-support/#comment-5088</guid>
		<description>Hi,

to fix the issue, the VirtueMart Store owner must update their 2Checkout Payment Method using the Store&#039;s Payment Method Form.
In the payment method form for the 2Checkout payment method, select the tab &quot;Configuration&quot;. After that fill in this new text (completely replace the old text) in the field &quot;Payment Extra Info&quot;:


&lt;code&gt;
f(&quot;user_info_id&quot;) != $dbbt-&gt;f(&quot;user_info_id&quot;)) {
         $q2  = &quot;SELECT * FROM #__vm_user_info WHERE user_info_id=&#039;&quot;.$db-&gt;f(&quot;user_info_id&quot;).&quot;&#039;&quot;;
    $dbst = new ps_DB;
   $dbst-&gt;setQuery($q2);
       $dbst-&gt;query();
      $dbst-&gt;next_record();
      }
     else  {
         $dbst = $dbbt;
    }
                    
      //Authnet vars to send
        $formdata = array (
   &#039;x_login&#039; =&gt; TWOCO_LOGIN,
   &#039;x_email_merchant&#039; =&gt; ((TWOCO_MERCHANT_EMAIL == &#039;True&#039;) ? &#039;TRUE&#039; : &#039;FALSE&#039;),
                 
      // Customer Name and Billing Address
  &#039;x_first_name&#039; =&gt; $dbbt-&gt;f(&quot;first_name&quot;),
        &#039;x_last_name&#039; =&gt; $dbbt-&gt;f(&quot;last_name&quot;),
  &#039;x_company&#039; =&gt; $dbbt-&gt;f(&quot;company&quot;),
      &#039;x_address&#039; =&gt; $dbbt-&gt;f(&quot;address_1&quot;),
    &#039;x_city&#039; =&gt; $dbbt-&gt;f(&quot;city&quot;),
    &#039;x_state&#039; =&gt; $dbbt-&gt;f(&quot;state&quot;),
  &#039;x_zip&#039; =&gt; $dbbt-&gt;f(&quot;zip&quot;),
      &#039;x_country&#039; =&gt; $dbbt-&gt;f(&quot;country&quot;),
      &#039;x_phone&#039; =&gt; $dbbt-&gt;f(&quot;phone_1&quot;),
        &#039;x_fax&#039; =&gt; $dbbt-&gt;f(&quot;fax&quot;),
      &#039;x_email&#039; =&gt; $dbbt-&gt;f(&quot;user_email&quot;),
 
       // Customer Shipping Address
  &#039;x_ship_to_first_name&#039; =&gt; $dbst-&gt;f(&quot;first_name&quot;),
        &#039;x_ship_to_last_name&#039; =&gt; $dbst-&gt;f(&quot;last_name&quot;),
  &#039;x_ship_to_company&#039; =&gt; $dbst-&gt;f(&quot;company&quot;),
      &#039;x_ship_to_address&#039; =&gt; $dbst-&gt;f(&quot;address_1&quot;),
    &#039;x_ship_to_city&#039; =&gt; $dbst-&gt;f(&quot;city&quot;),
    &#039;x_ship_to_state&#039; =&gt; $dbst-&gt;f(&quot;state&quot;),
  &#039;x_ship_to_zip&#039; =&gt; $dbst-&gt;f(&quot;zip&quot;),
      &#039;x_ship_to_country&#039; =&gt; $dbst-&gt;f(&quot;country&quot;),
    
       &#039;x_invoice_num&#039; =&gt; $db-&gt;f(&quot;order_number&quot;),
       &#039;x_receipt_link_url&#039; =&gt; SECUREURL.&quot;2checkout_notify.php&quot;
  );
   
     if( TWOCO_TESTMODE == &quot;Y&quot; )
   $formdata[&#039;demo&#039;] = &quot;Y&quot;;
      
       $version = &quot;2&quot;;
    $url = &quot;https://www2.2checkout.com/2co/buyer/purchase&quot;;
    $formdata[&#039;x_amount&#039;] = number_format($db-&gt;f(&quot;order_total&quot;), 2, &#039;.&#039;, &#039;&#039;);
 
       //build the post string
       $poststring = &#039;&#039;;
  foreach($formdata AS $key =&gt; $val){
          $poststring .= &#039;
 &#039;;
    }
   
      ?&gt;
    &lt;form action=&quot;&quot; method=&quot;post&quot; target=&quot;_blank&quot;&gt;
       
    Click on the Image below to pay...
     
      

&lt;/code&gt;

ciao, Sören</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>to fix the issue, the VirtueMart Store owner must update their 2Checkout Payment Method using the Store&#8217;s Payment Method Form.<br />
In the payment method form for the 2Checkout payment method, select the tab &#8220;Configuration&#8221;. After that fill in this new text (completely replace the old text) in the field &#8220;Payment Extra Info&#8221;:</p>
<p><code><br />
f("user_info_id") != $dbbt-&gt;f("user_info_id")) {<br />
         $q2  = "SELECT * FROM #__vm_user_info WHERE user_info_id='".$db-&gt;f("user_info_id")."'";<br />
    $dbst = new ps_DB;<br />
   $dbst-&gt;setQuery($q2);<br />
       $dbst-&gt;query();<br />
      $dbst-&gt;next_record();<br />
      }<br />
     else  {<br />
         $dbst = $dbbt;<br />
    }</p>
<p>      //Authnet vars to send<br />
        $formdata = array (<br />
   'x_login' =&gt; TWOCO_LOGIN,<br />
   'x_email_merchant' =&gt; ((TWOCO_MERCHANT_EMAIL == 'True') ? 'TRUE' : 'FALSE'),</p>
<p>      // Customer Name and Billing Address<br />
  'x_first_name' =&gt; $dbbt-&gt;f("first_name"),<br />
        'x_last_name' =&gt; $dbbt-&gt;f("last_name"),<br />
  'x_company' =&gt; $dbbt-&gt;f("company"),<br />
      'x_address' =&gt; $dbbt-&gt;f("address_1"),<br />
    'x_city' =&gt; $dbbt-&gt;f("city"),<br />
    'x_state' =&gt; $dbbt-&gt;f("state"),<br />
  'x_zip' =&gt; $dbbt-&gt;f("zip"),<br />
      'x_country' =&gt; $dbbt-&gt;f("country"),<br />
      'x_phone' =&gt; $dbbt-&gt;f("phone_1"),<br />
        'x_fax' =&gt; $dbbt-&gt;f("fax"),<br />
      'x_email' =&gt; $dbbt-&gt;f("user_email"),</p>
<p>       // Customer Shipping Address<br />
  'x_ship_to_first_name' =&gt; $dbst-&gt;f("first_name"),<br />
        'x_ship_to_last_name' =&gt; $dbst-&gt;f("last_name"),<br />
  'x_ship_to_company' =&gt; $dbst-&gt;f("company"),<br />
      'x_ship_to_address' =&gt; $dbst-&gt;f("address_1"),<br />
    'x_ship_to_city' =&gt; $dbst-&gt;f("city"),<br />
    'x_ship_to_state' =&gt; $dbst-&gt;f("state"),<br />
  'x_ship_to_zip' =&gt; $dbst-&gt;f("zip"),<br />
      'x_ship_to_country' =&gt; $dbst-&gt;f("country"),</p>
<p>       'x_invoice_num' =&gt; $db-&gt;f("order_number"),<br />
       'x_receipt_link_url' =&gt; SECUREURL."2checkout_notify.php"<br />
  );</p>
<p>     if( TWOCO_TESTMODE == "Y" )<br />
   $formdata['demo'] = "Y";</p>
<p>       $version = "2";<br />
    $url = "https://www2.2checkout.com/2co/buyer/purchase";<br />
    $formdata['x_amount'] = number_format($db-&gt;f("order_total"), 2, '.', '');</p>
<p>       //build the post string<br />
       $poststring = '';<br />
  foreach($formdata AS $key =&gt; $val){<br />
          $poststring .= '<br />
 ';<br />
    }</p>
<p>      ?&gt;<br />
    &lt;form action=&quot;" method="post" target="_blank"&gt;</p>
<p>    Click on the Image below to pay...</p>
<p></code></p>
<p>ciao, Sören</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: craig</title>
		<link>http://www.2checkout.com/community/public/general/proper-virtuemart-support/#comment-5078</link>
		<dc:creator>craig</dc:creator>
		<pubDate>Mon, 31 Aug 2009 20:47:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.2checkout.com/community/public/general/proper-virtuemart-support/#comment-5078</guid>
		<description>We have been in communication with the VirtueMart developers and we have been assured that these issues will be resolved in VirtueMart&#039;s next software release. At this time we do not have a release date but we will update this thread as soon as we have more information.</description>
		<content:encoded><![CDATA[<p>We have been in communication with the VirtueMart developers and we have been assured that these issues will be resolved in VirtueMart&#8217;s next software release. At this time we do not have a release date but we will update this thread as soon as we have more information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: craig</title>
		<link>http://www.2checkout.com/community/public/general/proper-virtuemart-support/#comment-4873</link>
		<dc:creator>craig</dc:creator>
		<pubDate>Sun, 28 Jun 2009 20:38:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.2checkout.com/community/public/general/proper-virtuemart-support/#comment-4873</guid>
		<description>We appreciate your concern with this issue and understand your frustration as this is the most requested shopping cart to get certified. The main goal of our integrations department is to get as many carts certified as possible. We have been trying to get VirtueMart certified for the some time now but thus far have been unsuccessful. We have attempted to contact all 3 contacts listed on their site with in the past month but have not been successful thus far. We will continue to pursue this certification and will update this post once we have new information pertaining to this issue.</description>
		<content:encoded><![CDATA[<p>We appreciate your concern with this issue and understand your frustration as this is the most requested shopping cart to get certified. The main goal of our integrations department is to get as many carts certified as possible. We have been trying to get VirtueMart certified for the some time now but thus far have been unsuccessful. We have attempted to contact all 3 contacts listed on their site with in the past month but have not been successful thus far. We will continue to pursue this certification and will update this post once we have new information pertaining to this issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vaynero</title>
		<link>http://www.2checkout.com/community/public/general/proper-virtuemart-support/#comment-4872</link>
		<dc:creator>vaynero</dc:creator>
		<pubDate>Sun, 28 Jun 2009 20:12:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.2checkout.com/community/public/general/proper-virtuemart-support/#comment-4872</guid>
		<description>So basically the next time somebody asks about this, they&#039;ll get the same reply. You stated about a year ago that you are looking into this &quot;in depth&quot;. http://www.2checkout.com/community/public/getting-started/virtuemart/

I find it hard to believe that the developers can&#039;t be reached by phone or email for all this time. But yeah, you&#039;re right. Its not up to you to support something like this. Even if the whole appeal of the service is 2co support.

http://virtuemart.net/documentation/User_Manual/Payment_Methods.html

Anyway. I suppose I&#039;ll have to concede. Lord knows I tried sorting this out with the virtuemart developers too. 2 companies pointing fingers. This will never get resolved.
The only reason I complained harder here is because virtuemart isn&#039;t the one losing customers.

Thanks for trying.

- Bjorn</description>
		<content:encoded><![CDATA[<p>So basically the next time somebody asks about this, they&#8217;ll get the same reply. You stated about a year ago that you are looking into this &#8220;in depth&#8221;. <a href="http://www.2checkout.com/community/public/getting-started/virtuemart/" rel="nofollow">http://www.2checkout.com/community/public/getting-started/virtuemart/</a></p>
<p>I find it hard to believe that the developers can&#8217;t be reached by phone or email for all this time. But yeah, you&#8217;re right. Its not up to you to support something like this. Even if the whole appeal of the service is 2co support.</p>
<p><a href="http://virtuemart.net/documentation/User_Manual/Payment_Methods.html" rel="nofollow">http://virtuemart.net/documentation/User_Manual/Payment_Methods.html</a></p>
<p>Anyway. I suppose I&#8217;ll have to concede. Lord knows I tried sorting this out with the virtuemart developers too. 2 companies pointing fingers. This will never get resolved.<br />
The only reason I complained harder here is because virtuemart isn&#8217;t the one losing customers.</p>
<p>Thanks for trying.</p>
<p>- Bjorn</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: craig</title>
		<link>http://www.2checkout.com/community/public/general/proper-virtuemart-support/#comment-4871</link>
		<dc:creator>craig</dc:creator>
		<pubDate>Sun, 28 Jun 2009 17:42:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.2checkout.com/community/public/general/proper-virtuemart-support/#comment-4871</guid>
		<description>Unfortunately, its not up to us to support VirtueMart. We have to get VirtueMart to support one of our parameter sets and at this point we have received no response from the VirtueMart support staff. Our integrations team will continue to attempt to contact the cart developer and will update this post when the integration issues have been resolved.</description>
		<content:encoded><![CDATA[<p>Unfortunately, its not up to us to support VirtueMart. We have to get VirtueMart to support one of our parameter sets and at this point we have received no response from the VirtueMart support staff. Our integrations team will continue to attempt to contact the cart developer and will update this post when the integration issues have been resolved.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vaynero</title>
		<link>http://www.2checkout.com/community/public/general/proper-virtuemart-support/#comment-4870</link>
		<dc:creator>vaynero</dc:creator>
		<pubDate>Sun, 28 Jun 2009 17:26:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.2checkout.com/community/public/general/proper-virtuemart-support/#comment-4870</guid>
		<description>So is there a final word on this wetter or not you&#039;re going to support virtuemart?</description>
		<content:encoded><![CDATA[<p>So is there a final word on this wetter or not you&#8217;re going to support virtuemart?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joel</title>
		<link>http://www.2checkout.com/community/public/general/proper-virtuemart-support/#comment-4762</link>
		<dc:creator>joel</dc:creator>
		<pubDate>Tue, 02 Jun 2009 13:56:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.2checkout.com/community/public/general/proper-virtuemart-support/#comment-4762</guid>
		<description>Hello Bjorn - Simba is not available to provide an update today but as soon as him or I can provide an update we will post it here.</description>
		<content:encoded><![CDATA[<p>Hello Bjorn &#8211; Simba is not available to provide an update today but as soon as him or I can provide an update we will post it here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vaynero</title>
		<link>http://www.2checkout.com/community/public/general/proper-virtuemart-support/#comment-4760</link>
		<dc:creator>vaynero</dc:creator>
		<pubDate>Tue, 02 Jun 2009 09:52:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.2checkout.com/community/public/general/proper-virtuemart-support/#comment-4760</guid>
		<description>Any updates regarding this subject?</description>
		<content:encoded><![CDATA[<p>Any updates regarding this subject?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
