Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
bislewl
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.
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.
Re: Fast and Easy Checkout
Quote:
Originally Posted by
bislewl
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?
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
ideasgirl
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(), '', '')
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?
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
bislewl
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
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
bislewl
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.
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.
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.
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
ideasgirl
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.