Zen Cart Logo
Forums / All Other Contributions/Addons / Fast and Easy Checkout

Fast and Easy Checkout

Views: 550,809

Results 1,741 to 1,760 of 2,177
6 Feb 2014, 6:56 AM
#1741
ideasgirl avatar

ideasgirl

Totally Zenned

Join Date:
Aug 2005
Location:
Trujillo Alto, Puerto Rico
Posts:
1,437
Plugin Contributions:
3

Fast and Easy Checkout

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:

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.
6 Feb 2014, 7:50 AM
#1742
bislewl avatar

bislewl

Totally Zenned

Join Date:
Dec 2011
Location:
Wisconsin, USA
Posts:
674
Plugin Contributions:
12

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.

6 Feb 2014, 1:16 PM
#1743
ideasgirl avatar

ideasgirl

Totally Zenned

Join Date:
Aug 2005
Location:
Trujillo Alto, Puerto Rico
Posts:
1,437
Plugin Contributions:
3

Re: Fast and Easy Checkout

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?

6 Feb 2014, 2:11 PM
#1744
bislewl avatar

bislewl

Totally Zenned

Join Date:
Dec 2011
Location:
Wisconsin, USA
Posts:
674
Plugin Contributions:
12

Re: Fast and Easy Checkout

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:

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(), '', '')
6 Feb 2014, 2:21 PM
#1745
ideasgirl avatar

ideasgirl

Totally Zenned

Join Date:
Aug 2005
Location:
Trujillo Alto, Puerto Rico
Posts:
1,437
Plugin Contributions:
3

Re: Fast and Easy Checkout

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?

6 Feb 2014, 2:27 PM
#1746
bislewl avatar

bislewl

Totally Zenned

Join Date:
Dec 2011
Location:
Wisconsin, USA
Posts:
674
Plugin Contributions:
12

Re: Fast and Easy Checkout

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

6 Feb 2014, 5:51 PM
#1747
ideasgirl avatar

ideasgirl

Totally Zenned

Join Date:
Aug 2005
Location:
Trujillo Alto, Puerto Rico
Posts:
1,437
Plugin Contributions:
3

Re: Fast and Easy Checkout

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.

7 Feb 2014, 1:10 AM
#1748
ideasgirl avatar

ideasgirl

Totally Zenned

Join Date:
Aug 2005
Location:
Trujillo Alto, Puerto Rico
Posts:
1,437
Plugin Contributions:
3

Re: Fast and Easy Checkout

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.

13 Feb 2014, 4:33 AM
#1749
jimmie avatar

jimmie

Totally Zenned

Join Date:
Jan 2013
Location:
New Port Richey, Florida
Posts:
969
Plugin Contributions:
0

Re: Fast and Easy Checkout

Couple of issues i am having. site is https://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.

13 Feb 2014, 5:45 AM
#1750
bislewl avatar

bislewl

Totally Zenned

Join Date:
Dec 2011
Location:
Wisconsin, USA
Posts:
674
Plugin Contributions:
12

Re: Fast and Easy Checkout

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.

13 Feb 2014, 5:48 AM
#1751
bislewl avatar

bislewl

Totally Zenned

Join Date:
Dec 2011
Location:
Wisconsin, USA
Posts:
674
Plugin Contributions:
12

Re: Fast and Easy Checkout

jimmie:

Couple of issues i am having. site is https://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.

I'm not completely understanding what you are trying to say but.

You will need to make you are not using the orders.php from the COWOA module as that will mess up the variables in the text email.
an if you add a drop down in Fast and Easy Checkout you will need to post that response where you would like it, it doesn't automatically appear on a page/document.

13 Feb 2014, 1:17 PM
#1752
mclovin avatar

mclovin

New Zenner

Join Date:
Feb 2014
Location:
The Netherlands
Posts:
58
Plugin Contributions:
0

Re: Fast and Easy Checkout

Hi guys,

I was hoping someone could help me out with an issue I'm having with Fast and Easy Checkout.

I've installed Fast and Easy Checkout (after installing CSS and JS Loader without any problems) and everything seems to have gone well, with one exception. When I go the the Login/Checkout page of my website the CREATE AN ACCOUNT and RETURNING CUSTOMERS sections are showing, but the GUEST CHECKOUT is missing. It looks like it's been disabled, even though I've already performed the following steps:

  1. In the Admin Panel, go to Configuration->Layout Settings and set "Use split-login page" to True.
  2. In the Admin Panel, go to Configuration->Fast and Easy Checkout Configuration and set "Easy Sign-Up and Login" to true.
  3. In the Admin Panel, go to Configuration->Fast and Easy Checkout Configuration and Enable the mod by setting "Fast and Easy Checkout" to true.

