CodeVerge.Net Beta


   Explore    Item Entry    Members      Register  Login  
NEWSGROUP
.NET
Algorithms-Data Structures
Asp.Net
C Plus Plus
CSharp
Database
HTML
Javascript
Linq
Other
Regular Expressions
VB.Net
XML

Free Download:




Zone: > NEWSGROUP > Asp.Net Forum > starter_kits_and_source_projects.dotnetnuke.getting_started Tags:
Item Type: NewsGroup Date Entered: 12/24/2004 1:48:41 AM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 0 Views: 15 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
15 Items, 1 Pages 1 |< << Go >> >|
campbelt
Asp.Net User
How to setup for taking payments12/24/2004 1:48:41 AM

0/0

Ok, I've been checking out the DNN 2.x which I downloaded the other day for a few days now.

One of the things I'm looking at doing is creating a subscription based web site. So, when a person signs up, they will need to arrange for payment.

Can the DNN handle this already? I noticed the payment processor, but I haven't found any other information about what it does or how to use it. A search of these forums return nothing (which I'm sure isn't correct).

Can anyone enlighten me?
hooligannes97
Asp.Net User
Re: How to setup for taking payments12/24/2004 4:46:55 PM

0/0

No DNN does not allow you to do this automatically out of the box...

You can use Patrick Santry's PayPal IPN module and integrate it into your site.
Do you know the truth when you hear it?
campbelt
Asp.Net User
Re: How to setup for taking payments12/24/2004 10:32:53 PM

0/0

Unfortunately I don't think that will work for me. I'm going to need to charge for user registration, but it will probably be via credit card, not pay pal, so I guess I'll have to see about writing my own registration module to replace the current one.

Hopefully, this won't be too difficult to do :)
oziweb
Asp.Net User
Re: How to setup for taking payments12/27/2004 1:13:39 AM

0/0

actually dnn2 is already setup to run a subscrib system. Create your roles and fiull out the sub costs etc click the public and auto box's.

now when you register to the site the different subs are listed in a table and the surfer can click on subscribe for any roll. This will then link to paypal where the surfer pays the bill and then returns to the site. Meanwhile paypal does it thing and calls the ipn driver on your site where the paypal response is checked and if ok the surfer is registered within the role selected.

all this is already in DNN

however you must configure your paypal account correctly to have paypal respond with the ipn. To test this all out go to paypal and search for 'sandbox' this will explain how you can use the paypal developer sandbox for testing your portal interface.

The Sandbox is basically a copy of paypal but no money changes hands

To interface credit cards to DNN2 is not hard - you simply replace the paypal interface with the card interface.( look in admin/sales folder)
John
hooligannes97
Asp.Net User
Re: How to setup for taking payments12/27/2004 5:19:07 AM

0/0

John's reply is correct... I understood you wanted to have users subscribe to the site, and up to this day I thought this was only possible for created roles, not for the Registered Users role. I wen back and checked in 2.1. and realized this is also possible.

Thanks John, I learnt another new thing today, I thought Xmas weekend would be just about food ;) Now I will have to code my CC provider, since I can't use PayPal nor the other providers...
Do you know the truth when you hear it?
campbelt
Asp.Net User
Re: How to setup for taking payments12/27/2004 8:28:47 PM

0/0

John, thanks. That is the type of info I was looking for. I will start poking around to setup pay pal and then work on the credit card piece too.
raca
Asp.Net User
Re: How to setup for taking payments12/28/2004 7:07:30 AM

0/0

John,

Did you mean that instead of PayPalIPN.aspx.vb and PayPalSubscription.aspx.vb
pages (and not Purchase.ascx.vb) we will need to create CCIPN.aspx.vb and
CCSubscription.aspx.vb?
Do we collect credit card information while on DNN installation. If yes, people may be suspicious if they don't see HTTPS in the URL. Usually you go to Credit card payment for on some other site and fill you that information there?
I am basically asking how to proceed with Credit Card interface. Any source code out there to take a pick?

Thanks
Rad
oziweb
Asp.Net User
Re: How to setup for taking payments12/28/2004 2:25:13 PM

0/0

I prefer to use paypal and the like mainly as I don't need to hold credit card info on the server and secondly as I am in Australia ( australian banks etc are still in the first generation stage)

I would actually link out of dnn for the credit card collection - ie open a second browser window under the https mode and get all the details there and process there - then drop back into dnn.

there is a lot of code snippets out on the net for credit card processing however have a look at consensus store front package ( open source) you should find most of the code in that for CC processing.

