NamePros
Welcome, Guest! Ready to make a name for yourself in the domain business? We welcome both the hobbyist and professional domainer to join the discussion as part of the NamePros community.

Click here to create your profile to start earning reputation for posting, and trader ratings for buying & selling in our free e-marketplace. Build your trader rating with each successful sale. Our system has tracked over 100,000 sales and counting!
FAQ & TOS Register Search Today's Posts Mark Forums Read

Go Back   NamePros.com > Website Development Discussion Forums > Programming
Reload this Page Shopping Cart / Secure CC checkout

Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics.

Advanced Search


Closed Thread
 
LinkBack Thread Tools
Old 07-10-2003, 01:52 AM THREAD STARTER               #1 (permalink)
New Member
Join Date: Jul 2003
Posts: 6
kydlynx is an unknown quantity at this point
 



Shopping Cart / Secure CC checkout


I am making a site for a friend, and she wants to sell post cards. Does anyone know how to make shopping carts and secure credit card checkouts?

Or do i have to buy the scripts from some place?
and if so, where at?

thanks in advance
kydlynx is offline  
Old 07-10-2003, 02:04 AM   #2 (permalink)
Senior Member
Join Date: Aug 2002
Posts: 1,255
deadserious has a spectacular aura aboutdeadserious has a spectacular aura about
 



Your best option would probably be to either buy the scripts from someone else or use a free one. There's a ton of them out there.

For payment processing one option is to use a third party payment processor, alot of them have shopping cart scripts that they'll let you use for free on your site and will work with their services.

Probably one of the best, if not the best free shopping cart type script:
http://www.oscommerce.com/

A paid shopping cart type script:
http://www.miva.com/

A few payment processing companies that I know of:
http://paysystems.com
http://2checkout.com
http://paypal.com

To get credit card processing set up without using a third party payment processor like one of the ones above you will have to get a merchant account.
deadserious is offline  
Old 07-10-2003, 10:55 AM THREAD STARTER               #3 (permalink)
New Member
Join Date: Jul 2003
Posts: 6
kydlynx is an unknown quantity at this point
 



cool. thanks for the info.

the lady has a credit card machine at her little shop. You know they one you slide CC's through or just punch in the numbers.

Therefore, I assume that she has a merchant account cause she has the manual one? Correct? If so, how would I set up an account with someone that already has an existing merchant account?
kydlynx is offline  
Old 07-10-2003, 11:36 AM   #4 (permalink)
Senior Member
Join Date: Aug 2002
Posts: 1,255
deadserious has a spectacular aura aboutdeadserious has a spectacular aura about
 



Yes, if they have the manual card swiper then I think they would have a merchant account.

They will need to contact their merchant provider to find out how they can get set up to process credit cards online from their website.
????: NamePros.com http://www.namepros.com/programming/14982-shopping-cart-secure-cc-checkout.html

You can usually find a list of shopping carts and other scripts that will work with the merchant providers set up on their website.

If you're going to be setting it up, then you'll really want access to all of the documentation for the merchant/gateway account.

The merchant provider may also provide some plug and play (copy and paste) code that wil work right away, once you get things enabled, but it will most likely be basic and not have any type of shopping cart functionality.

Most shopping cart type software that you will use directly with your own merchant account will require you to do certain things like change certain settings, possibly enter your merchant number in the config and some stuff like that.

One other thing is you'll want to run all the transactions from an SSL Secure Server and purchase a valid SSL certificate.

So I think your first step would be to have them find out about getting the online processing enabled on their account. Once you're sure that they're able to do online transactions, you'll need to know which merchant account/gateway they will be using for it, so when you're out searching for shopping carts to use you'll be able to look at which payment processors they support and know if you'll be able to use it or not.

Well I hope that explains it a little bit Feel free to ask if you have more questions.
deadserious is offline  
Old 07-11-2003, 11:35 PM THREAD STARTER               #5 (permalink)
New Member
Join Date: Jul 2003
Posts: 6
kydlynx is an unknown quantity at this point
 



ok, so I have been flooding myself with php for the last couple days.

Thanks for the info by the way.

I went with osCommerce. I set up a local host with EasyPhp and have been playing with the shopping cart for a few days now.
I just cant seem to get the email to work locally. I dont know whats going wrong. osC has a forum also. But I couldnt get help there.

