<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: (13) The merchant login ID or password is invalid or the account is inactive. in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20341#M11154</link>
    <description>&lt;P&gt;Sound like you need to get the developer involve with fixing this or find one at &lt;A target="_self" href="http://www.authorize.net/solutions/merchantsolutions/merchantservices/certifieddeveloperdirectory/"&gt;Certified Developer Directory&lt;/A&gt;.&lt;/P&gt;</description>
    <pubDate>Tue, 20 Dec 2011 12:35:46 GMT</pubDate>
    <dc:creator>RaynorC1emen7</dc:creator>
    <dc:date>2011-12-20T12:35:46Z</dc:date>
    <item>
      <title>(13) The merchant login ID or password is invalid or the account is inactive.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20270#M11119</link>
      <description>&lt;P&gt;I am running ecommerce on a WP platform the recent 3.3 update left my cart not accepting Authorizenet, I was instructed by my theme support to download the new Authorizenet modules and files. after doing so I submit an order and ot brings this ERORR. I am not in TST mode and my LOG ID and Transaction Key are correct I ned to change some code somewhwre in these files can someone here help me find the code and change it ASAP? I wouod be so greatful this is a nightmare before XMAs and I can process orders.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2011 16:31:40 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20270#M11119</guid>
      <dc:creator>KYC313</dc:creator>
      <dc:date>2011-12-19T16:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: (13) The merchant login ID or password is invalid or the account is inactive.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20280#M11123</link>
      <description>&lt;P&gt;Hello please help I am using AIM with PHP here is code from my AuthorizeNetAIM.php file&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;?php&lt;BR /&gt;/**&lt;BR /&gt;* Easily interact with the Authorize.Net AIM API.&lt;BR /&gt;*&lt;BR /&gt;* Example Authorize and Capture Transaction against the Sandbox:&lt;BR /&gt;* &amp;lt;code&amp;gt;&lt;BR /&gt;* &amp;lt;?php require_once 'AuthorizeNet.php'&lt;BR /&gt;* $sale = new AuthorizeNetAIM;&lt;BR /&gt;* $sale-&amp;gt;setFields(&lt;BR /&gt;* array(&lt;BR /&gt;* 'amount' =&amp;gt; '4.99',&lt;BR /&gt;* 'card_num' =&amp;gt; '411111111111111',&lt;BR /&gt;* 'exp_date' =&amp;gt; '0515'&lt;BR /&gt;* )&lt;BR /&gt;* );&lt;BR /&gt;* $response = $sale-&amp;gt;authorizeAndCapture();&lt;BR /&gt;* if ($response-&amp;gt;approved) {&lt;BR /&gt;* echo "Sale successful!"; } else {&lt;BR /&gt;* echo $response-&amp;gt;error_message;&lt;BR /&gt;* }&lt;BR /&gt;* ?&amp;gt;&lt;BR /&gt;* &amp;lt;/code&amp;gt;&lt;BR /&gt;*&lt;BR /&gt;* Note: To send requests to the live gateway, either define this:&lt;BR /&gt;* define("AUTHORIZENET_SANDBOX", false);&lt;BR /&gt;* -- OR --&lt;BR /&gt;* $sale = new AuthorizeNetAIM;&lt;BR /&gt;* $sale-&amp;gt;setSandbox(false);&lt;BR /&gt;*&lt;BR /&gt;* @package AuthorizeNet&lt;BR /&gt;* @subpackage AuthorizeNetAIM&lt;BR /&gt;* @link &lt;A target="_blank" href="http://www.authorize.net/support/AIM_guide.pdf"&gt;http://www.authorize.net/support/AIM_guide.pdf&lt;/A&gt; AIM Guide&lt;BR /&gt;*/&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;/**&lt;BR /&gt;* Builds and sends an AuthorizeNet AIM Request.&lt;BR /&gt;*&lt;BR /&gt;* @package AuthorizeNet&lt;BR /&gt;* @subpackage AuthorizeNetAIM&lt;BR /&gt;*/&lt;BR /&gt;class AuthorizeNetAIM extends AuthorizeNetRequest&lt;BR /&gt;{&lt;/P&gt;&lt;P&gt;const LIVE_URL = '&lt;A target="_blank" href="https://secure.authorize.net/gateway/transact.dll';"&gt;https://secure.authorize.net/gateway/transact.dll';&lt;/A&gt;&lt;BR /&gt;const SANDBOX_URL = '&lt;A target="_blank" href="https://test.authorize.net/gateway/transact.dll';"&gt;https://test.authorize.net/gateway/transact.dll';&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt; /**&lt;BR /&gt;* Holds all the x_* name/values that will be posted in the request.&lt;BR /&gt;* Default values are provided for best practice fields.&lt;BR /&gt;*/&lt;BR /&gt;protected $_x_post_fields = array(&lt;BR /&gt;"version" =&amp;gt; "3.1",&lt;BR /&gt;"delim_char" =&amp;gt; ",",&lt;BR /&gt;"delim_data" =&amp;gt; "TRUE",&lt;BR /&gt;"relay_response" =&amp;gt; "FALSE",&lt;BR /&gt;"encap_char" =&amp;gt; "|",&lt;BR /&gt;);&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2011 19:26:54 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20280#M11123</guid>
      <dc:creator>KYC313</dc:creator>
      <dc:date>2011-12-19T19:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: (13) The merchant login ID or password is invalid or the account is inactive.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20282#M11124</link>
      <description>&lt;PRE&gt;* Note: To send requests to the live gateway, either define this:
* define("AUTHORIZENET_SANDBOX", false);
* -- OR --
* $sale = new AuthorizeNetAIM;
* $sale-&amp;gt;setSandbox(false);
*
* @package AuthorizeNet
* @subpackage AuthorizeNetAIM
* @link &lt;A target="_blank" href="http://www.authorize.net/support/AIM_guide.pdf"&gt;http://www.authorize.net/support/AIM_guide.pdf&lt;/A&gt; AIM Guide
*/&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;If you are using production id and key. Did you do the above?&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2011 19:30:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20282#M11124</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2011-12-19T19:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: (13) The merchant login ID or password is invalid or the account is inactive.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20284#M11125</link>
      <description>&lt;P&gt;no this code was written by my shopping cart theme developers. Is it not correct?&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2011 19:33:53 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20284#M11125</guid>
      <dc:creator>KYC313</dc:creator>
      <dc:date>2011-12-19T19:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: (13) The merchant login ID or password is invalid or the account is inactive.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20286#M11126</link>
      <description>&lt;P&gt;It look correct, and look a lot like the php SDK, but you need to do what it said.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2011 19:44:53 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20286#M11126</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2011-12-19T19:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: (13) The merchant login ID or password is invalid or the account is inactive.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20288#M11127</link>
      <description>&lt;P&gt;please excuse my ignorance but ypu asked "Did you do the above" ... I havent done anything and if I am to do what the code says to do where do I find this code is it on this same page or am I to read the PDF? &amp;nbsp;I am a newbie to PHP :) just trying my best to fix this today&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2011 19:52:21 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20288#M11127</guid>
      <dc:creator>KYC313</dc:creator>
      <dc:date>2011-12-19T19:52:21Z</dc:date>
    </item>
    <item>
      <title>Re: (13) The merchant login ID or password is invalid or the account is inactive.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20290#M11128</link>
      <description>&lt;P&gt;this code is in another file AuthorizeNetRequest.php there are many files in SDK its confusing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;?php&lt;BR /&gt;/**&lt;BR /&gt;* Sends requests to the Authorize.Net gateways.&lt;BR /&gt;*&lt;BR /&gt;* @package AuthorizeNet&lt;BR /&gt;* @subpackage AuthorizeNetRequest&lt;BR /&gt;*/&lt;BR /&gt;abstract class AuthorizeNetRequest&lt;BR /&gt;{&lt;BR /&gt;&lt;BR /&gt;protected $_api_login;&lt;BR /&gt;protected $_transaction_key;&lt;BR /&gt;protected $_post_string;&lt;BR /&gt;public $VERIFY_PEER = true; // Set to false if getting connection errors.&lt;BR /&gt;protected $_sandbox = true;&lt;BR /&gt;protected $_log_file = false;&lt;BR /&gt;&lt;BR /&gt;/**&lt;BR /&gt;* Set the _post_string&lt;BR /&gt;*/&lt;BR /&gt;abstract protected function _setPostString();&lt;BR /&gt;&lt;BR /&gt;/**&lt;BR /&gt;* Handle the response string&lt;BR /&gt;*/&lt;BR /&gt;abstract protected function _handleResponse($string);&lt;BR /&gt;&lt;BR /&gt;/**&lt;BR /&gt;* Get the post url. We need this because until 5.3 you&lt;BR /&gt;* you could not access child constants in a parent class.&lt;BR /&gt;*/&lt;BR /&gt;abstract protected function _getPostUrl();&lt;BR /&gt;&lt;BR /&gt;/**&lt;BR /&gt;* Constructor.&lt;BR /&gt;*&lt;BR /&gt;* @param string $api_login_id The Merchant's API Login ID.&lt;BR /&gt;* @param string $transaction_key The Merchant's Transaction Key.&lt;BR /&gt;*/&lt;BR /&gt;public function __construct($api_login_id = false, $transaction_key = false)&lt;BR /&gt;{&lt;BR /&gt;$this-&amp;gt;_api_login = ($api_login_id ? $api_login_id : (defined('AUTHORIZENET_API_LOGIN_ID') ? AUTHORIZENET_API_LOGIN_ID : ""));&lt;BR /&gt;$this-&amp;gt;_transaction_key = ($transaction_key ? $transaction_key : (defined('AUTHORIZENET_TRANSACTION_KEY') ? AUTHORIZENET_TRANSACTION_KEY : ""));&lt;BR /&gt;$this-&amp;gt;_sandbox = (defined('AUTHORIZENET_SANDBOX') ? AUTHORIZENET_SANDBOX : true);&lt;BR /&gt;$this-&amp;gt;_log_file = (defined('AUTHORIZENET_LOG_FILE') ? AUTHORIZENET_LOG_FILE : false);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2011 19:58:45 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20290#M11128</guid>
      <dc:creator>KYC313</dc:creator>
      <dc:date>2011-12-19T19:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: (13) The merchant login ID or password is invalid or the account is inactive.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20292#M11129</link>
      <description>&lt;P&gt;I'm not a php developer either:smileysad:.&lt;/P&gt;&lt;P&gt;But from the SDK readme.html&lt;/P&gt;&lt;PRE&gt;&amp;lt;?php
    require_once 'anet_php_sdk/AuthorizeNet.php'; 
    define("AUTHORIZENET_API_LOGIN_ID", "YOURLOGIN");
    define("AUTHORIZENET_TRANSACTION_KEY", "YOURKEY");
    define("AUTHORIZENET_SANDBOX", true);
    $sale = new AuthorizeNetAIM;
    $sale-&amp;gt;amount = "5.99";
    $sale-&amp;gt;card_num = '6011000000000012';
    $sale-&amp;gt;exp_date = '04/15';
    $response = $sale-&amp;gt;authorizeAndCapture();
    if ($response-&amp;gt;approved) {
        $transaction_id = $response-&amp;gt;transaction_id;
    }
?&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;So, I would said where you define your AUTHORIZENET_API_LOGIN_ID and&amp;nbsp;AUTHORIZENET_TRANSACTION_KEY&lt;/P&gt;&lt;P&gt;define AUTHORIZENET_SANDBOX to false&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2011 20:01:29 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20292#M11129</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2011-12-19T20:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: (13) The merchant login ID or password is invalid or the account is inactive.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20294#M11130</link>
      <description>&lt;P&gt;You shouldn't be modifying most, if any, of the files in the PHP SDK. You're supposed to set up the configuration files with your login and transaction key, etc, and then plug in the appropriate parts to your code where the transaction occurs. All that stuff your posting shouldn't be touched.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2011 20:12:53 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20294#M11130</guid>
      <dc:creator>stymiee</dc:creator>
      <dc:date>2011-12-19T20:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: (13) The merchant login ID or password is invalid or the account is inactive.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20298#M11132</link>
      <description>&lt;P&gt;Yeah I don't think I am to type in my actual LOGIN ID &amp;nbsp;and Transaction Key into this PHP code that should be "protected" but I may make that _SANDBOX to false and see what happens?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2011 20:17:15 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20298#M11132</guid>
      <dc:creator>KYC313</dc:creator>
      <dc:date>2011-12-19T20:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: (13) The merchant login ID or password is invalid or the account is inactive.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20300#M11133</link>
      <description>&lt;P&gt;If this helps I am running a Ecommerce theme on WP there was an update to WP last week to 3.3 after this my customers got a AVS Mis Match ERORR at checkout. I ws instructed to upload the New AuthorizeNet Folder this folder contained many new files and a SDK folder that was not in my first folders from march 2011 Aftet the upload &amp;nbsp;I made a Live purchase and always get the&amp;nbsp;(13) The merchant login ID or password is invalid or the account is inactive. ERORR.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2011 20:28:57 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20300#M11133</guid>
      <dc:creator>KYC313</dc:creator>
      <dc:date>2011-12-19T20:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: (13) The merchant login ID or password is invalid or the account is inactive.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20302#M11134</link>
      <description>&lt;P&gt;That's not the issue. You do have to put in your ID and key, and it should be safe to do so because (a) your hosting should be secure (if it isn't, you're doomed no matter what) and (b) the ID and key won't get hackers into your control panel. There's a separate login for that. What he's saying is that you shouldn't be editing code directly inside the SDK - you should be configuring things using a separate file, or just setting the config values on the same pages that you process the transaction from. Raynor posted what should be a good starting point, but you really need to look at the code examples in the documentation PDF, on this web site, in the AIM.markdown file in the doc folder of your SDK (assuming you're implementing AIM), etc. If you're doing AIM, I'd start with the AIM.markdown, since it gives the clearest examples of how to do a variety of things.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2011 20:58:53 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20302#M11134</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2011-12-19T20:58:53Z</dc:date>
    </item>
    <item>
      <title>Re: (13) The merchant login ID or password is invalid or the account is inactive.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20308#M11137</link>
      <description>&lt;P&gt;There are fields in my WP Panel that controls my shopping cart for PAYMENT OPTIONS this is where I have inserted my LOGIN ID and my Transaction Key they have been there since 3.2011 This is what I do not understand quote&lt;/P&gt;&lt;P&gt;"you should be configuring things using a separate file, or just setting the config values on the same pages that you process the transaction from."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. What seperate File? Where is this file?&lt;/P&gt;&lt;P&gt;2. What config values on what pages I process the transaction from?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2011 21:45:23 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20308#M11137</guid>
      <dc:creator>KYC313</dc:creator>
      <dc:date>2011-12-19T21:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: (13) The merchant login ID or password is invalid or the account is inactive.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20310#M11138</link>
      <description>&lt;P&gt;If you have a WordPress plugin and it has stopped functioning you need to contact the author of that plugin for support. We're not going to be able to help you because we're not going to know what actually broke. It's not the login credentials that broke or the PHP SDK. It's their code that broke and only they will know how and why. Basically you're barking up the wrong tree here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is the name of the plug in? Maybe we can find out if there is a known problem and solution for it elsewhere.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2011 21:58:54 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20310#M11138</guid>
      <dc:creator>stymiee</dc:creator>
      <dc:date>2011-12-19T21:58:54Z</dc:date>
    </item>
    <item>
      <title>Re: (13) The merchant login ID or password is invalid or the account is inactive.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20312#M11139</link>
      <description>&lt;P&gt;Hello &amp;nbsp;thanks for your patience and help&lt;/P&gt;&lt;P&gt;I am not using a PLUGIN it is a theme software by TEMPLATIC called Emporium here is my site&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://killyourculture.com/store/"&gt;http://killyourculture.com/store/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the CC Payment Option dis abled until I can find a fix, there support is of course in INDIA and this usually is very slow to get the proper fix or responses I am trying everything I can to correct this issue this week&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2011 22:05:47 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20312#M11139</guid>
      <dc:creator>KYC313</dc:creator>
      <dc:date>2011-12-19T22:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: (13) The merchant login ID or password is invalid or the account is inactive.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20314#M11140</link>
      <description>&lt;P&gt;They built the store into the theme? More or less the same thing. You'll need them to update the theme for it to work again. I would also make it a point to hold off on future upgrades of your software until you're sure it is compatible with your website.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2011 23:20:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20314#M11140</guid>
      <dc:creator>stymiee</dc:creator>
      <dc:date>2011-12-19T23:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: (13) The merchant login ID or password is invalid or the account is inactive.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20316#M11141</link>
      <description>&lt;P&gt;Did you get pass the error 13?&lt;/P&gt;&lt;P&gt;If not, undo the upload changed(AuthorizeNet&amp;nbsp; and SDK folder)? or a quick heck, on the AuthorizeNetAIM.php&lt;/P&gt;&lt;PRE&gt;class AuthorizeNetAIM extends AuthorizeNetRequest
{

const LIVE_URL = '&lt;A target="_blank" href="https://secure.authorize.net/gateway/transact.dll';"&gt;https://secure.authorize.net/gateway/transact.dll';&lt;/A&gt;
const SANDBOX_URL = '&lt;A target="_blank" href="https://test.authorize.net/gateway/transact.dll';"&gt;https://test.authorize.net/gateway/transact.dll';&lt;/A&gt;

/**&lt;/PRE&gt;&lt;P&gt;change the&lt;/P&gt;&lt;PRE&gt;const SANDBOX_URL = '&lt;A target="_blank" href="https://test.authorize.net/gateway/transact.dll';"&gt;https://test.authorize.net/gateway/transact.dll';&lt;/A&gt;&lt;/PRE&gt;&lt;P&gt;to&lt;/P&gt;&lt;PRE&gt;const SANDBOX_URL = '&lt;A target="_blank" href="https://secure.authorize.net/gateway/transact.dll';"&gt;https://secure.authorize.net/gateway/transact.dll';&lt;/A&gt;&lt;/PRE&gt;&lt;P&gt;So it will always use the production server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After that we can see what need to be done for the AVS error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2011 23:25:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20316#M11141</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2011-12-19T23:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: (13) The merchant login ID or password is invalid or the account is inactive.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20320#M11143</link>
      <description>&lt;P&gt;No I did not get passed this Error, another person here told me basically not to mess with their code and I was barking up the wrong tree asking for a fix here? and told me to go back to my developers who coded the Shopping Cart theme... but I am frustrated so you are telling me to change AuthorizeNEtAIM.php code below:&lt;/P&gt;&lt;P&gt;&amp;lt;?php&lt;BR /&gt;/**&lt;BR /&gt;* Easily interact with the Authorize.Net AIM API.&lt;BR /&gt;*&lt;BR /&gt;* Example Authorize and Capture Transaction against the Sandbox:&lt;BR /&gt;* &amp;lt;code&amp;gt;&lt;BR /&gt;* &amp;lt;?php require_once 'AuthorizeNet.php'&lt;BR /&gt;* $sale = new AuthorizeNetAIM;&lt;BR /&gt;* $sale-&amp;gt;setFields(&lt;BR /&gt;* array(&lt;BR /&gt;* 'amount' =&amp;gt; '4.99',&lt;BR /&gt;* 'card_num' =&amp;gt; '411111111111111',&lt;BR /&gt;* 'exp_date' =&amp;gt; '0515'&lt;BR /&gt;* )&lt;BR /&gt;* );&lt;BR /&gt;* $response = $sale-&amp;gt;authorizeAndCapture();&lt;BR /&gt;* if ($response-&amp;gt;approved) {&lt;BR /&gt;* echo "Sale successful!"; } else {&lt;BR /&gt;* echo $response-&amp;gt;error_message;&lt;BR /&gt;* }&lt;BR /&gt;* ?&amp;gt;&lt;BR /&gt;* &amp;lt;/code&amp;gt;&lt;BR /&gt;*&lt;BR /&gt;* Note: To send requests to the live gateway, either define this:&lt;BR /&gt;* define("AUTHORIZENET_SANDBOX", false);&lt;BR /&gt;* -- OR --&lt;BR /&gt;* $sale = new AuthorizeNetAIM;&lt;BR /&gt;* $sale-&amp;gt;setSandbox(false);&lt;BR /&gt;*&lt;BR /&gt;* @package AuthorizeNet&lt;BR /&gt;* @subpackage AuthorizeNetAIM&lt;BR /&gt;* @link &lt;A target="_blank" href="http://www.authorize.net/support/AIM_guide.pdf"&gt;http://www.authorize.net/support/AIM_guide.pdf&lt;/A&gt; AIM Guide&lt;BR /&gt;*/&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;/**&lt;BR /&gt;* Builds and sends an AuthorizeNet AIM Request.&lt;BR /&gt;*&lt;BR /&gt;* @package AuthorizeNet&lt;BR /&gt;* @subpackage AuthorizeNetAIM&lt;BR /&gt;*/&lt;BR /&gt;class AuthorizeNetAIM extends AuthorizeNetRequest&lt;BR /&gt;{&lt;/P&gt;&lt;P&gt;const LIVE_URL = '&lt;A target="_blank" href="https://secure.authorize.net/gateway/transact.dll';"&gt;https://secure.authorize.net/gateway/transact.dll';&lt;/A&gt;&lt;BR /&gt;const SANDBOX_URL = '&lt;A target="_blank" href="https://test.authorize.net/gateway/transact.dll';"&gt;https://test.authorize.net/gateway/transact.dll';&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt; /**&lt;BR /&gt;* Holds all the x_* name/values that will be posted in the request.&lt;BR /&gt;* Default values are provided for best practice fields.&lt;BR /&gt;*/&lt;BR /&gt;protected $_x_post_fields = array(&lt;BR /&gt;"version" =&amp;gt; "3.1",&lt;BR /&gt;"delim_char" =&amp;gt; ",",&lt;BR /&gt;"delim_data" =&amp;gt; "TRUE",&lt;BR /&gt;"relay_response" =&amp;gt; "FALSE",&lt;BR /&gt;"encap_char" =&amp;gt; "|",&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To&lt;/P&gt;&lt;PRE&gt;const SANDBOX_URL = '&lt;A href="https://secure.authorize.net/gateway/transact.dll';" rel="nofollow" target="_blank"&gt;https://secure.authorize.net/gateway/transact.dll';&lt;/A&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2011 00:40:48 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20320#M11143</guid>
      <dc:creator>KYC313</dc:creator>
      <dc:date>2011-12-20T00:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: (13) The merchant login ID or password is invalid or the account is inactive.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20324#M11145</link>
      <description>&lt;P&gt;I changed AuthorizeNetAIM.php file line of code const SANDBOX_URL = '&lt;A href="https://test.authorize.net/gateway/transact.dll';" rel="nofollow" target="_blank"&gt;https://test.authorize.net/gateway/transact.dll';&lt;/A&gt;&lt;/P&gt;&lt;P&gt;To&lt;/P&gt;&lt;PRE&gt;const SANDBOX_URL = '&lt;A rel="nofollow" href="https://secure.authorize.net/gateway/transact.dll';" target="_blank"&gt;https://secure.authorize.net/gateway/transact.dll';&lt;/A&gt;&lt;/PRE&gt;&lt;PRE&gt;and I still have &lt;/PRE&gt;&lt;P&gt;The following errors have occurred.&lt;/P&gt;&lt;PRE&gt;(13) The merchant login ID or password is invalid or the account is inactive. :(&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Dec 2011 01:58:13 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20324#M11145</guid>
      <dc:creator>KYC313</dc:creator>
      <dc:date>2011-12-20T01:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: (13) The merchant login ID or password is invalid or the account is inactive.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20326#M11146</link>
      <description>&lt;P&gt;I you change the sandbox_url and still getting the error. It mean whatever you set in the WP Panel&amp;nbsp;PAYMENT OPTIONS for the ID and key it not getting used in the SDK. Another heck would be to change the code in AuthorizeNetRequest.php&lt;/P&gt;&lt;PRE&gt;public function __construct($api_login_id = false, $transaction_key = false)
{
        $this-&amp;gt;_api_login = ($api_login_id ? $api_login_id : (defined('AUTHORIZENET_API_LOGIN_ID') ? AUTHORIZENET_API_LOGIN_ID : ""));
        $this-&amp;gt;_transaction_key = ($transaction_key ? $transaction_key : (defined('AUTHORIZENET_TRANSACTION_KEY') ? AUTHORIZENET_TRANSACTION_KEY : ""));
        $this-&amp;gt;_sandbox = (defined('AUTHORIZENET_SANDBOX') ? AUTHORIZENET_SANDBOX : true);
        $this-&amp;gt;_log_file = (defined('AUTHORIZENET_LOG_FILE') ? AUTHORIZENET_LOG_FILE : false);
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Change the&lt;/P&gt;&lt;PRE&gt;public function __construct($api_login_id = false, $transaction_key = false)
{
        $this-&amp;gt;_api_login = "YourID";
        $this-&amp;gt;_transaction_key = "YourKey";
        $this-&amp;gt;_sandbox = (defined('AUTHORIZENET_SANDBOX') ? AUTHORIZENET_SANDBOX : true);
        $this-&amp;gt;_log_file = (defined('AUTHORIZENET_LOG_FILE') ? AUTHORIZENET_LOG_FILE : false);
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2011 02:18:27 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/13-The-merchant-login-ID-or-password-is-invalid-or-the-account/m-p/20326#M11146</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2011-12-20T02:18:27Z</dc:date>
    </item>
  </channel>
</rss>

