Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 22
  1. #11
    Join Date
    Oct 2005
    Posts
    287
    Plugin Contributions
    0

    Default Re: Login Time Out after entering credit card details?

    It's set to 60 on my Zencart and 30 in the main php.ini file on my server.

    Should I change anything here ?

  2. #12
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Login Time Out after entering credit card details?

    Quote Originally Posted by harry2cool View Post
    Have been using the same payment module for more than 2 years , also running the same module on other websites without this problem as of now(on the same new server).
    What exactly is different in all the files and settings and domain configuration between the site that's allegedly having problems vs those that aren't?

    Also, what patterns exist amongst the customers who are having problems? geographic region, browser used, browser settings, cart contents, operating system, dialup vs hi-speed, time of day, using coupons or not, and the list goes on.

    Further, if you use a different payment module instead, perhaps one of the built-in ones, does the problem continue? What have you done to ensure that the payment module itself isn't the problem?
    .

    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.

  3. #13
    Join Date
    Oct 2005
    Posts
    287
    Plugin Contributions
    0

    Default Re: Login Time Out after entering credit card details?

    Hi DrByte,
    To ensure the integrity of the payment gateway, this same module is installed on 2 of my other websites and it works fine.

    I did manage to recreate this error.


    ============================================
    If there is an error on the payment gateway (i.e wrong input of any credit card details) , it returns a blank page

    Below is the URL which shows the blank page:

    'http://www.xyz.com/index.php?main_page=checkout_payment&PaymentID=2894610210902850&auth=&amt=20.0&r ef=&tranid=&trackid=4551221862221&postdate=&result=&udf1=50s%20Cotton%20Dress%20 Sh&udf2=harryfashion######################&udf3=9821142770&udf4=Rue%20De%20Palac e%20New%20York%20New%20York%20100011%20United%20States&udf5=1&error_message=Ther e%20has%20been%20an%20error%20processing%20you%20credit%20card%20at%20yourbank.c om,%20please%20try%20again.

    The above page should show the checkout_payment page however it shows a blank page, here is where the problem is.
    =========================================

    I guess if the above problem is rectified all the problems can solve.

    Please let me know what I can test to correct the above.

  4. #14
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Login Time Out after entering credit card details?

    Your module is using old-style coding that's not compatible with v1.3.9.
    It's passing error messages and long parameters on the URL.
    You can't pass long error messages via the URL. You should be using the messageStack to do that.
    Further, in addition to error messages, any other parameters which have values longer than 43 characters are also treated as spam or attempts at hackers to exploit old vulnerabilities, and are thus met with a 406 error and a blank page.

    You need to update your module to work accordingly.
    .

    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.

  5. #15
    Join Date
    Oct 2005
    Posts
    287
    Plugin Contributions
    0

    Default Re: Login Time Out after entering credit card details?

    Hi DrByte,
    The long url solved the blank page problem, THANKS.

    I found out about the "Time Out" issue, it happens when a customer uses Internet Explorer.

    FireFox works fine.

    I have given the module for testing, any other fix I can use for this ?

    Thanks Again

  6. #16
    Join Date
    Sep 2010
    Posts
    9
    Plugin Contributions
    0

    Default Re: Login Time Out after entering credit card details?

    I am harry2cool's developer, we have done some research for "Login Time Out" after back from credit card payment holder.
    At last, we find out if the zenid remove from the query string, it will show "Login Time Out" message. I know the zenid use to track login user status. But our other two sites can work after remove zenid parameter.
    We have checked codes and site configuration, there are no difference.
    Can you help us?

  7. #17
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Login Time Out after entering credit card details?

    The zenid isn't used only to track login user status.
    It's actually the PHP session ID.
    Without it, PHP can't link up the customer's session to the software, and *that* is why it can't track the user's login status.

    Basically, you have a PHP sessions problem to fix.
    .

    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.

  8. #18
    Join Date
    Sep 2010
    Posts
    9
    Plugin Contributions
    0

    Default Re: Login Time Out after entering credit card details?

    Hi, DrByte

    yes, if we remove the zenid from url, the site should be work fine, right?
    so our site session has some problem to holder customerid and cart content, right?
    I will check site seesion.

    Thank you very much!
    Jarvis

  9. #19
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,761
    Plugin Contributions
    9

    Default Re: Login Time Out after entering credit card details?

    Quote Originally Posted by jarvis_ht2000
    if we remove the zenid from url, the site should be work fine, right?
    No, not at all read
    Quote Originally Posted by DrByte
    Without it, PHP can't link up the customer's session to the software, and *that* is why it can't track the user's login status.
    Zen-Venom Get Bitten

  10. #20
    Join Date
    Sep 2010
    Posts
    9
    Plugin Contributions
    0

    Default Re: Login Time Out after entering credit card details?

    Yes, I know that.
    The zenid can be removed from URL at our two sites, also the sites don't show "Login Out Time" message.
    Just one site can not work at this cause. so we very confuse why have these different result, can you give me information for zenid?

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Replies: 3
    Last Post: 25 Feb 2011, 04:39 PM
  2. Apply GC without entering Credit Card info?
    By Picci in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 19
    Last Post: 17 Feb 2011, 05:05 PM
  3. Customer cannot proceed after entering address details on PayPal site
    By mr.chetanladdha in forum Upgrading from 1.3.x to 1.3.9
    Replies: 6
    Last Post: 14 May 2010, 04:47 PM
  4. Customer Login time out error after adding confirm email address addon
    By abs007 in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 29 Jan 2010, 08:02 PM
  5. Credit Card Check Out error, help, can not process credit cards after Super Orders
    By ciscomemory_net in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 28 Jul 2009, 06:01 AM

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