search for: business_certid

Displaying 2 results from an estimated 2 matches for "business_certid".

Did you mean: business_cert
2006 Jun 27
0
paypal openssl keys
...m working with the paypal gem and have created the openssl keys for testing through the sandbox. I''ve included the following lines per the instructions in my controller: @business_key = File::read("business_key.pem") @business_cert = File::read("business_cert.pem") @business_certid = "Z9EFBYAK59D234" It''s returning this error: Errno::ENOENT No such file or directory - business_key.pem Where should the key files reside in my rails app? Sorry for such a simple question, but everything I''ve tried fails. -- Posted via http://www.ruby-forum.com/.
2006 Jun 29
0
Problem getting encrypted submit buttons working with the paypal gem and rails 1.1.2
...rt.pem") and confirmed via logger.info that I''m loading the correct data from the files. I use them in my form view like so: <%= paypal_setup @invoice_id, Money.us_dollar(@pp_amount_owed), @paypal_to, :business_key => @our_privatekey, :business_cert => @our_pubcert, :business_certid => @our_certid, :return => @pp_return, :item_name => @pp_item_name, :notify_url => url_for (:only_path => false, :action => ''paypal_ipn'') %> I set the certificate ID to the ID showing in my sandbox user''s Encrypted payment settings after uploadi...