Page 175 of 218 FirstFirst ... 75125165173174175176177185 ... LastLast
Results 1,741 to 1,750 of 2177
  1. #1741
    Join Date
    Aug 2005
    Location
    Trujillo Alto, Puerto Rico
    Posts
    1,546
    Plugin Contributions
    9

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by bislewl View Post
    Which version of zencart are you running? I suspect 1.3.x ?
    I'm not that person but I'm having same issue. Using 1.3.9.

    Also having following error when doing restore from MySql backup module:
    Code:
    1136 Column count doesn't match value count at row 1
    in:
    [insert into znc_configuration values ('', 'Last Database Restore', 'DB_LAST_RESTORE', 'db_affordi5_znc1-20140205233901.sql.gz', 'Last database restore file', '6', '', '', now(), '', '')]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

  2. #1742
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: Fast and Easy Checkout

    The issue is the module you are using doesn't reference the column it wants the values in try adding ,'' right before the last ) in the values. Not the correct solution but it is quick and works.

  3. #1743
    Join Date
    Aug 2005
    Location
    Trujillo Alto, Puerto Rico
    Posts
    1,546
    Plugin Contributions
    9

    Default Re: Fast and Easy Checkout

    Quote Originally Posted by bislewl View Post
    The issue is the module you are using doesn't reference the column it wants the values in try adding ,'' right before the last ) in the values. Not the correct solution but it is quick and works.
    Sorry bislewl, but where do I add that and for which issue is going to be done?
    Last edited by ideasgirl; 6 Feb 2014 at 02:16 PM. Reason: Fixing mispelling.
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

  4. #1744
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by ideasgirl View Post
    I'm not that person but I'm having same issue. Using 1.3.9.

    Also having following error when doing restore from MySql backup module:
    Code:
    1136 Column count doesn't match value count at row 1
    in:
    [insert into znc_configuration values ('', 'Last Database Restore', 'DB_LAST_RESTORE', 'db_affordi5_znc1-20140205233901.sql.gz', 'Last database restore file', '6', '', '', now(), '', '')]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
    They are not specifying which columns it should go in, usually a poor shortcut.
    Change:
    insert into znc_configuration values ('', 'Last Database Restore', 'DB_LAST_RESTORE', 'db_affordi5_znc1-20140205233901.sql.gz', 'Last database restore file', '6', '', '', now(), '', '')
    to:
    insert into znc_configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('', 'Last Database Restore', 'DB_LAST_RESTORE', 'db_affordi5_znc1-20140205233901.sql.gz', 'Last database restore file', '6', '', '', now(), '', '')

  5. #1745
    Join Date
    Aug 2005
    Location
    Trujillo Alto, Puerto Rico
    Posts
    1,546
    Plugin Contributions
    9

    Default Re: Fast and Easy Checkout for Zen Cart

    No, that didn't work. The patch went through, but when tested to do a restore after a new backup, gave me same error.

    Do you know how to solve the first problem?
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

  6. #1746
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by bislewl View Post
    Which version of zencart are you running? I suspect 1.3.x ?
    This is a bug in the module for the 1.3.x series, simple solution is to add a column to your TABLE_ADMIN called admin_profile

    What is happening is the module is design to be able to use a admins password to login however it looks for the "Super User" however that didn't exist till 1.5.0

  7. #1747
    Join Date
    Aug 2005
    Location
    Trujillo Alto, Puerto Rico
    Posts
    1,546
    Plugin Contributions
    9

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by bislewl View Post
    This is a bug in the module for the 1.3.x series, simple solution is to add a column to your TABLE_ADMIN called admin_profile

    What is happening is the module is design to be able to use a admins password to login however it looks for the "Super User" however that didn't exist till 1.5.0
    Can you give me the patch code to be added? Thanks in advance.
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

  8. #1748
    Join Date
    Aug 2005
    Location
    Trujillo Alto, Puerto Rico
    Posts
    1,546
    Plugin Contributions
    9

    Default Re: Fast and Easy Checkout for Zen Cart

    I'm having a checkout blank page.

    The module is on a site that uses multisite, but the checkout on the other 2 sites is working just fine, the problem is only on the latest one I've made.

    Zen Cart = 1.3.9h
    FEC = 1.14.2

    Firebug Debug says that checkout page is missing which I know is not since other 2 sites have NO ISSUES with checkout and I've checked maybe 10 times to see that all the files are uploaded on the templates and languages folders. I believe that it has to do with the shipping page because is not loading the shipping estimator neither.
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

  9. #1749
    Join Date
    Jan 2013
    Posts
    898
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Couple of issues i am having. site is www.floorz-n-more.com
    fec Version 1.14.2
    2nd step is to edit orders.php, When i do i get text errors in mine and customers emails.
    reverted back to Default orders.php and all seem well.

    second issue is where do i see the dropdown info after it has been selected.

  10. #1750
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by ideasgirl View Post
    I'm having a checkout blank page.

    The module is on a site that uses multisite, but the checkout on the other 2 sites is working just fine, the problem is only on the latest one I've made.

    Zen Cart = 1.3.9h
    FEC = 1.14.2

    Firebug Debug says that checkout page is missing which I know is not since other 2 sites have NO ISSUES with checkout and I've checked maybe 10 times to see that all the files are uploaded on the templates and languages folders. I believe that it has to do with the shipping page because is not loading the shipping estimator neither.
    I have installed Fast & Easy Checkout a few times on multi-site. You will need to make sure all your auto-loaders and your template files are set up correctly, along with CSS/JS loader working and using ONLY the most recent jQuery and migrate file.

 

 

Similar Threads

  1. Replies: 4
    Last Post: 25 Jan 2012, 07:37 PM
  2. Fast and Easy Checkout - Checkout Without Account not showing
    By Lee-oh in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 3 Feb 2010, 05:09 PM
  3. Go To Checkout Error - with Fast and Easy Checkout installed
    By RFree190 in forum General Questions
    Replies: 3
    Last Post: 10 Mar 2009, 07:08 AM
  4. checkout page not redirect (Fast and Easy Checkout module)
    By wowemall in forum Addon Templates
    Replies: 0
    Last Post: 27 Sep 2008, 02:36 PM
  5. Fast and Easy Checkout
    By cmes in forum General Questions
    Replies: 5
    Last Post: 15 Feb 2008, 04:07 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