Is it possible that first I've to enable something in the Admin section?

Additional remarks:

  • I have ZC version 1.5.1
  • I have a Template Monster theme installed, but I haven't encountered any conflicts so far.
  • My website is located at www.bonesfa****shion.nl (without the asterisks).
  • CSS and JS Loader is installed
  • The Dutch language files haven't been updated yet (so some definitions are missing if you select the Dutch language).
13 Feb 2014, 6:01 PM
#1753
design75 avatar

design75

Totally Zenned

Join Date:
Dec 2009
Location:
Amersfoort, The Netherlands
Posts:
2,862
Plugin Contributions:
5

Re: Fast and Easy Checkout

McLovin:

Hi guys,

I was hoping someone could help me out with an issue I'm having with Fast and Easy Checkout.

I've installed Fast and Easy Checkout (after installing CSS and JS Loader without any problems) and everything seems to have gone well, with one exception. When I go the the Login/Checkout page of my website the CREATE AN ACCOUNT and RETURNING CUSTOMERS sections are showing, but the GUEST CHECKOUT is missing. It looks like it's been disabled, even though I've already performed the following steps:

Is it possible that first I've to enable something in the Admin section?

Additional remarks:

  • I have ZC version 1.5.1
  • I have a Template Monster theme installed, but I haven't encountered any conflicts so far.
  • My website is located at www.bonesfa****shion.nl (without the asterisks).
  • CSS and JS Loader is installed
  • The Dutch language files haven't been updated yet (so some definitions are missing if you select the Dutch language).

did you put anything in your cart?

13 Feb 2014, 6:32 PM
#1754
mclovin avatar

mclovin

New Zenner

Join Date:
Feb 2014
Location:
The Netherlands
Posts:
58
Plugin Contributions:
0

Re: Fast and Easy Checkout

Design75:

did you put anything in your cart?

:huh:

Hehe... oops...

Thank you! :D

13 Feb 2014, 8:28 PM
#1755
jimmie avatar

jimmie

Totally Zenned

Join Date:
Jan 2013
Location:
New Port Richey, Florida
Posts:
969
Plugin Contributions:
0

Re: Fast and Easy Checkout

FEC is working without modifying orders.php (i think) Can some1 check.
https://www.floorz-n-more.com
when i add in this
Open includes/classes/order.php and find:
CODE: SELECT ALL
zen_db_perform(TABLE_ORDERS, $sql_data_array);
Add before:
CODE: SELECT ALL
if ($_SESSION['COWOA']) $sql_data_array[COWOA_order] = 1; // FEAC
Find:
CODE: SELECT ALL
//intro area
$email_order = EMAIL_TEXT_HEADER . EMAIL_TEXT_FROM . STORE_NAME . "\n\n" .
$this->customer['firstname'] . ' ' . $this->customer['lastname'] . "\n\n" .
EMAIL_THANKS_FOR_SHOPPING . "\n" . EMAIL_DETAILS_FOLLOW . "\n" .
EMAIL_SEPARATOR . "\n" .
EMAIL_TEXT_ORDER_NUMBER . ' ' . $zf_insert_id . "\n" .
EMAIL_TEXT_DATE_ORDERED . ' ' . strftime(DATE_FORMAT_LONG) . "\n" .
EMAIL_TEXT_INVOICE_URL . ' ' . zen_href_link(FILENAME_ACCOUNT_HISTORY_INFO, 'order_id=' . $zf_insert_id, 'SSL', false) . "\n\n";
Replace with:
CODE: SELECT ALL
// FEAC
// COWOA Conditional
if ($_SESSION['COWOA']) {
$invoiceInfo = EMAIL_TEXT_INVOICE_URL . ' ' . zen_href_link(FILENAME_ORDER_STATUS, 'order_id=' . $zf_insert_id . '&query_email_address=' . $this->customer['email_address'] . '&action=process', 'SSL', false) . "\n\n";
$htmlInvoiceURL = EMAIL_TEXT_INVOICE_URL_CLICK;
$htmlInvoiceValue = zen_href_link(FILENAME_ORDER_STATUS, 'order_id=' . $zf_insert_id . '&query_email_address=' . $this->customer['email_address'] . '&action=process', 'SSL', false);
} else {
$invoiceInfo=EMAIL_TEXT_INVOICE_URL . ' ' . zen_href_link(FILENAME_ACCOUNT_HISTORY_INFO, 'order_id=' . $zf_insert_id, 'SSL', false) . "\n\n";
$htmlInvoiceURL=EMAIL_TEXT_INVOICE_URL_CLICK;
$htmlInvoiceValue=zen_href_link(FILENAME_ACCOUNT_HISTORY_INFO, 'order_id=' . $zf_insert_id, 'SSL', false);
}
//intro area
$email_order = EMAIL_TEXT_HEADER . EMAIL_TEXT_FROM . STORE_NAME . "\n\n" .
$this->customer['firstname'] . ' ' . $this->customer['lastname'] . "\n\n" .
EMAIL_THANKS_FOR_SHOPPING . "\n" . EMAIL_DETAILS_FOLLOW . "\n" .
EMAIL_SEPARATOR . "\n" .
EMAIL_TEXT_ORDER_NUMBER . ' ' . $zf_insert_id . "\n\n" .
EMAIL_TEXT_DATE_ORDERED . ' ' . strftime(DATE_FORMAT_SHORT) . "\n\n";
$email_order .= $invoiceInfo;
// END FEAC
I get email text errors
where do i post the drop down info to see it