Paypal is safe and secure does not charge to much and makes it very easy . There are a number of paypal look alikes.

One unusual one is Egold which does the transactions in gold rather then cash - depending on what country your client is in - it is usually tax free income and can be converted to cash via a debit card. - he allows payments via paypal or egold - any payments coming in via egold have means of government tracking thus tax free.

By the way if accepting credit cards then you will need a merchant account with the bank and most banks provide the code to interface -

Now as to finding things in DNN - spent last night reading other DNN forums - one especially that basically states that DNN Sucks mainly because it has no documentation which is really spot on. You really have to spend a few days reading the code to work everythiung that dnn can do.

John
hooligannes97
Asp.Net User
Re: How to setup for taking payments12/28/2004 2:54:07 PM

0/0

It is true that DNN documentation was slacking, the core has said several times that this will be changed in DNN 3. I believe there are three areas at least that will have focus: End User (Site Administration and DNN Usage), Skinning and Coding Modules (DNN extension).
Do you know the truth when you hear it?
oziweb
Asp.Net User
Re: How to setup for taking payments12/29/2004 10:38:47 PM

0/0

actually code documentation is totally lacking - in normal cmmercial programming situations the code would be documented fully - this may sound old fashioned but most of the pre release errors and bugs would be picked from the code docs - the code docs state what the programmer is intending to do - the code states what the programmer ended up doing - rather then debugging by running the code one debugs by reading the code and the docs. it is hard to believe that pre micro computers we used to desk run the code to debug it and usually only got 2 runs on the computer pre production.

John
Nocturnal
Asp.Net User
Re: How to setup for taking payments1/12/2005 8:32:44 PM

0/0

When I was taught how to properly program (not *that* long ago, late 80s) we were told that you program behind a desk, not behind a computer. Of course this was at a time when serious small computers were VAX 750s with dozens of students compiling their Pascal code at the same time. When I got my first PC a little while later Turbo Pascal was an eye opening experience :-)

Anyway, I digress.

I just downloaded DNN 3 after having dabbled in earlier versions some time ago. I understand .NET a lot better now (but still have lots to learn) so I'm making better progress. The lack of documentation that comes with the package was a bit of a disappointment, especially for such a mature and professional project. This did of course open the door to the authors to write a book about DNN which will probably sell well and provide them some much deserved financial recognition. Still, I would expect the dotnetnuke.com site itself to have basic tutorials on how to setup the site, customize it and how to get started in module development.

I'm also looking at receiving payments from users and hiding certain functionality from 'free' members.
SquadEngine for game squad and clan hosting
GravityPoint for all other group portal hosting
TungstenTech: DNN Site
hooligannes97
Asp.Net User
Re: How to setup for taking payments1/12/2005 11:34:58 PM

0/0

Maybe I am too much of an optimist, I think you are in good shape to begin designing skins and developing modules with what is already there.
Do you know the truth when you hear it?
Nocturnal
Asp.Net User
Re: How to setup for taking payments1/13/2005 12:07:52 AM

0/0

I took your comments to mean I haven't looked hard enough yet so I gave it another shot. Wouldn't you know it, there's a documentation directory in the source tree. I had looked on the dnn site and elsewhere but mostly found 2.x material.

Anyway, thanks for sparking a new, fruitful, effort!
SquadEngine for game squad and clan hosting
GravityPoint for all other group portal hosting
TungstenTech: DNN Site
hooligannes97
Asp.Net User
Re: How to setup for taking payments1/15/2005 6:12:09 PM

0/0

Nocturnal, yes, that is exactly what I meant. Some of the documents need updating, like the DNN Manifest, but others are brand new. I printed all of them today, a few hundred pages... 2005 is definitely looking brighter for the DNN community.
Do you know the truth when you hear it?
Fabio972
Asp.Net User
Custom payement processor...8/2/2005 12:17:57 AM

0/0

Hi all,
 raca wrote:
John, Did you mean that instead of PayPalIPN.aspx.vb and PayPalSubscription.aspx.vb pages (and not Purchase.ascx.vb) we will need to create CCIPN.aspx.vb and CCSubscription.aspx.vb?


I've read some posts on DNN and Paypal and I want to add my own Payement Processor that acts like Paypal (load URL and then redirect to DNN to set the role depending on the transaction result).

I think I can modify the default pages about Paypal, but I want to add my own entries in the Payement Processor list.

I can I do that ?!? Wich files I have to edit ?!?

Thanks a lot for your replies...

^_^
15 Items, 1 Pages 1 |< << Go >> >|


Free Download:

