Jump to content

convict

Member
  • Posts

    1,302
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by convict

  1. Andy,

    It is difficult to state anything because of PayPal. CubeCart PayPal gateway is technically OK but all depends to the site connection and I have experienced VERY odd behavior testing payments using PayPal regardless to the gateway used and site connection was perfect.

    Only I can suggest you is to hire an experienced coder to see the exact reason of your problems. Believe me it is not so easy sometimes.

    I remember cases PayPal IPN history recorded everything is ok even in state I simulated PAGE NOT FOUND in IPN script code. :) Well direct URL usage showed 404 html status but PayPal history showed code 200 - which is OK!!! Weird?

  2. If you would like to access admin part using SSL the proper SSL settings (store URL, store relative web path) must be set in admin part. Once SSL settings are entered the check box next to "Use secure login:" on admin login screen appears you have to check before admin credentials entered.

  3. I am shipping my items only domestically. I sell children's tshirts and they are not heavy to ship so how do I calculate taxes and shipping??I have a UPS account but I know USPS is cheaper and probably more attractive to customers. Plus I am in California, so do I add the 8.25% sales tax?
    Just sign-up to USPS and use USPS shipping module.
  4. It could be made using standard shipping modules but small tweak is required.

    BY WEIGHT module could be used for

    normal delivery £ X.XX

    express delivery on a next working day basis £ XX.XX0.

    You need to rename "By Weight (1st Class)" to Normal delivery or so and "By Weight (2nd Class)" to Express Delivery or so. You can do this in admin Languages >> en >> Global Common Phrases.

    Then just configure BY WEIGHT module defining the Zone 1 countries and (1st class) normal delivery fee as 99999:7.65 and (2nd class) express delivery as 99999:11.70

    FREE SHIPPING module is exactly for order value of £ XX.XX excluding VAT and over free of charge, just specify 250 as Minimum subtotal

    Well don't forget to enable modules :-)

  5. Well problem is missing code in admin\sources\products\options.inc.php here

    onclick="return confirm('<?php echo str_replace("\n", '\n', $lang['admin']['products_remove_opt_prod']); ?>"
    
    
    
    
    It should be
    
    
    
    
    
    onclick="return confirm('<?php echo str_replace("\n", '\n', $lang['admin']['products_remove_opt_prod']);?>');"

    This affects 4.3.4 - 4.3.5

  6. Just experienced PayPal doesn't accept 'plain' call back in ipn.php script redirecting to the ssl one. This affected the IPN call which is NEVER completed thus order status remains Pending.

    FIX:

    SEARCH FOR

    $fp = fsockopen ($ipnUrl, 80, $errno, $errstr, 30);
    
    
    
    
    REPLACE WITH
    
    //$fp = fsockopen ($ipnUrl, 80, $errno, $errstr, 30);
    
    
    
    $fp = fsockopen ('ssl://www.paypal.com', 443, $errno, $errstr, 30);

    site PHP should have SSL enabled

  7. Another one here with this issue.

    Like peetiepie, i also tried the fix of deleting the #############'s and i still get the 'Error: No payment gateway variable is set!' message. Both in firefox and internet explorer.

    I am using cubecart 3.0.20. I have just spent 4 hours skinning my test store, before checking that the payments/orders etc are going through! Stupid of me - should have got the nuts and bolts working first but i got carried away. Anyway, there's no going back now - somebody please help us?

    PS The payments are coming through, and the orders in the store admin are shown as processing

    If order is Processinf IPN works.

    Watch the URL once redirected to store there should be very LONG one. If the url ends like confirmed.php please go to your PayPal account >> Profile >> Website Payment Prefferences and make sure Payment Data Transfer is set to YES.

×
×
  • Create New...