00001 <?php 00002 00003 /****************************************************************************** 00004 00005 This file contains all general variables for the PayPal payment 00006 00007 *******************************************************************************/ 00008 00009 // ID of PayPal vendor (e-mail address) 00010 $vendor = ""; 00011 00012 // PayPal server 00013 $server_path = "/cgi-bin/webscr"; 00014 $server_host = "www.paypal.com"; 00015 $server = "https://".$server_host.$server_path; 00016 00017 // For securely posting back to paypal using HTTPS your PHP server will need to be SSL enabled 00018 $ssl = true; 00019 00020 // PayPal auth token 00021 $auth_token = ""; 00022 00023 // PayPal page style 00024 $page_style = "primary"; 00025 00026 $paypalConfig = array( 00027 "vendor" => $vendor, 00028 "server_path" => $server_path, 00029 "server_host" => $server_host, 00030 "server" => $server, 00031 "auth_token" => $auth_token, 00032 "page_style" => $page_style 00033 ); 00034 00035 $GLOBALS["paypalConfig"] = $paypalConfig; 00036 ?>