Books:
Paying with Plastic: The Digital Revolution in Buying and Borrowing Authors: David Sparks Evans, Richard Schmalensee, Pages: 367, Published: 2005
101 Internet Businesses You Can Start from Home: How to Choose and Build Your Own Successful E-Business Authors: Susan Sweeney, Pages: 312, Published: 2006

Web:
How Do I Setup Alertpay For Taking Payments? - Ventrino Forum for ... Unfortunately it's not as straight forward and needs a little more effort on your part than the other payment processors. Here's what you do:- ...
Shopping cart websites - Taking Card Payments on line Taking Payments on line through a shopping cart enabled website. ... Any reputable business can set up a Paypal account to process credit card payments. ...
Business Banking | Taking Payments From Customers | Online Payments Small Business UK - Business Banking Basics - Taking payments from customers, ... How you set up website payments for customers depends on how many ...
HOW TO Set Up Payment Configuration You can also setup your Payment Module in the Payment Configuration form. ... 4. Run tests to ensure your payment configuration has been set up properly. ...
Here's how I set up an online payment system for my website ... "When we set up the website we wanted to accept online payments from day one. We already had a merchant account for accepting cards in our high street ...
Read Messages Taking payments using PayPal, 2005-07-13 14:04:00 ... Customers of Irish PayPal merchants no longer need to set up an account. ...
phpBB - Taking payments for posting - plugin?, coding? Need to take payments for posting but how? phpbb - taking payments ... Then setup a custom script (in posting.php) to check if that customer ...
How to Set Up Automatic Payments for a Natural Gas Bill | eHow.com How to Set Up Automatic Payments for a Natural Gas Bill. When you set up automatic payments for your utility bills, you won't have to worry about missed ...
Taking charity donations - Basic Website Payments - PayPal ... There are no monthly or set-up fees with donation button transactions. .... Is there any way of just taking a cc payment? ...
How to Set Up Website Credit Card Payment Processing With AlertPay Learn how to lower your costs and expand into the international marketplace with AlertPay.. Accept all forms of payment and all currencies worldwide, ...

Videos:
How to setup a payments book This video shows you how to setup a payments book for cheque payments. This will help you with your own accounts systems. (c) 2007 Helpforbookkeepers...
Free Shopping Cart Young sites are best served by using a free shopping cart. They are very simple to setup. Free shopping carts offer a quick way to start taking payme...
Setup MyMarketingCart.com To Accept "Pay Pal" Payments You can accept credit card and Pay Pal payments through your shopping cart with MyMarketingCart.com. Here's how! Watch this video to learn how to se...
How To Set Up Paypal Payment Button Fast http://www.turnkeybusiness.ws show you step by step video tutorial on how to set up paypal payment button easily. More tips at http://wordpress.power...
Setup MyMarketingCart.com To Accept "Credit Card" Payments You can accept credit card payments using your merchant account through your shopping cart with MyMarketingCart.com. Here's how! Watch this video to...
Offsite Payment Sandbox Setup SubsNingmod - how to setup your application to process payments at PayPal online in sandbox mode.
STOP Affiliate Payment Loss And Pocket More Income For You! ThomasBrett.Com Presents... A New Product Report: "Affiliate Fire Extinguisher". Everyday, Affiliate Marketers LOSE untold dollar amounts due to a ...
PayPal Setup - process onsite payments How to setup your PayPal account to process onsite payments
Plug-In Profit Site - Complete Money Making Site Setup FREE! ATTENTION: "Test-drive my 3-step money-making formula today and get your very own fully automated e-commerce website with all the bells and whistles ...
Xenon Cart Payment Gateway Setup Selling Online Made Easy! See how easy it is to install Xenon Cart online and start your new online business website shop. For more information visit...




Search This Site:










how to - site offline for maintenance

can't start visual web developer express

security issue on an asp.net server

layout menu is not available .[in vs2008]

to frame or not to frame?

failure sql execution resulted in following exceptions:

webparts -sharepoint

error trying to create a virtual directory

i can not access the resource folder.

how to change 'terms of use' and 'privacy statement' in dnn 3.0.10

regarding creating dll in .net frame work

including aspx file

datalist problems c#

check sign on

listbox problem

localization of dnn lists

map news

i got a problem with the create user wizard?

cast from type 'integer' to type 'char' is not valid.

web project

dll file

can i look like i know asp?

deploying treeview web control

dotnetnuke project forums down?

defaultvalue not registering.

user impersonation on non-windows system

"this" is empty or invalid in event handler

paging

return value from confirm()

feb ctp: no vss plugin

 
All Times Are GMT