0
votes
0answers
12 views

Rails 3 - overriding ActiveMerchant gateway class

I'm using the activemerchant gem (v1.32.1) in my Rails 3 app. I need to modify one of the gateway classes (BluePay), and would like to know how to have my custom BluePay gateway autoloaded instead of ...
0
votes
0answers
25 views

how to send live transaction to test server authorize.net via activemerchant

I need to send my sample transactions as "live" transactions to the test gateway for authorize.net so that they show up in the reports on their website under my test account. Test transactions are ...
0
votes
0answers
41 views

Paypal Express Checkout: It is possible set recipient with ActiveMerchant?

I'm using ActiveMerchant and Paypal Express Checkout payment. It is possible to set recipient? For example: gateway = ActiveMerchant::Billing::PaypalExpressGateway.new( :login => "...", ...
0
votes
1answer
55 views

Using Active Merchant on Ruby 1.8.7

I am using Site5 to host my site, and which limits me to use ruby 1.8.7. However, I can't install the Active Merchant gem because it has Money as a dependancy - which requires Ruby 1.9.2! Is there ...
4
votes
3answers
147 views

Ruby on Rails and Paypal outside US

I'm using Rails 3.2.13 and I need to integrate with a payment gateway (preferably Paypal). I've seen the railscasts of Ryan using ActiveMerchant, but I can't get it to work (I'm located in Greece), ...
0
votes
1answer
28 views

Rails: Error while installing active_merchant_payu_india

Is there anyone, who installed PayU payment gateway? As per the ReadMe file, need to install gem gem 'active_merchant_payu_india' and run bundle install But it is giving error: "Could not ...
0
votes
0answers
23 views

ActiveMerchant::ConnectionError with NelixTransax TransaxGateway

I've tried the example usage from here (in the rails console) and it works fine, but when I try using it with this changed (to what Nelix's demo has for credentials) it does not work. All I get is a ...
0
votes
2answers
66 views

How to debug failed transactions with PayPal Express Checkout?

We're using PayPal Express Checkout (implemented in Ruby, Active Merchant gem) A few transactions failed recently, while majority work fine. I have looked at our log file and identified the user who ...
0
votes
1answer
69 views

activemerchant paypal configuration in ruby

I just wanted to test my paypal sandbox payment gateway in a simple way. Unfortunately I'm getting the following error message: "This transaction cannot be processed due to an invalid merchant ...
0
votes
1answer
118 views

activemerchant paypal gateway configuration

I'm trying to config my paypal gateway and activemerchant with help of railscasts tutorial but I'm a bit confused because the gateway information has changed. That's the old config from the tutorial: ...
1
vote
2answers
173 views

Active Merchant and Authorize.net returning failure in production

I have an app that has some basic ecommerce activity. I tried it with a test authorize.net account, and it works fine. I entered in the APIs for production mode though, and I keep getting redirected ...
0
votes
2answers
199 views

ActiveMerchant's support for determining the account status (verified/unverified) of a PayPal Express Checkout customer/buyer

I am currently working on a Ruby-on-Rails web-application that accepts PayPal payments through PayPal's Express Checkout and ActiveMerchant. I have done several research on ActiveMerchant's support ...
0
votes
1answer
110 views

Force or require a payment type with Paypal api

Do I have to call paypal to setup a billing agreement if I only want to accept insant payments? I have a rails app that I am testing in sandbox with paypal express checkout. Looking at the paypal ...
0
votes
1answer
143 views

Testing Paypal Express in ActiveMerchant

How can I test Paypal Express with ActiveMerchant in a Rails 3.2 app with rspec/capybara integration test?
0
votes
0answers
40 views

How do you get a credit card object from a payment profile in active_merchant?

I would think this would be a very common practice but have found nothing about it. I'm able to retrieve a customer payment profile like so: profile = ...
0
votes
1answer
368 views

Using activemerchant with PayPal Payments Advanced

I have a hosted web site built on Rails 2.3.14 and Ruby 1.8.7. In order to capture shipping info so I can compute shipping charge, I provide the form for shipping address and then use a credit card ...
0
votes
1answer
150 views

what are the pros and cons of ActiveMerchant? [closed]

I am planning to integrate a payment processing system for my rails app. I was looking into stripe but they seem to charge 2.9% + 30ยข per transaction just as any other payment processing apis out ...
0
votes
1answer
107 views

