Paypal

Author Message

Brian McGuire

Tuesday 22 June 2004 10:47:16 am

I have looked all through the forums to find a module or some help in how to create a workflow to use paypal as my preffered payment gateway, i have found nothing which is of help.. so please help as i love the look of ezpublish and the functions it offers..

I just need to know how do you incorporate paypal into the shop??

thanks in advance...

Paul Forsyth

Tuesday 22 June 2004 2:50:08 pm

Have a look at the worldpay contribution:

http://ez.no/community/contributions/workflow/worldpay_payment_gateway_pubsvn

paul

--
http://www.visionwt.com

Brian McGuire

Tuesday 22 June 2004 3:06:45 pm

thanks, if i install the worlpay module is it easy enough to customize it for paypal??

Paul Forsyth

Wednesday 23 June 2004 12:47:07 am

Pretty much. You need to read up on Paypal requirements. They will likely be slightly different to Worldpay. But the worldpay code will show you all you need to prepare this on the eZ side.

Also, search for worldpay on the forums to find more info ;)

paul

--
http://www.visionwt.com

Björn Dieding@xrow.de

Wednesday 23 June 2004 11:11:07 am

This code manages subscriptions but it will work similar for you.

	function signup($parameters=array())
	{
		$gateway = $this->getGatewayData();
		
		$URL  ='https://www.paypal.com/cgi-bin/webscr?';
    	$URL .= 'cmd=_xclick-subscriptions';
    	$URL .= '&business='.$gateway['email'];
    	$URL .= '&item_name='.$parameters['item_name'];
    	$URL .= '&item_number='.$parameters['item_number'];
    	$URL .= '&image_url='.$gateway['logo'];
#    	$URL .= '&notify_url=''; better not use, because you can't change this afterwards. Use the PayPal interface 
    	$URL .= '&no_shipping=1';
    	$URL .= '&return='.$gateway['return'];
    	$URL .= '&cancel_return='.$gateway['cancel_return'];
    	$URL .= '&no_note=1';
    	$URL .= '&rm=2';
    	$URL .= '&modify=0';
    	$URL .= '&currency_code=USD';
        $URL .= '&a1='.$parameters['price'];
        $URL .= '&p1=1';
        $URL .= '&t1=M';
    
#    $URL .= '&a1=0.00';
#    $URL .= '&p1=0';
#    $URL .= '&t1=W';
#    $URL .= '&a2=';
#    $URL .= '&p2=2';
#    $URL .= '&t2=M';
    $URL .= '&a3='.$parameters['price'];
    $URL .= '&p3=1';
    $URL .= '&t3=M';
    $URL .= '&src=1';
    $URL .= '&sra=1';
#    $URL .= '&srt=5';
    $URL .= '&custom='.$parameters['id'];
   # $URL .= '&invoice=';
#    $URL .= '&usr_manage=';
		eZHTTPTool::redirect($URL);
	}

bjoern
-
http://xrow.de

Looking for a new job? http://www.xrow.com/xrow-GmbH/Jobs
Looking for hosting? http://hostingezpublish.com
-----------------------------------------------------------------------------
GMT +01:00 Hannover, Germany
Web: http://www.xrow.com/

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2014 eZ Systems AS (except where otherwise noted). All rights reserved.

eZ debug

Timing: Jan 19 2025 03:17:21
Script start
Timing: Jan 19 2025 03:17:21
Module start 'layout'
Timing: Jan 19 2025 03:17:21
Module start 'content'
Timing: Jan 19 2025 03:17:21
Module end 'content'
Timing: Jan 19 2025 03:17:21
Script end

Main resources:

Total runtime0.0197 sec
Peak memory usage2,048.0000 KB
Database Queries3

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0051 590.1484152.6094
Module start 'layout' 0.00520.0035 742.757839.4297
Module start 'content' 0.00870.0089 782.187593.4297
Module end 'content' 0.01760.0021 875.617234.3047
Script end 0.0197  909.9219 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.002914.8971140.0002
Check MTime0.00126.0430140.0001
Mysql Total
Database connection0.00063.017910.0006
Mysqli_queries0.002914.848730.0010
Looping result0.00000.066510.0000
Template Total0.00168.310.0016
Template load0.00105.114110.0010
Template processing0.00063.165410.0006
Override
Cache load0.00073.576710.0007
General
dbfile0.003115.626480.0004
String conversion0.00000.046040.0000
Note: percentages do not add up to 100% because some accumulators overlap

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 1
 Number of unique templates used: 1

Time used to render debug report: 0.0001 secs