After I get the email thing figured out, I am on to figuring out the Secure Server site thing. That is gonna be a pain I bet.
kydlynx is offline  
Old 07-12-2003, 12:29 AM   #6 (permalink)
Senior Member
Join Date: Aug 2002
Posts: 1,255
deadserious has a spectacular aura aboutdeadserious has a spectacular aura about
 



You can try changing these settings in your php.ini to see if you can get the mail() function to work on your windows machine.


Search for this in your php.ini file
PHP Code:
[mail function]
; For 
Win32 only.
SMTP localhost

; For Win32 only.
sendmail_from me@localhost.com 
Change them to:
PHP Code:
[mail function]
????: NamePros.com http://www.namepros.com/showthread.php?t=14982
; For 
Win32 only.
SMTP your_isps_smtpserver.ext

; For Win32 only.
sendmail_from youremail@yourdomain.ext 
Replace your_isps_smtpserver.ext with your ISP'S actual smtp server and youremail@yourdomain.ext with the actual email you want it to send mail from. Don't forget that you would need to be connected to your isp in order for it to work that way.
deadserious is offline  
Old 07-12-2003, 12:37 AM THREAD STARTER               #7 (permalink)
New Member
Join Date: Jul 2003
Posts: 6
kydlynx is an unknown quantity at this point
 



this is what i have:


[mail function]
SMTP = smtp.west.cox.net
;for win32 only

sendmail_from = myname@cox.net
;for win32 only

;sendmail_path =
;for unix only, may supply arguments as well (default is 'sendmail -t -i')



It says it send the email successfully at the top, but I never recieve anything.
kydlynx is offline  
Old 07-12-2003, 12:59 AM   #8 (permalink)
Senior Member
Join Date: Aug 2002
Posts: 1,255
deadserious has a spectacular aura aboutdeadserious has a spectacular aura about
 



Try sending it to a different email address. It may just be the address you're sending it to is rejecting it. Try sending it to your email that you have with your isp if you haven't already.
????: NamePros.com http://www.namepros.com/showthread.php?t=14982

Here's a little code to try it out if you need it:
PHP Code:
<?php
mail
("toyourmail@yourdomain.ext""Mail Test""This is a php mail test");
echo 
"Mail Sent!";
?>
deadserious is offline  
Old 07-12-2003, 01:05 AM THREAD STARTER               #9 (permalink)
New Member
Join Date: Jul 2003
Posts: 6
kydlynx is an unknown quantity at this point
 



ok i will send it to a diff address.
I was sending it to a hotmail address.
that is a big problem though if i cant send mail to hotmail users.

where do I put that code you wrote?
kydlynx is offline  
Old 07-12-2003, 01:09 AM   #10 (permalink)
Senior Member
Join Date: Aug 2002
Posts: 1,255
deadserious has a spectacular aura aboutdeadserious has a spectacular aura about
 



Copy it to a blank text file, save the file as mailtest.php, make sure it ends with a .php extension and not .php.txt.

Put it where ever you have your other html and php scripts (most likely in your "htdocs" folder if you're using apache) and call it up in your browser.
deadserious is offline  
Old 07-12-2003, 01:12 AM   #11 (permalink)
Senior Member
Join Date: Aug 2002
Posts: 1,255
deadserious has a spectacular aura aboutdeadserious has a spectacular aura about
 



By the way, don't forget to change toyourmail@yourdomain.ext to the actual email address you're trying to send it to.
deadserious is offline  
Old 07-12-2003, 01:15 AM THREAD STARTER               #12 (permalink)
New Member
Join Date: Jul 2003
Posts: 6
kydlynx is an unknown quantity at this point
 



you are godly.

i got the email.

that is weird.
kydlynx is offline  
Old 07-15-2003, 02:23 AM   #13 (permalink)
Senior Member
Join Date: Aug 2002
Posts: 1,255
deadserious has a spectacular aura aboutdeadserious has a spectacular aura about
 



Cool! Glad you got it working! :webdev:
deadserious is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools


Liquid Web Smart Servers  
All times are GMT -7. The time now is 06:15 AM.

Managed Web Hosting by Liquid Web
Domain name forum recommended by Domaining.com Powered by: vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.6.0 Ad Management plugin by RedTyger