What credentials does ActiveMerchant need for a Rails project?

In my credit card processing file, I have: response = PaymentGateway.pay_pal.authorize( foreign_currency_amount_in_cents, credit_card, :email => email_address, :order_id => ...
0
votes
0answers
20 views

Using eChecks on Authorize.net with active_merchant [duplicate]

Possible Duplicate: What is the best way to organize automatic payout at the website? I have problems trying to find information about sending echecks using Authorize.net with ...
0
votes
1answer
131 views

Using Webmock to fake successful ActiveMerchant response

I'm using ActiveMerchant to integrate with Authorize.net CIM. I'm in the middle of writing up automated tests, and I've begun putting into place Webmock calls so that my tests aren't actually hitting ...
0
votes
1answer
222 views

cannot create a customer profile with authorize.net CIM and active merchant with dev test account

I created a developer account with authorize.net and I am trying to create a customer profile via activemerchant. > GATEWAY.create_customer_profile(:profile => { :merchant_customer_id => ...
1
vote
0answers
188 views

openssl and ruby certificate verify failed (OpenSSL::SSL::SSLError)

I'm getting a certificate verify failed (OpenSSL::SSL::SSLError) error. ubuntu 12.04 ruby 1.9.3 openssl installed via rvm This command works ok openssl s_client -CAfile ./ccapi.pem -connect ...
0
votes
0answers
74 views

paypal immediate, chained payment

I have a an application for digital goods which makes use of paypal. I need to tackle the following scenario: A buyer (german paypal account) buys an item, the application itself (german paypal ...
0
votes
1answer
180 views

Ruby on Rails activemerchant.rb require error even after installing activemerchant and mechanize (2.5.1)

Complete error: .rvm/gems/ruby-1.9.3-p194/gems/activemerchant-1.9.4/lib/active_merchant.rb:29:in `require': cannot load such file -- active_support/core_ext/class/inheritable_attributes (LoadError) ...
4
votes
1answer
170 views

activemerchant undefined method 'month'

I'm building an application that handles different types of transactions for different services such as subscriptions, gift subscriptions and purchases. I have an issue with the gift transactions and ...
2
votes
2answers
239 views

SSL error when using Active Merchant and PayPal

I'm trying to use Active Merchant and PayPal to process payments on a staging server. I have everything setup as follows. Setup PayPal merchant account Put the credentials into the Active Merchant / ...
2
votes
1answer
97 views

How to request from and send payment by merchant using PayPal (Adaptive Payment?)

We have a website developed using Rails (and we use Active Merchant to take payment from users). Now we have a new requirement: to allow our users to request money from us and for us to send the ...
0
votes
2answers
114 views

errors(:base) << message leads undefined method `map' for nil:NilClass

I am trying to integrate ActiveMerchant into my website using Rails 3.2. Currently I have code to do general validation on a credit card using the ActiveMerchant "valid" function, which returns some ...
0
votes
2answers
548 views

NameError in OrdersController#create undefined local variable or method `line_items'

I am trying to create a checkout with active merchant. I am using Ryan Bates Active merchant tutorial/ and the Agile web development book. I get the following error, I'm not sure how to fix it to ...
0
votes
1answer
242 views

Not receiving paypal notifications through active merchant

I was working on an app in which I need to work with ipn, but it seems it does not work well. I am trying to get the notification in success action and have specified the correct url in paypal ...
1
vote
1answer
80 views

API Signature is required to make requests to PayPal error, I have an API signature set already

I'm having a big problem right now. My site is written in Ruby on Rails, and I'm using the active merchant gem to interface with PayPal. The site is hosted on heroku. I have an API key and API ...
0
votes
1answer
119 views

checkout with paypal without login

I am trying to implement paypal express checkout using rails. I have read at lot of places that if one wants to do the checkout without paypal account by credit or debit card one can simply use ...
1
vote
1answer
501 views

This transaction is invalid. Please return to the recipient's website and try again

This is my controller: setup_purchase method does works fine for me with my data api, but preapprove_payment method does not works. def pay gateway = ...
0
votes
1answer
278 views

options for (Europe/ international) ruby on rails payment gateway 2012?

What are the options I have as ruby on rails coder to easily integrate a payment merchant into my application. A nice API or gem integration so its just "plug and play" without to much hassle and the ...
2
votes
3answers
2k views

Paypal Express Checkout in Rails3

This issue is about: ActiveMerchant + PaypalExpressCheckout + Rails 3.2 I've been trying to build a Paypal Express Checkout on my Rails 3.2 app. Most of the tutorials out there are outdated so I ...
0
votes
1answer
409 views

Rails ActiveMerchant - Paypal Express Checkout Error

I am getting this error when I call this code. response = EXPRESS_GATEWAY.setup_purchase(order.price_in_cents, :ip => request.remote_ip, :return_url => url_for(:action ...
0
votes
1answer
157 views

Adding a e-commerce facility to an existing rails application

I have an existing Rails 3.1 application with a model Products with price, description, etc... The website owner is now considering adding a e-commerce functionality to use with the existing ...
0
votes
0answers
219 views

Ruby: wrong number of arguments (2 for 1) (subclassing ActiveMerchant)

I have some code that subclasses the ActiveMerchant Gateway class. I get this error: wrong number of arguments (2 for 1) payflow.rb subclasses the ActiveMerchant Gateway class: module ...
0
votes
1answer
206 views

ActiveMerchant purchase function rails 3.2.5 mass-assign

I am using Rails 3.2.5. Following Ryan Bates tutorial. http://railscasts.com/episodes/145-integrating-active-merchant. My order.rb has this function def purchase response = ...
0
votes
0answers
117 views

ActiveMerchant, Simpleform - card_expires_on(3i)

The form has the code below <%= f.input :card_expires_on, :as => :date, :order => [:month, :year], :add_month_numbers => true, :start_year => Date.today.year, :end_year => ...
1
vote
1answer
365 views

PayPal Adaptive Payments - Failing on PayPal Website

I've spent the better part of the afternoon dealing with this issue so any help is appreciated. I'm using ActiveMerchant with the active_paypal_adaptive_payment gateway and I'm running into some ...
0
votes
1answer
368 views

Rails - Model doesn't save attributes through method, but does if assigned by hand (in Console)

I have a model Payment, use to track credit card transactions. Now I'm trying to get it to map some values that PayPal returns on a successful credit card transaction. This is handled by a notify = ...
2
votes
1answer
1k views

Rails 3.2: Undefined method 'class_inheritable_accessor' in activemerchant

I'm building my first Rails app and trying to integrate active_paypal_adaptive_payment with Rails 3.2.1, however when I try to boot up the rails server it runs into the problem of, "undefined method ...
0
votes
1answer
286 views

How to use SagePay with Spree Gateway gem?

I keep getting the following when trying to use SagePay: ! '4000 : The VendorName is invalid or the account is not active.' I'm not sure whether there's a problem with the code or the details I'm ...
0
votes
1answer
259 views

ActiveMerchant: Buyer Account Balance Doesn't Decrease

I'm using ActiveMerchant gem with Ruby 1.9.3 and Rails 3.1 I already set up a buyer dummy account and a seller dummy account on PayPal using WebPayments Pro. When I run this script and look in my ...
0
votes
2answers
491 views

ActiveMerchant PayPal Express possible bug?

I am a little bit confused, somehow I am able to change the amount of the purchase: First I setup my purchase, @setup_response = gateway.setup_purchase( 10*100, :ip => ...
4
votes
2answers
745 views

PayPal express / Active Merchant - not displaying line items or cart total?

I'm trying to set up a PayPal express checkout using active merchant but I'm running into problems. I've followed a tutorial and I can get to the "choose a way to pay" form on paypal but there are no ...
0
votes
1answer
262 views

Ruby on Rails Activemerchant integration - Passing variables

I've setup recurring payments in my app using activemerchant and paypal. All the code is run off the controller with the test data and i'm getting success message return from this: credit_card = { ...
0
votes
1answer
213 views

PayPal and Rails Dilemma

So I'd like to integrate paypal into my rails app using active merchant. In this app, users are signing up for courses that other users are teaching and users need to be able to pay each other in ...
0
votes
2answers
490 views

Good Rails gems for ecommerce? [closed]

I wanted advice on a Rails project I'm about to start: I'm making a site where users can buy and sell items to each other. I was looking into several options to accomplish them, such as spree and ...

1 2 3