Payment methods

If you have questions about using mojoPortal, you can post them here.

You may want to first review our site administration documentation to see if your question is answered there.

This thread is closed to new posts. You must sign in to post in the forums.
6/3/2010 5:33:59 PM
Gravatar
Total Posts 9

Payment methods

i have setup the webstore for downloadable content, but i dont see anywhere how to implement paypal.  i configured my account for PDT and IPN. i am lost what to do in mojo now

6/4/2010 6:08:57 AM
Gravatar
Total Posts 18439

Re: Payment methods

All the information I have about ecommerce configuration is in the document about ecommerce configuration.

Hope it helps,

Joe

6/4/2010 6:10:59 AM
Gravatar
Total Posts 9

Re: Payment methods

i have been back and forth through that.  i watched your demo with your music store.  My question really is how did you tell mojo portal to authorize.net?

6/4/2010 6:12:09 AM
Gravatar
Total Posts 9

Re: Payment methods

Sorry 2 part question and where do i put these configuration lines

<add key="Site1-PaymentGatewayUseTestMode" value="false" />

<add key="Site1-PayPalUsePayPalStandard" value="true" />

<add key="Site1-PayPalStandardSandboxEmail" value="" />
<add key="Site1-PayPalStandardSandboxPDTId" value="" />

<add key="Site1-PayPalStandardProductionEmail" value="" />
<add key="Site1-PayPalStandardProductionPDTId" value="" />

if i needed to use them?

6/4/2010 6:27:47 AM
Gravatar
Total Posts 18439

Re: Payment methods

The config settings can be in Web.config or user.config, but it is better to put them in user.config since that makes it easier when you upgrade, you won't lose those settings when you get a new Web.config file in an upgrade. However keep in mind that changes you make in user.config are not automatically detected like they are in Web.config, so when you make a change in user.config you need to touch Web.config (ie type a space in it and save it) to make it reload all settings.

To use Authorize.NET you need an account for Authorize.NET, the demo sites use a test account against the Authorize.NET test servers, configured like this:

<add key="Site1-PrimaryPaymentGateway" value="Authorize.NET" />
<add key="Site1-PaymentGatewayUseTestMode" value="true" /> (would be false for production)

these are for the test server


<add key="Site1-AuthorizeNetSandboxAPILogin" value="xxxxxxxx" /> 
<add key="Site1-AuthorizeNetSandboxAPITransactionKey" value="yyyyyyyy" />

for production:

<add key="Site1-AuthorizeNetProductionAPILogin" value="xxxxxxxx" />
<add key="Site1-AuthorizeNetProductionAPITransactionKey" value="yyyyyyyy" />

of course the xxxxxx and yyyyy are just place holders where your account credentials go

Hope it helps,

Joe

6/4/2010 6:47:55 AM
Gravatar
Total Posts 9

Re: Payment methods

ok thanks that solved it

You must sign in to post in the forums. This thread is closed to new posts.