Page 4 of 5 FirstFirst ... 2345 LastLast
Results 31 to 40 of 44
  1. #31
    Join Date
    Sep 2015
    Location
    Daytona Beach, FL USA
    Posts
    69
    Plugin Contributions
    0

    Default Re: V1.5.0 to 1.5.4 update. Credit Cards not showing at checkout. Only money order.

    I use fileZilla. We have been having a server problem (Windows 2012) with configure.php going into ReadOnly mode with nothing that I can do to reset it. I have to get to my host provider support to do it. I do sometimes edit from FileZilla. Maybe that is setting it to ReadOnly??????

  2. #32
    Join Date
    Sep 2015
    Location
    Daytona Beach, FL USA
    Posts
    69
    Plugin Contributions
    0

    Default Re: V1.5.0 to 1.5.4 update. Credit Cards not showing at checkout. Only money order.

    I have uploaded a new configure.php.
    with
    define('ENABLE_SSL', 'true');
    and
    define('DIR_FS_LOGS'), 'D:/Inetpub/.../ZenCart154B/logs');

    and now my checkout page is blank.

    Still nothing in logs nor cache.

  3. #33
    Join Date
    Sep 2015
    Location
    Daytona Beach, FL USA
    Posts
    69
    Plugin Contributions
    0

    Default Re: V1.5.0 to 1.5.4 update. Credit Cards not showing at checkout. Only money order.

    I removed define('DIR_FS_LOGS'), 'D:/Inetpub/.../ZenCart154B/logs'); and now I get the check out screen WITH the credit card info:-):-):-):-):-)

    What an ordeal!

    I believe that the upgrade procedure was wrong. The update did not provide a configure.php and the doc said to copy the one from the old 1.5.0 which I did and changed the DB, etc.. But it seems that there is more that should be there.

    I am kind of worried about define('DIR_FS_LOGS'), 'D:/Inetpub/.../ZenCart154B/logs'); causing the blank screen. Probably getting some type of error.

    But thanks. Now I can relax for the evening.

  4. #34
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: V1.5.0 to 1.5.4 update. Credit Cards not showing at checkout. Only money order.

    Quote Originally Posted by QuickBooksDev View Post
    I use fileZilla. We have been having a server problem (Windows 2012) with configure.php going into ReadOnly mode with nothing that I can do to reset it. I have to get to my host provider support to do it. I do sometimes edit from FileZilla. Maybe that is setting it to ReadOnly??????
    I forget where I've found the code that does it, but basically ZC self-preserves by making the store front configure.php read-only after "some" action... No filezilla is not setting it to read-only.

    I did also forget another option for generating a new includes/configure.php file, backup the database, remove includes/configure.php (rename, copy to somewhere else, etc), upload the fresh zc_install, install the store anew which will overwrite the database, then upload the database like you were doing a standard upgrade. (Drop the tables associated with the current new store, import the backup of the tables made from this same ZC version).

    Oh and then there is well, do the upgrade all over again, this time only changing pertinent data associated with the database assignment or store location, not by using an old version of the configure.php...
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  5. #35
    Join Date
    Sep 2015
    Location
    Daytona Beach, FL USA
    Posts
    69
    Plugin Contributions
    0

    Default Re: V1.5.0 to 1.5.4 update. Credit Cards not showing at checkout. Only money order.

    Thanks

    Before I do that I will work on the next problem when I entered an invalid credit card
    Communications Error - Please notify webmaster. - Your credit card could not be authorized for this reason. Please correct the information and try again or contact us for further assistance.

    Log in logs has

    Comm results: 60 SSL certificate problem: unable to get local issuer certificate

  6. #36
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: V1.5.0 to 1.5.4 update. Credit Cards not showing at checkout. Only money order.

    Quote Originally Posted by QuickBooksDev View Post
    I removed define('DIR_FS_LOGS'), 'D:/Inetpub/.../ZenCart154B/logs'); and now I get the check out screen WITH the credit card info:-):-):-):-):-)

    What an ordeal!

    I believe that the upgrade procedure was wrong. The update did not provide a configure.php and the doc said to copy the one from the old 1.5.0 which I did and changed the DB, etc.. But it seems that there is more that should be there.

    I am kind of worried about define('DIR_FS_LOGS'), 'D:/Inetpub/.../ZenCart154B/logs'); causing the blank screen. Probably getting some type of error.

    But thanks. Now I can relax for the evening.
    Umm that's because that is a completely incorrect format for a define:

    Code:
    define('DIR_FS_LOGS'), 'D:/Inetpub/.../ZenCart154B/logs');
    Should be:
    Code:
    define('DIR_FS_LOGS', 'D:/Inetpub/.../ZenCart154B/logs');
    As it has an extra right parenthesis in the wrong location...

    All depends on where you look for the directions to install... Unfortunately it would seem that the documents for the ZC 1.5.4 version didn't get a good read thru before initial distribution, but that's also why the forum is here which is to help others with their issue... Speaking of which, there is one that could use your input if it's not too much for you.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  7. #37
    Join Date
    Sep 2015
    Location
    Daytona Beach, FL USA
    Posts
    69
    Plugin Contributions
    0

    Default Re: V1.5.0 to 1.5.4 update. Credit Cards not showing at checkout. Only money order.

    Quote Originally Posted by mc12345678 View Post
    I forget where I've found the code that does it, but basically ZC self-preserves by making the store front configure.php read-only after "some" action... No filezilla is not setting it to read-only.

    I did also forget another option for generating a new includes/configure.php file, backup the database, remove includes/configure.php (rename, copy to somewhere else, etc), upload the fresh zc_install, install the store anew which will overwrite the database, then upload the database like you were doing a standard upgrade. (Drop the tables associated with the current new store, import the backup of the tables made from this same ZC version).

    Oh and then there is well, do the upgrade all over again, this time only changing pertinent data associated with the database assignment or store location, not by using an old version of the configure.php...


    And at the same time trying to keep this database in sync with the real production database on ZC1.5.0. Oh boy!

  8. #38
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: V1.5.0 to 1.5.4 update. Credit Cards not showing at checkout. Only money order.

    Quote Originally Posted by QuickBooksDev View Post
    Thanks

    Before I do that I will work on the next problem when I entered an invalid credit card
    Communications Error - Please notify webmaster. - Your credit card could not be authorized for this reason. Please correct the information and try again or contact us for further assistance.

    Log in logs has

    Comm results: 60 SSL certificate problem: unable to get local issuer certificate
    Just so I understand correctly, you're going to troubleshoot the error message received for when an incorrect credit card is provided? Reason that is important?
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  9. #39
    Join Date
    Sep 2015
    Location
    Daytona Beach, FL USA
    Posts
    69
    Plugin Contributions
    0

    Default Re: V1.5.0 to 1.5.4 update. Credit Cards not showing at checkout. Only money order.

    Quote Originally Posted by mc12345678 View Post
    Just so I understand correctly, you're going to troubleshoot the error message received for when an incorrect credit card is provided? Reason that is important?
    The log had
    Comm results: 60 SSL certificate problem: unable to get local issuer certificate
    which to me is not caused by an invalid cc number. Or does it???????

  10. #40
    Join Date
    Jan 2004
    Posts
    66,443
    Plugin Contributions
    279

    Default Re: V1.5.0 to 1.5.4 update. Credit Cards not showing at checkout. Only money order.

    Quote Originally Posted by QuickBooksDev View Post
    The log had
    Comm results: 60 SSL certificate problem: unable to get local issuer certificate
    which to me is not caused by an invalid cc number. Or does it???????
    No, that has nothing to do with the CC number. It's caused by the server's internal SSL Certificate Authorities (not your shared certificate) not being up-to-date. Your hosting company has to fix that.

    Try running http://your_site.com/extras/curltester.php to expose the CURL+SSL problems on your server, and let your hosting company take care of those ... that file is self-contained but will test CURL the same way ZC uses it, but without needing to run ZC to do the testing.
    .

    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 4 of 5 FirstFirst ... 2345 LastLast

Similar Threads

  1. Can check/money order option be money order only?
    By coucho in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 8 Mar 2008, 07:25 PM

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