14 Feb 2014, 1:30 AM
#1756
jimmie avatar

jimmie

Totally Zenned

Join Date:
Jan 2013
Location:
New Port Richey, Florida
Posts:
969
Plugin Contributions:
0

Re: Fast and Easy Checkout

also i notice on checkout page 2/3 i lose the sides of my sideboxes?

14 Feb 2014, 1:33 AM
#1757
jimmie avatar

jimmie

Totally Zenned

Join Date:
Jan 2013
Location:
New Port Richey, Florida
Posts:
969
Plugin Contributions:
0

Re: Fast and Easy Checkout

bislewl:

I'm not completely understanding what you are trying to say but.

You will need to make you are not using the orders.php from the COWOA module as that will mess up the variables in the text email.
an if you add a drop down in Fast and Easy Checkout you will need to post that response where you would like it, it doesn't automatically appear on a page/document.
i was using a cowoa orders.php, 1st issue Now fixed.

18 Feb 2014, 6:51 AM
#1758
magz avatar

magz

Zen Follower

Join Date:
Apr 2013
Location:
north carolina
Posts:
110
Plugin Contributions:
0

Re: Fast and Easy Checkout

Hi FEC Gurus,

I'm currently testing my FEC install and love the functionality it offers, but it's not a smooth ride (partly because I'm not a programmer). I hope you can help me with the following integration issue.

While Stock by Attribute continues to work wonderfully by displaying low stock in the shopping cart as appropriate, it no longer displays it on the order confirmation page the way it did without FEC installed. I inserted the SBA code that normally resides in tpl_checkout_confirmation_default.php in the appropriate spots in tpl_fec_confirmation_default.php, tpl_checkout_stacked.php, and tpl_modules_esl_ordertotal.php, but that didn't solve the problem.

What else do I need to do to make FEC and SBA work together?

Thank you!
Magz

23 Feb 2014, 6:30 AM
#1759
bislewl avatar

bislewl

Totally Zenned

Join Date:
Dec 2011
Location:
Wisconsin, USA
Posts:
674
Plugin Contributions:
12

Re: Fast and Easy Checkout

Are you using one page checkout? If so, there is no confirmation page.

24 Feb 2014, 7:31 AM
#1760
magz avatar

magz

Zen Follower

Join Date:
Apr 2013
Location:
north carolina
Posts:
110
Plugin Contributions:
0

Re: Fast and Easy Checkout

Hi bislewl - it's the page with everything including the "confirm order" button, but never mind that now... The FEC/CJL combo was nothing but trouble for me from the beginning (likely because of my lack of coding skills). When I discovered a total of 3 broken plugins (in addition to a slew of other problems), I finally gave up on it. Installed Integrated COWOA instead - less functionality but works like a charm "out of the box" and doesn't break anything else (as far as I can tell so far). I really wish FEC had been easier to implement, that one-page checkout would have been very nice.

bislewl:

Are you using one page checkout? If so, there is no confirmation page.