Displaying 20 results from an estimated 400 matches similar to: "Service Merchant"
2008 May 23
3
Have you used the Rails SaaS kit?
Have any of you actually bought & used the Rails SaaS kit?
I am considering getting it to skip building out the admin & billing
parts but I wanna get feedback from someone who has actually used it.
Would you recommend getting the kit? Would you rather get a refund and
built it yourself?
~ mel
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are
2008 Sep 02
4
Attachment_fu, Paperclip, & S3
For various reasons, I made a git branch and installed Paperclip in
place of attachment_fu. Paperclip works great except that images seem to
have lost some quality; edges have gone a little too jaggy to be able to
drop attachment_fu just yet. After a post on the Paperclip Google Group,
someone suggested the :convert_options could be passed additional
attributes, like ''quality'',
2008 Apr 24
1
[ADV] Rails Kits
A couple of days ago I launched Rails Kits (http://railskits.com/), a
place to get ready-made Rails code so you can get your projects done
faster. The first Kit is the SaaS Rails Kit (http://railskits.com/
saas/), which will save you the pain of writing recurring billing and
account management code for your subscription-based site.
Check out my blog post on the release for more info:
2008 Oct 16
0
[Announcement] Billing Module for your SaaS web application is here: ServiceMerchant
[Announcement] Billing Module for your SaaS web application is here:
ServiceMerchant
== In two sentences
ServiceMerchant is open-source library, developed in Ruby, which takes
care of recurring billings and subscriptions of your SaaS
application.
The library sits on top of well known library ActiveMerchant and
therefore gives you the variety of choice among payment providers.
== In more details
2009 Mar 10
7
Managing migrations
I have a migration "x" that when it runs self.up it adds a new column
to a table, and of course when self. down is run it deletes said
table...
After I ran this migration I continued to work and in the process
added a couple other migrations. After a while I realized that the
column migration "x" created was a mistake and I no longer need it. So
I ran rake db:migrate:down
2012 Apr 27
4
Is my developer dodgy?
Hi!
I need some help, my partner and I have hired an app development
company to create an iPhone app that allows shops to list their
inventory and advertise their specials, there is also a back end admin
website that shop owners can login to that allows them to update their
inventory and specials. The admin website communicates directly with
the iPhone app so that any changes made are shown on
2009 Feb 26
0
[ADV/ANN] Get a support site with the Helpdesk Rails Kit
The Helpdesk Rails Kit <http://railskits.com/helpdesk/> is now available to
help you host your own support site, or even quickly add code for a support
site to your existing Rails app. It integrates well with email to manage
support requests, and it''s useful for hosting support articles for your app.
More info can be found here:
2008 Jul 17
0
[ADV/ANN] Easy recurring billing with Authorize.net
I have just put out an update to the SaaS Rails Kit, a sample Rails
application that implements recurring billing. This update adds support for
the Authorize.net payment gateway. With the Rails Kit and Authorize.net
CIM, you get a complete and very flexible subscription billing system that
you can use as a starting point for building your software-as-a-service
Rails application, so you can skip
2006 Apr 19
2
Credit Card Processing / Merchant Account
Hi All,
Has anyone implemented a credit card processing / merchant account
system using Rails? I know that there is a ''payment'' gem that is
supposed to integrate with the Authorize.net gateway, but I''m wondering
if that is the best (and only) solution out there. Are there any other
recommended solutions from Rails programmers out there?
Thanks in advance for the
2009 Sep 16
2
Active Merchant Error
Hello friends,
I m using Active Merchant(version = 1.4.2) gem.
in billing calculator i m require ''active_merchant'' and when i m open
the page it is throw error such
"no such file to load -- active_merchant".
Can you guyz tell me how can i resolve this problem ...
Waiting for every possible answer
--
Posted via http://www.ruby-forum.com/.
2009 Sep 21
0
What is the Best Merchant Account?
Hi All,
I want to do following things on my site please suggest what is the best
thing to do it.
1] I want to recieve amount for the buyer.
Buyer has following 3 options to make the payment
a) PayPal
b) Credit Card
c) Money Booker
I have following Questions
1) Do i need Merchant account for all these three methods?
2) if no, what is the Best Merchant Account for me?
Regards,
Salil Gaikwad
--
2006 Jul 17
1
payment or active merchant
Anyone used both?
Im looking into the pros and cons of there two
Payment of course supports more than just credit cards
One query that comes to mind is why doesn''t active_merchant just use payment
Would keep things nice and dry
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2009 Dec 22
1
Re: Paypal Recurring using active merchant
Hi ,
i am also getting the same problem , have you resolved it or not and if
some body else have any idea please do let me know.
thanks in advance and kind regards,
Hamid.
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2008 Oct 16
0
Active merchant
Hello Friends,
As i am using AuthorizeNetGateway for payment. So again with price i want to
store the user information as well currently i am just passing the following
information
response = gateway.purchase(amount, creditcard)
what else do i need to pass to store the user information?
thanks
abhishek
--~--~---------~--~----~------------~-------~--~----~
You received this message because you
2006 Aug 01
2
Active Merchant or Payment module?
Which do you guys prefer for credit card processing?
Both look like they get the job done. -- Is there any consensus on which
one is better? Are there other credit card processing solutions I''m not
aware of? Any thoughts or suggestions would be most welcome.
Thanks!
: )
Jason
--
Posted via http://www.ruby-forum.com/.
2011 Apr 18
3
paypal with Active merchant
Hi, I am integrating paypal service in my application using Activemerchant.
Now I want to know how to use ActiveMerchant to make payment to Bank or
Credit card ?
for example:
I am seller and I want to pay some amount to somebody. I want to pay such
amount which will be credited in somebody''s bank account or credit card
directly ?
Please reply me as early as possible.
And also suggest
2008 Mar 22
4
Ajax.Updater not fully work in IE7
My code snapshot: correct work in FF , Opera and Safari, but in IE7 -
isn''t return result
<form action="test.php" method="POST">
<div id="country" style="border: 1px solid #ccc; width: auto"></div>
<br/>
<a href="javascript:getTest()">test</a>
</form>
<script
2009 May 11
7
Upload file with url parameter
I want to upload file using get method.
for example, "http://www.mydomain.com/upload?file=c:\test.exe" upload
my local file to the remote server.
I found one useful link about file uploading here(http://
www.tutorialspoint.com/ruby-on-rails/rails-file-uploading.htm).
Even I''ve changed some code in order to fit my rails version, it
worked well. But the problem is I have use
2009 Mar 12
2
Redmine: 500 Internal Server Error Content-Type: text/html
Hello!
I have a such problem in my redmine app, like "Redmine: 500 Internal
Server Error Content-Type: text/html " error, from time to time, and
there is no periodicly matches.
Versions:
Rails - 2.2.2
Ruby - 1.8.5
Thx, for you answers.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2007 Mar 23
2
assert_select VS assert_no_tag
Hi everybody.
Assert_no_tag will be deprecated soon. How can i use assert_select for
checking not existed tag?
Thanks.
Bye.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To