Page 7 of 8 FirstFirst ... 5678 LastLast
Results 61 to 70 of 71
  1. #61
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: Orders not showing up in Paypal or ZC admin (PayPal IPN module)

    Can you go into your phpMyAdmin, select your store database, then select your "paypal" table, click on Export, choose "structure only" (ie: uncheck the "data" checkbox), click on Go.
    This should give you your PayPal table structure.
    Post that SQL output here.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  2. #62
    Join Date
    Jun 2007
    Posts
    64
    Plugin Contributions
    0

    Default Re: Orders not showing up in Paypal or ZC admin (PayPal IPN module)

    I do not run PHP myAdmin but this should do the trick -- let me know if you need anything else.



    -- Definition of table `bos_paypal`
    --

    DROP TABLE IF EXISTS `bos_paypal`;
    CREATE TABLE `bos_paypal` (
    `paypal_ipn_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
    `zen_order_id` int(11) unsigned NOT NULL DEFAULT '0',
    `txn_type` varchar(32) NOT NULL DEFAULT '',
    `reason_code` varchar(15) DEFAULT NULL,
    `payment_type` varchar(7) NOT NULL DEFAULT '',
    `payment_status` varchar(17) NOT NULL DEFAULT '',
    `pending_reason` varchar(14) DEFAULT NULL,
    `invoice` varchar(64) DEFAULT NULL,
    `mc_currency` char(3) NOT NULL DEFAULT '',
    `first_name` varchar(32) NOT NULL DEFAULT '',
    `last_name` varchar(32) NOT NULL DEFAULT '',
    `payer_business_name` varchar(64) DEFAULT NULL,
    `address_name` varchar(32) DEFAULT NULL,
    `address_street` varchar(64) DEFAULT NULL,
    `address_city` varchar(32) DEFAULT NULL,
    `address_state` varchar(32) DEFAULT NULL,
    `address_zip` varchar(10) DEFAULT NULL,
    `address_country` varchar(64) DEFAULT NULL,
    `address_status` varchar(11) DEFAULT NULL,
    `payer_email` varchar(96) NOT NULL DEFAULT '',
    `payer_id` varchar(32) NOT NULL DEFAULT '',
    `payer_status` varchar(10) NOT NULL DEFAULT '',
    `payment_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
    `business` varchar(96) NOT NULL DEFAULT '',
    `receiver_email` varchar(96) NOT NULL DEFAULT '',
    `receiver_id` varchar(32) NOT NULL DEFAULT '',
    `txn_id` varchar(17) NOT NULL DEFAULT '',
    `parent_txn_id` varchar(17) DEFAULT NULL,
    `num_cart_items` tinyint(4) unsigned NOT NULL DEFAULT '1',
    `mc_gross` decimal(7,2) NOT NULL DEFAULT '0.00',
    `mc_fee` decimal(7,2) NOT NULL DEFAULT '0.00',
    `payment_gross` decimal(7,2) DEFAULT NULL,
    `payment_fee` decimal(7,2) DEFAULT NULL,
    `settle_amount` decimal(7,2) DEFAULT NULL,
    `settle_currency` char(3) DEFAULT NULL,
    `exchange_rate` decimal(4,2) DEFAULT NULL,
    `notify_version` decimal(2,1) NOT NULL DEFAULT '0.0',
    `verify_sign` varchar(128) NOT NULL DEFAULT '',
    `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
    `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
    `memo` text,
    PRIMARY KEY (`paypal_ipn_id`,`txn_id`),
    KEY `idx_zen_order_id_zen` (`zen_order_id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;

  3. #63
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: Orders not showing up in Paypal or ZC admin (PayPal IPN module)

    Are there any PHP errors in your server's errorlog?
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  4. #64
    Join Date
    Jun 2007
    Posts
    64
    Plugin Contributions
    0

    Default Re: Orders not showing up in Paypal or ZC admin (PayPal IPN module)

    Unfortunately there are no php errors in the logs. I must have something configured incorrectly as the test install that I did on this same server is having the exact same issues. I will keep poking around trying to determine why this is not working. Thank you for your help so far.

  5. #65
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: Orders not showing up in Paypal or ZC admin (PayPal IPN module)

    Whatever's wrong is failing to insert records into the "paypal" table properly during the IPN processing stages.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  6. #66
    Join Date
    Sep 2007
    Posts
    21
    Plugin Contributions
    0

    Default Re: Orders not showing up in Paypal or ZC admin (PayPal IPN module)

    I am having a very similar/same issue. This is my installation:

    Zen Cart 1.3.7.1

    Database Patch Level: 1.3.7.1

    v1.3.7.1 [2007-09-18 10:31:48] (Fresh Installation)

    I am using the PayPal IPN as my sole source of payment. I just made a test order - the PayPal part seemed to go fine - but - the order did not show up in Zen Cart anywhere that I can see, nor did it generate any emails, etc.

    I am very new to Zen Cart and PayPal but have followed the instructions and everything seems okay. Again - the PayPal payment went through without issue.

    Any ideas?

  7. #67
    Join Date
    Nov 2007
    Posts
    5
    Plugin Contributions
    0

    Default Re: Orders not showing up in Paypal or ZC admin (PayPal IPN module)

    Quote Originally Posted by afinta View Post
    I am having a very similar/same issue. This is my installation:

    Zen Cart 1.3.7.1

    Database Patch Level: 1.3.7.1

    v1.3.7.1 [2007-09-18 10:31:48] (Fresh Installation)

    I am using the PayPal IPN as my sole source of payment. I just made a test order - the PayPal part seemed to go fine - but - the order did not show up in Zen Cart anywhere that I can see, nor did it generate any emails, etc.

    I am very new to Zen Cart and PayPal but have followed the instructions and everything seems okay. Again - the PayPal payment went through without issue.

    Any ideas?
    I am having the same problem.

  8. #68
    Join Date
    Sep 2007
    Posts
    21
    Plugin Contributions
    0

    Default Re: Orders not showing up in Paypal or ZC admin (PayPal IPN module)

    Rembrandt I am thinking 1 of 3 things - the port is not open that needs to be, the PayPal account has not been verified yet (since it is not mine but my client's), or - their is a permissions issue with the DB...

    I like your avatar.

  9. #69
    Join Date
    Nov 2007
    Posts
    5
    Plugin Contributions
    0

    Default Re: Orders not showing up in Paypal or ZC admin (PayPal IPN module)

    Quote Originally Posted by MuttOAOA View Post
    I am having the same problem.
    Sorry for the scare... there was a typo in my PayPal address. My bad.

    Quote Originally Posted by afinta View Post
    I like your avatar.
    Thanks. It's a blending of my face and the painting. When I was at the Met I took a picture of me and the painting at the same time and got the same lighting. It was a fun little Photoshop exercise. ;)

  10. #70
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: Orders not showing up in Paypal or ZC admin (PayPal IPN module)

    Quote Originally Posted by afinta View Post
    I am using the PayPal IPN as my sole source of payment. I just made a test order - the PayPal part seemed to go fine - but - the order did not show up in Zen Cart anywhere that I can see, nor did it generate any emails, etc.
    http://www.zen-cart.com/wiki/index.php/PayPal
    Please post your debug logs.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

 

 
Page 7 of 8 FirstFirst ... 5678 LastLast

Similar Threads

  1. Paypal IPN new orders not showing on Customers/Orders page
    By daelan in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 1 Feb 2010, 02:23 AM
  2. Orders not showing in zen cart, using PayPal IPN module
    By clueless123 in forum General Questions
    Replies: 1
    Last Post: 30 Aug 2009, 11:49 PM
  3. Paypal IPN orders not showing
    By tedgibbs in forum PayPal Express Checkout support
    Replies: 3
    Last Post: 8 Apr 2009, 04:49 AM
  4. paypal IPN orders not showing
    By Steve Atlanta in forum Built-in Shipping and Payment Modules
    Replies: 7
    Last Post: 20 Nov 2007, 11:28 PM
  5. Orders not showing in Admin: similar sad tune!! (PayPal IPN)
    By Peggasus in forum Managing Customers and Orders
    Replies: 21
    Last Post: 22 Mar 2007, 08:27 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR