Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Spiceworld

Pioneers
  • Posts

    64
  • Joined

  • Last visited

Posts posted by Spiceworld

  1. Hi

     

    Just installed this and it works fine - ie the order goes through and is seen on Google Account.

     

    But it doesn't update the status of the order on my shop like the Paypal IPN does, it is surpose to? If it is what am i doing wrong? Or do i have to update that manually?

     

    I do have a SSL Cert but it is only a shared one (https://sslrelay.com/myshop.co.uk/catalog/google_ipn.php) could that be the problem?

     

    Any help appreciated.

     

    Cheers Richard

  2. Hi

     

    Just had the following come up:

     

    Warning: gethostbyaddr() [function.gethostbyaddr]: Address is not a valid IPv4 or IPv6 address in /homepages/xxxxxx/htdocs/catalog/admin/whos_online.php on line 400

    Any ideas? Should i be worried?

     

    Richard

     

     

    I take it that is a No on the above then <_<

     

     

    Another problem i am having is that all my products on Bidhopper are showing $0.00 prices. Anyone got a fix for it. Also can it be shown in £ or not?

     

    Cheers Richard

  3. Hi

     

    I have this installed and it works fine. As in it adds the amount to the end total.

     

    BUT i also have 'City Delivery' installed, which gives local customers free postage, which again works well for my needs.

     

    But after checkout i am getting the Extra shipping charge added to the total, which obviously i don't want it to.

     

    Anyone sorted a fix that would clear this error for me?

     

     

    Cheers

     

    Richard

  4. Hi! I installed the 'Amount till free shipping' contribution. The amount was originally setted up at $50 but I change it in the administration panel for $150. It doesn't change on my shopping cart block, it's still at $50.

     

    I don't know how to do to change it then.

    Please help/Thanks.

     

    Hi

     

    Did you ever get this working properly as i have the same error.

     

    Cheers Richard

  5. Hi

     

    Just installed this but it doesn't work.

     

    I have "Paypal IPN v1.4" http://www.oscommerce.com/community/contributions,2679 installed and looked at the latest update added, but the Paypal IPN file has changed quite a lot since it was done.

     

    Anyone got an update for this mod as i would really like to use it.

     

    Also i have "Paypal Express Checkout IPN" http://www.oscommerce.com/community/contributions,4791 installed, so i guess i will need an update for that as well.

     

     

    Any help?

     

    Cheers Richard

  6. Hi

     

    Don't worry i found them in a database backup i did.

     

    I have the following:

     

    INSERT INTO `orders_status` VALUES (5, 1, 'Completed [PayPal EC IPN]');

    INSERT INTO `orders_status` VALUES (4, 1, 'Cancelled [PayPal EC IPN]');

     

    Can i just add those, but i will need to change the numbers 4 and 5 to 5 and 6, as i installed the "Official Paypal IPN module" again, and don't want the hassle of removing it again.

     

    Will that work doing that Ok.

     

    Cheers Richard

  7. Hi

     

    Right i need to apologise :blush:

     

    I had the Loyalty mod set to give discount on Delivered status (As you would) but all my test sales had only gone to Pending status. So having re-installed again it now works as it should.

     

    Plus i got the button again :lol: small minds and all that :thumbsup:

     

    Cheers and sorry for any confusion anybody suffered

     

    Richard

  8. Hi

     

    Ok thanks for that, i have now uninstalled it and cleared cashe, but still no button now on either account. I will have a play with that over the weekend.

     

    Do you think you could have a look at the following mod http://www.oscommerce.com/community/contributions,1286 as it is only 2 files to add and no editing to do on any os files, so it must be something that the files themselves call that are being missed by your mod.

     

    Cheers and i will love you forever if you get it working :thumbsup: as it is one of the most useful mods out there.

     

    Cheers Richard

  9. Hi

     

    Just started another test account and the option now comes up (see image below)

     

    screenshot.gif

     

    Hope the last post makes some sense now.

     

    On my other account i don't get given the chance to pick "Or Continue Checkout Procedure".

     

    Should i be given that option now?

     

    Cheers Richard

  10. Hi

     

    Thanks for the replies.

     

    I still don't seem to get any different pages regardless of which way i have the Utilize Express Checkout Button set to. It's not a problem, i just don't like not being able to get to it again as i know it's there. I don't even know where that extra long button came from as it's not in your extra images either, so i can't show you exactly what page i'm missing seeing.

     

    As for the mod, it doesn't have to be edited in any other files, but probably does call others, so i will have a look at that later.

     

    Richard

  11. Hi

     

    Right i installed it on my UK account and all seemed to be working fine with a test order going through fine. However when i tried again today i seem to miss out part of the process i had yesterday ie: it bypassed the bit where i got the chance to go "Express Checkout" with a big oblong button or "The Old route", is that part of the way it works?

     

    Also i installed the following mod today http://www.oscommerce.com/community/contributions,1286 and i can't get it to show the discount, does the Paypal EC bypass whats needed for this mod to work.

     

    Cheers Richard

  12. Hi

     

    Was planning to use this for a new shop that i am just adding modifications to, but notice there could be problems with UK accounts. Has this been fixed yet?

     

    Also i was just wondering if anyone that is using this on a live shop are getting people moaning about having to create an account first, or are people just not bothering to complete there purchases?

     

    Plus i read further back on this thread (Post #19) that it is compatible with the "offical IPN module", can someone tell me which modification that is.

     

    Cheers Richard

  13. Hi again

     

    There's also this piece of code to do with images aswell:

     

    function ShowImage(&$width,&$height,$link,$path)

    {

     

    $width=min($width,MAX_IMAGE_WIDTH);

    $height=min($height,MAX_IMAGE_HEIGHT);

     

    if(RESIZE_IMAGES)

    {

    $destination =DIR_FS_CATALOG."catalogues/";

     

     

    if(substr(strtolower($path), (strlen($path)-4),4)==".jpg" || substr(strtolower($path), (strlen($path)-5),5)==".jpeg")

    {

    $src=imagecreatefromjpeg($path);

    }

    else if(substr(strtolower($path), (strlen($path)-4),4)==".png")

    {

    $src=imagecreatefrompng($path);

    }

    else

    {

    echo "Only PNG and JPEG";

    exit();

    }

     

    $array=explode("/", $path);

    $last=sizeof($array);

     

    $size = getimagesize($path);

    if($size[0] > $size[1])

    {

    $im=imagecreate($width/PDF_TO_MM_FACTOR, $height/PDF_TO_MM_FACTOR);

    imagecopyresized($im, $src, 0, 0, 0, 0,$width/PDF_TO_MM_FACTOR, $height/PDF_TO_MM_FACTOR, $size[0], $size[1]);

    }

    else

    {

    $im=imagecreate($height/PDF_TO_MM_FACTOR,$width/PDF_TO_MM_FACTOR);

    imagecopyresized($im, $src, 0, 0, 0, 0, $height/PDF_TO_MM_FACTOR, $width/PDF_TO_MM_FACTOR, $size[0], $size[1]);

    }

    if(!imagejpeg($im, $destination.$array[$last-1]))

    {

    exit();

    }

     

    $path=$destination.$array[$last-1];

     

    $this->SetLineWidth(1);

    $this->Cell($width,$height,"",1,0);

    $this->SetLineWidth(0.2);

    $this->Image($path,($this->GetX()-$width), $this->GetY(), $width, $height,'',$link);

    $this->SetFont('Arial','',8);

     

    unlink($path);

     

    }

    else

    {

    $this->SetLineWidth(1);

    $this->Cell($width,$height,"",1,0);

    $this->SetLineWidth(0.2);

    $this->Image($path,($this->GetX()-$width), $this->GetY(), $width, $height,'',$link);

    $this->SetFont('Arial','',8);

    }

    }

     

     

     

    Cheers Richard

×
×
  • Create New...