Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

dayswillfall

Archived
  • Posts

    9
  • Joined

  • Last visited

Profile Information

  • Real Name
    Jesse Wallace

dayswillfall's Achievements

  1. Sorry, here is also another dump report i received: In function: ec_get_detail() Response from PayPal: [Security] = N/A [RequesterCredentials] [0] [Credentials] [0] [Username] = N/A [Password] = N/A [Subject] = N/A [GetExpressCheckoutDetailsResponse] [0] [Timestamp] = 2007-08-28T14:21:58Z [Ack] = Success [CorrelationID] = 366255d46940f [Version] = 2.000000 [Build] = 1.0006 [GetExpressCheckoutDetailsResponseDetails] [0] [Token] = EC-9WJ73159MV635164B [PayerInfo] [0] [Payer] = [email protected] [PayerID] = 6TMS5BNMYBX2J [PayerStatus] = verified [PayerName] [0] [Salutation] = N/A [FirstName] = Jesse [MiddleName] = N/A [LastName] = Wallace [Suffix] = N/A [PayerCountry] = US [PayerBusiness] = N/A [Address] [0] [Name] = Jesse Wallace [Street1] = 6640 Akers Mill Rd [Street2] = 1939 [CityName] = Atlanta [StateOrProvince] = GA [Country] = US [CountryName] = United States [PostalCode] = 30339 [AddressOwner] = PayPal [AddressStatus] = Confirmed From this request: (WARNING!!) DO NOT expose your API Username/Password to the public!! [?xml version="1.0" encoding="utf-8"?] [soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"] [soap:Header] [RequesterCredentials xmlns="urn:ebay:api:PayPalAPI"] [Credentials xmlns="urn:ebay:apis:eBLBaseComponents"] [Username]XXXXXXXXXXXX[/Username] [ebl:Password xmlns:ebl="urn:ebay:apis:eBLBaseComponents"]XXXXXXXXXXXX[/ebl:Password] [/Credentials] [/RequesterCredentials] [/soap:Header] [soap:Body] [GetExpressCheckoutDetailsReq xmlns="urn:ebay:api:PayPalAPI"] [GetExpressCheckoutDetailsRequest] [Version xmlns="urn:ebay:apis:eBLBaseComponents"]2.0[/Version] [Token]EC-9WJ73159MV635164B[/Token] [/GetExpressCheckoutDetailsRequest] [/GetExpressCheckoutDetailsReq] [/soap:Body] [/soap:Envelope]
  2. Hi! Almost done with my site - just having one problem with this component. I put the coupon in, get into Paypal, put all my information in, and it passes me back to OSCommerce. Everything looks good, so I hit the "PAY" button, and it kicks me back out to the login.php page. Here is the dump report i receive: In function: pre_confirmation_check() Response from PayPal: [Security] = N/A [RequesterCredentials] [0] [Credentials] [0] [Username] = N/A [Password] = N/A [Subject] = N/A [SetExpressCheckoutResponse] [0] [Timestamp] = 2007-08-28T14:21:41Z [Ack] = Success [CorrelationID] = 96ce4e6536623 [Version] = 2.000000 [Build] = 1.0006 [Token] = EC-9WJ73159MV635164B From this request: (WARNING!!) DO NOT expose your API Username/Password to the public!! [?xml version="1.0" encoding="utf-8"?] [soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"] [soap:Header] [RequesterCredentials xmlns="urn:ebay:api:PayPalAPI"] [Credentials xmlns="urn:ebay:apis:eBLBaseComponents"] [Username]XXXXXXXXXX[/Username] [Password]XXXXXXXXXX[/Password] [Subject][/Subject] [/Credentials] [/RequesterCredentials] [/soap:Header] [soap:Body] [SetExpressCheckoutReq xmlns="urn:ebay:api:PayPalAPI"] [SetExpressCheckoutRequest] [Version xmlns="urn:ebay:apis:eBLBaseComponents"]2.0[/Version] [SetExpressCheckoutRequestDetails xmlns="urn:ebay:apis:eBLBaseComponents"] [OrderTotal currencyID="USD"]0.14[/OrderTotal] [ReturnURL]https://www.2reachamillion.com/express_checkout.php?osCsid=49a9e6ca058865edfadeb7277a2d9dc8[/ReturnURL] [CancelURL]https://www.2reachamillion.com/checkout_payment.php?payment_error=paypal_ec[/CancelURL] [ReqConfirmShipping]0[/ReqConfirmShipping] [NoShipping]0[/NoShipping] [AddressOverride]1[/AddressOverride] [LocaleCode]US[/LocaleCode] [PageStyle]PayPal[/PageStyle] [Address] [Name]Jesse Wallace[/Name] [Street1]6640 Akers Mill Rd[/Street1] [Street2]Apt. 1939[/Street2] [CityName]Atlanta[/CityName] [StateOrProvince]GA[/StateOrProvince] [PostalCode]30339[/PostalCode] [Country]US[/Country] [Phone]6787552237[/Phone] [/Address] [BuyerEmail][email protected][/BuyerEmail] [/SetExpressCheckoutRequestDetails] [/SetExpressCheckoutRequest] [/SetExpressCheckoutReq] [/soap:Body] [/soap:Envelope] I really need to get this site up for a client, so any help would be GREATLY appreciated! Thanks!!
  3. Yes, i made sure twice, and checked the file after I uploaded. Any other suggestions? I could PM you with my ftp info? This is pretty much the last component that I need working, and its a godsend of a component...i just need to have it working with the individual shipping function.
  4. I found this in catalog/includes/classes.php //start indvship function get_shiptotal() { global $cart, $order; $this->shiptotal = ''; $products = $cart->get_products(); for ($i=0, $n=sizeof($products); $i<$n; $i++) { if (tep_not_null($products[$i]['products_ship_price'])) { $products_ship_price = $products[$i]['products_ship_price']; $products_ship_price_two = $products[$i]['products_ship_price_two']; $products_ship_zip = $products[$i]['products_ship_zip']; $qty = $products[$i]['quantity']; if(tep_not_null($products_ship_price) ||tep_not_null($products_ship_price_two)){ $this->shiptotal += ($products_ship_price); if ($qty > 1) { if (tep_not_null($products_ship_price_two)) { $this->shiptotal += ($products_ship_price_two * ($qty-1)); } else { $this->shiptotal += ($products_ship_price * ($qty-1)); } }/////////////NOT HERE <<------------ } } }// CHECK TO SEE IF SHIPPING TO HOME COUNTRY, IF NOT INCREASE SHIPPING COSTS BY AMOUNT SET IN ADMIN/////////////move back here <<------------ if (($order->delivery['country']['id']) != INDIVIDUAL_SHIP_HOME_COUNTRY) { if(INDIVIDUAL_SHIP_INCREASE > '0' || $this->shiptotal > '0') { $this->shiptotal *= INDIVIDUAL_SHIP_INCREASE; } else { $this->shiptotal += INDIVIDUAL_SHIP_INCREASE * $this->get_indvcount(); } return $this->shiptotal; // not sure why this is needed, but it now works correctly for home country - by Ed } else { $this->shiptotal *= 1; return $this->shiptotal; } } I am an absolutely idiot when it comes to PHP, and really have no clue what Im looking at, but I figure thats the function you were talking about. However, when I copy and paste it into the functions.php for Order Editor, nothing happens - i get the same error: Fatal error: Call to undefined function: get_shiptotal() in /home/dayfallm/public_html/2reachamillion/includes/modules/shipping/indvship.php on line 53 I really wish I knew PHP enough to get around, but unfortunately all my experience is in design and css. Any further help is of course greatly appreciated.
  5. This worked, and fixed the issue, except now I am receiving: Fatal error: Call to undefined function: get_shiptotal() in /home/dayfallm/public_html/2reachamillion/includes/modules/shipping/indvship.php on line 53 Any idea of how to circumvent that?
  6. Hi, When I go to edit an order with the component, I receive this error: Warning: main(http://www.2reachamillion.com/includes/classes/http_client.php) [function.main]: failed to open stream: HTTP request failed! HTTP/1.1 403 Forbidden in /home/dayfallm/public_html/2reachamillion/admin/edit_orders.php on line 35 Warning: main(http://www.2reachamillion.com/includes/classes/http_client.php) [function.main]: failed to open stream: HTTP request failed! HTTP/1.1 403 Forbidden in /home/dayfallm/public_html/2reachamillion/admin/edit_orders.php on line 35 Fatal error: main() [function.require]: Failed opening required 'http://www.2reachamillion.com/includes/classes/http_client.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/dayfallm/public_html/2reachamillion/admin/edit_orders.php on line 35 Can anyone point me in the right direction, or tell me what the fix could be? Thanks!
  7. I am having an issue, can someone help? I installed and updated all the files, and when I go to click edit, i receive this error: Warning: main(http://www.2reachamillion.com/includes/classes/http_client.php) [function.main]: failed to open stream: HTTP request failed! HTTP/1.1 403 Forbidden in /home/dayfallm/public_html/2reachamillion/admin/edit_orders.php on line 35 Warning: main(http://www.2reachamillion.com/includes/classes/http_client.php) [function.main]: failed to open stream: HTTP request failed! HTTP/1.1 403 Forbidden in /home/dayfallm/public_html/2reachamillion/admin/edit_orders.php on line 35 Fatal error: main() [function.require]: Failed opening required 'http://www.2reachamillion.com/includes/classes/http_client.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/dayfallm/public_html/2reachamillion/admin/edit_orders.php on line 35 Any help would be greatly appreciated! Thanks!
×
×
  • Create New...