Cool
ok so when I pass the sitesettings attributes to my view what am I passing?
{{ attributes = {"cert_id":sitesettings.paypal_cert_id,
"cmd":"_cart",
"business":sitesettings.cart_business,
"add":"1",
"custom":auth.user.id,
"item_name":artist_name + ": " + song['name'],
"item_number":"song-"+str(song['cue_point_id']),
"amount":song['cost'],
"currency_code":"USD",
"shopping_url":full_url('http',r=request,args=request.args),
"return":full_url('https', r=request, c='account', \
f='alldownloads'),
}
encattrs = paypal_encrypt(attributes, sitesettings)
}}
or is that just as an example...show I be using my paypal values?
*cheers
Andrew