-
1 Attachment(s)
Re: Fast and Easy Checkout for Zen Cart
On my checkout page it gives 4 options for payment
1 Busness check
2 Credit Card
3 Credit Card
4 Pay Pal
If the customer trys to use the 1st credit card option it will fail with "The credit card number must be at least 10 characters." regardless of what value are entered.
If they use the 2nd credit card option it works.
How do I get rid of the 1 option? Where do I find the code? All my modifications are in classic folders.
Here is a image of the screen I am talking about.
Thanks for your help.
Attachment 16249
-
Re: Fast and Easy Checkout for Zen Cart
doveman,
i would start by looking in the admin, Modules -> Payment and see how many payment modules are enabled.
if only three, then you have a problem with your implementation of this add-on or your template.
it sounds like the reason why you are getting that error no matter what you type in the first credit card number is because the error checking is only checking the second CC number. so you will never error out on the first. and the question is also whether it is a jquery/javascript error or a server side error.
there are many things that could be going adrift here.
good luck!
-
Re: Fast and Easy Checkout for Zen Cart
Hi,
I want to try this plugin but it does not seem to work on 1.5.5 version.
Is there any plan to update the plugin to the new zen-cart version?
Thanks for answering.
enzo
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
adb34
I have managed to get this to work with v1.5.4
You must make sure you have loaded and running 'css_js_loader' before you even think about uploading 'Fast and Easy Checkout'. Without the loader, as I can testify, Fast and Easy Checkout will not work on any version of zencart.
You can get css_js_loader, as a plugin or direct from
numinix. The only file I have found that needs to be merged is '/includes/templates/YOUR-TEMPLATE/common/html_header.php'.
Now this is the very important bit; make sure that the merger package is very good. I have used countless packages and none of them worked for the merger of this file. I found that when I did a merger and then uploaded 'html_header.php' I got a blank screen. Then I used
CompareIt.
You must do a manual merge of the files. Merge YOUR file to 'html_header.php' in 'css_js_loader' and not the other way around.
This is the way I did it and it works. You do not need to un-install 'Fast and Easy Checkout'.
If you wish to look at my 'Fast and Easy Checkout' install
go here.
I am using v1.5.4 with template carlisle fresh (with modified
stylesheet.css)
I hope this helps.
Hello adb34,
Your post is spot on!
The fec problems have more to do with the css_js_loader and specifically to the '/includes/templates/YOUR-TEMPLATE/common/html_header.php' file. Here is my problem: I am using CSS/JS Loader version 4.0.2 (which I believe is the latest one). In this release there is no '/includes/templates/YOUR-TEMPLATE/common/html_header.php' file. In the instructions step #4. It states that the following code:
<?php
/**
* load all template-specific stylesheets, named like "style*.css", alphabetically
*/
$directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), '/^style/', '.css');
while(list ($key, $value) = each($directory_array)) {
echo '<link rel="stylesheet" type="text/css" href="' . $template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css') . '/' . $value . '" />'."\n";
}
/**
* load stylesheets on a per-page/per-language/per-product/per-manufacturer/per-category basis. Concept by Juxi Zoza.
*/
$manufacturers_id = (isset($_GET['manufacturers_id'])) ? $_GET['manufacturers_id'] : '';
$tmp_products_id = (isset($_GET['products_id'])) ? (int)$_GET['products_id'] : '';
$tmp_pagename = ($this_is_home_page) ? 'index_home' : $current_page_base;
if ($current_page_base == 'page' && isset($ezpage_id)) $tmp_pagename = $current_page_base . (int)$ezpage_id;
$sheets_array = array('/' . $_SESSION['language'] . '_stylesheet',
'/' . $tmp_pagename,
'/' . $_SESSION['language'] . '_' . $tmp_pagename,
'/c_' . $cPath,
'/' . $_SESSION['language'] . '_c_' . $cPath,
'/m_' . $manufacturers_id,
'/' . $_SESSION['language'] . '_m_' . (int)$manufacturers_id,
'/p_' . $tmp_products_id,
'/' . $_SESSION['language'] . '_p_' . $tmp_products_id
);
while(list ($key, $value) = each($sheets_array)) {
//echo "<!--looking for: $value-->\n";
$perpagefile = $template->get_template_dir('.css', DIR_WS_TEMPLATE, $current_page_base, 'css') . $value . '.css';
if (file_exists($perpagefile)) echo '<link rel="stylesheet" type="text/css" href="' . $perpagefile .'" />'."\n";
}
/**
* custom category handling for a parent and all its children ... works for any c_XX_XX_children.css where XX_XX is any parent category
*/
$tmp_cats = explode('_', $cPath);
$value = '';
foreach($tmp_cats as $val) {
$value .= $val;
$perpagefile = $template->get_template_dir('.css', DIR_WS_TEMPLATE, $current_page_base, 'css') . '/c_' . $value . '_children.css';
if (file_exists($perpagefile)) echo '<link rel="stylesheet" type="text/css" href="' . $perpagefile .'" />'."\n";
$perpagefile = $template->get_template_dir('.css', DIR_WS_TEMPLATE, $current_page_base, 'css') . '/' . $_SESSION['language'] . '_c_' . $value . '_children.css';
if (file_exists($perpagefile)) echo '<link rel="stylesheet" type="text/css" href="' . $perpagefile .'" />'."\n";
$value .= '_';
}
/**
* load printer-friendly stylesheets -- named like "print*.css", alphabetically
*/
$directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), '/^print/', '.css');
sort($directory_array);
while(list ($key, $value) = each($directory_array)) {
echo '<link rel="stylesheet" type="text/css" media="print" href="' . $template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css') . '/' . $value . '" />'."\n";
}
/**
* load all site-wide jscript_*.js files from includes/templates/YOURTEMPLATE/jscript, alphabetically
*/
$directory_array = $template->get_template_part($template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'jscript'), '/^jscript_/', '.js');
while(list ($key, $value) = each($directory_array)) {
echo '<script type="text/javascript" src="' . $template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/' . $value . '"></script>'."\n";
}
/** CDN for jQuery core **/
?>
<script>window.jQuery || document.write('<script src="//code.jquery.com/jquery-1.11.1.min.js"><\/script>');</script>
<script>window.jQuery || document.write('<script src="<?php echo $template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'jscript'); ?>/jquery.min.js"><\/script>');</script>
<?php
/**
* load all page-specific jscript_*.js files from includes/modules/pages/PAGENAME, alphabetically
*/
$directory_array = $template->get_template_part($page_directory, '/^jscript_/', '.js');
while(list ($key, $value) = each($directory_array)) {
echo '<script type="text/javascript" src="' . $page_directory . '/' . $value . '"></script>' . "\n";
}
/**
* load all site-wide jscript_*.php files from includes/templates/YOURTEMPLATE/jscript, alphabetically
*/
$directory_array = $template->get_template_part($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'jscript'), '/^jscript_/', '.php');
while(list ($key, $value) = each($directory_array)) {
/**
* include content from all site-wide jscript_*.php files from includes/templates/YOURTEMPLATE/jscript, alphabetically.
* These .PHP files can be manipulated by PHP when they're called, and are copied in-full to the browser page
*/
require($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/' . $value); echo "\n";
}
/**
* include content from all page-specific jscript_*.php files from includes/modules/pages/PAGENAME, alphabetically.
*/
$directory_array = $template->get_template_part($page_directory, '/^jscript_/');
while(list ($key, $value) = each($directory_array)) {
/**
* include content from all page-specific jscript_*.php files from includes/modules/pages/PAGENAME, alphabetically.
* These .PHP files can be manipulated by PHP when they're called, and are copied in-full to the browser page
*/
require($page_directory . '/' . $value); echo "\n";
}
// DEBUG: echo '<!-- I SEE cat: ' . $current_category_id . ' || vs cpath: ' . $cPath . ' || page: ' . $current_page . ' || template: ' . $current_template . ' || main = ' . ($this_is_home_page ? 'YES' : 'NO') . ' -->';
?>
Should be replaced by this code:
<?php
/**
* load the loader files
*/
$RC_loader_files = array();
if($RI_CJLoader->get('status') && (!isset($Ajax) || !$Ajax->status())){
$RI_CJLoader->autoloadLoaders();
$RI_CJLoader->loadCssJsFiles();
$RC_loader_files = $RI_CJLoader->header();
foreach($RC_loader_files['meta'] as $file) {
include($file['src']);
echo "\n";
}
foreach($RC_loader_files['css'] as $file){
if($file['include']) {
include($file['src']);
} else if (!$RI_CJLoader->get('minify_css') || $file['external']) {
//$link = $file['src'];
echo '<link rel="stylesheet" type="text/css" href="'.$file['src'] .'" />'."\n";
} else {
//$link = 'min/?f='.$file['src'].'&'.$RI_CJLoader->get('minify_time');
echo '<link rel="stylesheet" type="text/css" href="min/?f='.$file['src'].'&'.$RI_CJLoader->get('minify_time').'" />'."\n";
}
}
}
//DEBUG: echo '<!-- I SEE cat: ' . $current_category_id . ' || vs cpath: ' . $cPath . ' || page: ' . $current_page . ' || template: ' . $current_template . ' || main = ' . ($this_is_home_page ? 'YES' : 'NO') . ' -->';
?>
So when I do that the css_js_loader and fec work but it messes up my responsive_sheffield_blue Version 2.0.
The arrows in the header menu disappear, the drop downs do not work, some "back buttons" goto the wrong page and the responsive template on a phone is completely messed up.
If I restore the original html_header.php file from the template, the template goes back to being a-ok but fec doesn't work.
Here is my current:
zen cart V 1.54
Responsive_Sheffield_Blue V 2.0
CSS/JS Loader V 4.0.2
Fast and Easy Checkout (FEC) V 2.1.8
I can see that following the instructions Step #4 in the Numinix Instructions doesn't work for the Responsive_sheffield_blue template.
I have left mysite, (http://religious-shop.com) with the template broken and fec working.
Could you or someone else like Anne from Picaflor, Diva Vocals, etc. be of some help here?
If anyone would like to tackle this problem paid or not please PM Me.
-
Re: Fast and Easy Checkout for Zen Cart
For those who do not wish to install css js loader.
Here is my hack to bypass it.
Using zen cart version 1.5.5 with paypal module
Steps as below:
1) When install, do not overwrite catalog/your_admin/configuration.php
2) CSS
In catalog/includes/templates/your_template/css
copy fec_global.css content into
fec_confirmation.css
no_account.css
checkout.css
logon.css
3) Edit catalog/includes/modules/pages/fec_confirmation/jscript_main.php add
function onePage() {
document.fec_confirmation.submit();
return true;
}
before ending:
//--></script>
4) create a new file catalog/includes/modules/pages/fec_confirmation/on_load_fec_init.js with content:
onePage();
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
yapliren
For those who do not wish to install css js loader.
Here is my hack to bypass it.
Using zen cart version 1.5.5 with paypal module
Steps as below:
1) When install, do not overwrite catalog/your_admin/configuration.php
2) CSS
In catalog/includes/templates/your_template/css
copy fec_global.css content into
fec_confirmation.css
no_account.css
checkout.css
logon.css
3) Edit catalog/includes/modules/pages/fec_confirmation/jscript_main.php add
function onePage() {
document.fec_confirmation.submit();
return true;
}
before ending:
//--></script>
4) create a new file catalog/includes/modules/pages/fec_confirmation/on_load_fec_init.js with content:
onePage();
Hello Yapliren,
Thanks for your response. Before I try this do you have any comment about doing it on Zen Cart Version 1.54
Thanks,
Frank
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
fjbern1943
Hello Yapliren,
Thanks for your response. Before I try this do you have any comment about doing it on Zen Cart Version 1.54
Thanks,
Frank
does not affect any core file, should not be no issue on other versions.
I am using FEC 2.1.8
-
Re: Fast and Easy Checkout for Zen Cart
Using Zencart 1.5.4 and FEC v 2.1.4 - I am unable to get the Paypal Website Payments Pro (in Payflow UK mode) working at checkout - it seems to only defualt to the usal express checkout no matter what and does not display the credit card entry info one would expect.
Is there changes that I need to make to enable the zencart website payment pro payflo credit card capture fields please?
Thanks
-
Re: Fast and Easy Checkout for Zen Cart
Hey! So I have the Gift Message box enabled for checkout. It appears normally on the checkout page but whatever gets inputted into it doesn't carry over to the order when I view the order through the admin portal. I'm running ZenCart 1.5.4 and FEC 2.1.2. Anybody have any ideas on where I should look to fix this? This is my site: www.camppacs.com
Any help is appreciated!!
-
Re: Fast and Easy Checkout for Zen Cart
I'm afraid I'm not following all the way. Did you upload all the fec files and then make those edits? Or did you cherry pick your uploads?
-
Re: Fast and Easy Checkout for Zen Cart
Nevermind I figured it out.
-
Re: Fast and Easy Checkout for Zen Cart
Hi
I'm using 1.5.5 and having trouble installing the Fast and Easy Checkout. I've already installed the CSS/JS loader. It's set to false for both minify options.
I get the blank screen when I go to the Fast and Easy screen with just the "General" "Layout" and "Guest Checkout" with Save and cancel below it. No options and nothing when I click on the boxes. I've tried the uninstall suggestion, and I've also attempted a second install on a clean version of 1.5.5. Nothing has worked.
Suggestions would be much appreciated.
MySQL 5.5.45
PHP Version: 5.4.45
-
Re: Fast and Easy Checkout for Zen Cart
Blank screen implies some type of PHP-generated message waiting for you in your /logs folder; see this post for additional information.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
lat9
Blank screen implies some type of PHP-generated message waiting for you in your /logs folder; see
this post for additional information.
I don't have any error logs for this issue. I checked and the permissions are good for the directory. Any thoughts?
http://designsbylisasmith.com/zen-cart-v155/
-
Re: Fast and Easy Checkout for Zen Cart
I found a newer version of FEC (2.1.8).
My log after I installed it reads: [23-Jun-2016 20:18:55 UTC] Request URI: /zen-cart-v155/thiRd-EMP-Brick/configuration.php?gID=32, IP address: 208.102.139.70
#1 trigger_error() called at [/home/dblisasmith/public_html/zen-cart-v155/includes/functions/plugin_support.php:68]
#2 plugin_version_check_for_updates() called at [/home/dblisasmith/public_html/zen-cart-v155/thiRd-EMP-Brick/includes/init_includes/init_css_js_loader_config.php:79]
#3 require(/home/dblisasmith/public_html/zen-cart-v155/thiRd-EMP-Brick/includes/init_includes/init_css_js_loader_config.php) called at [/home/dblisasmith/public_html/zen-cart-v155/includes/autoload_func.php:48]
#4 require(/home/dblisasmith/public_html/zen-cart-v155/includes/autoload_func.php) called at [/home/dblisasmith/public_html/zen-cart-v155/thiRd-EMP-Brick/includes/application_top.php:171]
#5 require_once(/home/dblisasmith/public_html/zen-cart-v155/thiRd-EMP-Brick/includes/application_top.php) called at [/home/dblisasmith/public_html/zen-cart-v155/thiRd-EMP-Brick/configuration.php:12]
[23-Jun-2016 20:18:55 UTC] PHP Notice: CURL error checking plugin versions: 28:Connection timed out after 9000 milliseconds
Trying file_get_contents() instead. in /home/dblisasmith/public_html/zen-cart-v155/includes/functions/plugin_support.php on line 68
Any help would be greatly appreciated. Thanks Jeff
-
Re: Fast and Easy Checkout for Zen Cart
FEC 2.1.8 is NOT compatible with 1.5.5 as far as I can tell.
The onl way to make it work with 1.5.5 implies lot of code hacking.
Also css is deeply involved in integrating FEC in the latest version fo zen cart.
This plug in is written with the clear objective to attract customers for the paied version so it is not easy to make it work.
My 2 cents.
ciao ciao
-
Re: Fast and Easy Checkout for Zen Cart
Like many others apparently, I am trying to get FEC to work on my newly upgraded 1.5.5 install (from 1.3.9). CSS/JS loader seems to be working fine.
I have gone through a lot of this thread, some people seem to have it working on 1.5.5 and others are saying it is just incompatible. Does anyone have any further information about FEC and Zen 1.5.5? I tried FEC 2.1.4 and 2.1.8.
Currently (with 2.1.8) FEC config shows up in the admin menu, but doesn't seem to be loading up completely:
Attachment 16465
My error logs are empty, so I don't even know where to begin.
PHP 5.4.43 (Zend: 2.4.0)
MySQL 5.5.42-37.1-log
-
Re: Fast and Easy Checkout for Zen Cart
Hoping someone can help..
When someone uses Guest Checkout they fill in all the forms and press the continue checkout ,but it fails with the State/county option as although it is not set to drop down to begin with it then asks for the county to be chosen from the drop down menu that I used to have of counties ..I have recently changed this as a lot of customers were fussy due to their county missing from list so I changed it to make the state option to be filled by customer..
I have customer details as config/State - Always display as pulldown? = False
-
Re: Fast and Easy Checkout for Zen Cart
Sorry just to add ..If I fill in the correct state in the box it passes ,but as soon as they put something in that's different it fails
-
Re: Fast and Easy Checkout
Hi,
I'm getting problem in installing fast and easy checkout. I've followed the steps. I've renamed the folders and copy paste the folders into my root directory.
My Admin panel is not working anymore. I'm getting this error. "WARNING: An Error occurred, please refresh the page and try again."
Also I didn't find install.sql file in the package that you've mentioned. Where can I get this file?
Looking forward to hear from you soon.
Regards,
Rizwan Saleem
-
Re: Need Help with 500 Internal Error on Guest Checkout
This isn't my first time using it, I have been getting copies of the welcome emails from customers that don't use an account, so I know that some people have gotten through. I get a lot of people abandoning orders after I know they've at least entered all their address info (after I get a copy of their welcome email, there are not forthcoming sales), so I'm wondering now if they get an error later possibly....
Thanks!
-
Re: Fast and Easy Checkout
I am reposting this from General Questions because someone gave me the link to this forum :)
Hello, I am using FEC with Zen Cart v1.5.4, and have Guest Checkout activated. I just happened to test it today, and when I add something to the cart and choose continue as a guest, it goes straight to a 500 Error for this page: /store/index.php?main_page=no_account
Any ideas?
Thanks!!
-
Re: Fast and Easy Checkout
Please disregard, this wasn't an issue with FEC, I'd removed some text from /includes/languages/english/no_account.php so that the email that customers received would be changed, and I'd messed up, fixed it now :)
-
Re: Fast and Easy Checkout for Zen Cart
hello,I just have a question,I used responsive_apparel_boutique with zen cart,how to install Fast and Easy Check out?it will change the responsive_apparel_boutique appear?thanks
-
Re: Fast and Easy Checkout for Zen Cart
We have a mixture of products that are free shipping (for ground only) and those that have to have shipping added. I received an order on Tuesday that was to be expedited. It did not charge any additional shipping. Where would I find the code that handles these situation? I looked and can't seem to find it anywhere.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
Doveman
We have a mixture of products that are free shipping (for ground only) and those that have to have shipping added. I received an order on Tuesday that was to be expedited. It did not charge any additional shipping. Where would I find the code that handles these situation? I looked and can't seem to find it anywhere.
FEC loads your existing shipping modules, so you will need to look at the code for those modules. Zen Cart treats free shipping items as 0 weight which causes carrier calculated methods to undercharge on shipping these items. However, it shouldn't be coming up as $0, so there is some other customization happening.
Zen Cart should get rid of treating free shipping items as 0 weight and instead simply offer a free shipping method if all items in the cart are free shipping. Basically only a single shipping module should be affected, the free shipping module, and all other modules should work normally.
-
Re: Fast and Easy Checkout
Quote:
Originally Posted by
rizwan157
Hi,
I'm getting problem in installing fast and easy checkout. I've followed the steps. I've renamed the folders and copy paste the folders into my root directory.
My Admin panel is not working anymore. I'm getting this error. "WARNING: An Error occurred, please refresh the page and try again."
Also I didn't find install.sql file in the package that you've mentioned. Where can I get this file?
Looking forward to hear from you soon.
Regards,
Rizwan Saleem
There is no install.sql mentioned in the documentation. A few years ago we added a self-installer to FEC so all of the database entries are handled by PHP. An uninstall.sql file is provided for removing those entries after the installer files have been deleted (or it'll reinstall itself).
Whenever you see an error message like that on screen, or a blank white page, it means there was a fatal error. Sometimes a white screen can happen if there is a server error happening at the Apache level (in that case, contact your host). For the fatal PHP error, if Zen Cart was able to run at all, it would have created an error log file inside your /logs/ directory. Retrieve the file created at the time of the error and that will point you in the right direction. If there is no error log produced by Zen Cart, it will hopefully have been created by Apache. If you have full access to the server, track down the Apache error logs and read the error, or contact your host for assistance.
-
Re: Fast and Easy Checkout
Hello, I have a problem with my Zen Cart checkout, I think caused by FEC. This seems to have started in the last week or so, what's really odd is it effects both my zen carts using FEC...one I haven't touched / worked on for ages. So I thought it was a server issue first. I've since moved an installation to a new server but same error....
Add product to cart > checkout / login > once logged in click check out again then...
ERR_TOO_MANY_REDIRECTS / This page is not redirecting properly etc
That is when URL = index.php?main_page=checkout if I append it to this:
index.php?main_page=checkout&fecaction=null
It works ok!?
Deactivate FEC = checkout works fine BUT clicking log off gives same redirect error.
Deactivate Easy Sign-Up and Login = clicking log off still give's redirect error.
Any ideas would be greatly appreciated, so close to finishing this site but this error is driving me mad! :huh:
Thanks :)
URL: http://bboylaces-dev2.propersafe.net/
Zen Version 1.5.5d
FEC 2.1.4
-
Re: Fast and Easy Checkout
Quote:
Originally Posted by
teaj
Hello, I have a problem with my Zen Cart checkout, I think caused by FEC. This seems to have started in the last week or so, what's really odd is it effects both my zen carts using FEC...one I haven't touched / worked on for ages. So I thought it was a server issue first. I've since moved an installation to a new server but same error....
Add product to cart > checkout / login > once logged in click check out again then...
ERR_TOO_MANY_REDIRECTS / This page is not redirecting properly etc
That is when URL = index.php?main_page=checkout if I append it to this:
index.php?main_page=checkout&fecaction=null
It works ok!?
Deactivate FEC = checkout works fine BUT clicking log off gives same redirect error.
Deactivate Easy Sign-Up and Login = clicking log off still give's redirect error.
Any ideas would be greatly appreciated, so close to finishing this site but this error is driving me mad! :huh:
Thanks :)
URL:
http://bboylaces-dev2.propersafe.net/
Zen Version 1.5.5d
FEC 2.1.4
Is there a difference if you upgrade to version 2.1.10? 2.1.4 was release in September 2015.
-
Re: Fast and Easy Checkout
Thanks but I couldn't find a solution and decided to use the one-page-checkout plugin instead.
-
Re: Fast and Easy Checkout
I just tried to install Fast and Easy Checkout in Zencart 155e using Westminster_new template. I must have missed something because it does not give me the option of a quick checkout.
My question: is there supposed to be a sql file to add? All I can find in the plugin is a folder named uninstall sql file.
-
Re: Fast and Easy Checkout
Quote:
Originally Posted by
Maynards
I just tried to install Fast and Easy Checkout in Zencart 155e using Westminster_new template. I must have missed something because it does not give me the option of a quick checkout.
My question: is there supposed to be a sql file to add? All I can find in the plugin is a folder named uninstall sql file.
The module should auto-install. Be sure you copied, and merged al the files.
-
Re: Fast and Easy Checkout
Quote:
Originally Posted by
Design75
The module should auto-install. Be sure you copied, and merged al the files.
Thanks but I did that 3 times now.
I cannot seem to get past step 1 of the checkout process and in the admin/configuration/fast & easy checkout page, none of the tabs (general,layout,guest checkout) work.
-
Re: Fast and Easy Checkout
So if you do see admin/configuration/fast & easy checkout in your admin? This would indicate that the installer ran, and all the database entries are there.
I am going to download the latest package of the mod, and see if there is anything wrong with it.
Quote:
Originally Posted by
Maynards
Thanks but I did that 3 times now.
I cannot seem to get past step 1 of the checkout process and in the admin/configuration/fast & easy checkout page, none of the tabs (general,layout,guest checkout) work.
-
Re: Fast and Easy Checkout
Quote:
Originally Posted by
Design75
So if you do see admin/configuration/fast & easy checkout in your admin? This would indicate that the installer ran, and all the database entries are there.
I am going to download the latest package of the mod, and see if there is anything wrong with it.
Thanks,
I don't know exactly how this plugin works other than that I just cannot get past step 1 of the checkout.
-
Re: Fast and Easy Checkout
I went to Numinix Fast & Easy Checkout website and notice that the picture they post on step one of the checkout page looks nothing like the step one page that I am getting. Any advice on what I did wrong would be appreciated.
-
Re: Fast and Easy Checkout
Can someone help me with is probably a stupid question. I am still working on the plugin called fast and easy checkout. The directions say to Download and install CSS JS Loader. Where exactly are these files and where exactly do I up load them to????
-
Re: Fast and Easy Checkout
The FEC specifications do not indicate that it has been tested and verified to work with ZenCart 1.5.5x.
You aren't trying to install both FEC and OPC, are you?
-
Re: Fast and Easy Checkout
Quote:
Originally Posted by
RixStix
The FEC specifications do not indicate that it has been tested and verified to work with ZenCart 1.5.5x.
You aren't trying to install both FEC and OPC, are you?
I did try to install just the FEC, that did not work then I tried to install the OPC which did not work either. I did make a backup of my site which I think I will install after I delete the current one on my server.
Yesterday I did a live chat with NUMINIX about the FEC and they said it would work fine on my westminster_new template using zencart 155e. The problem is that I do not know what they mean when they say to Download and install CSS JS Loader first. Maybe this is the problem.
-
Re: Fast and Easy Checkout
-
Re: Fast and Easy Checkout
Quote:
Originally Posted by
RixStix
Thanks, its starting to make sense now. I did not know there was another plugin to install first called this. I did not see anything about this in the FEC instructions. I will give it a try.
-
Re: Fast and Easy Checkout
Sometimes there can be a huge difference in "Should Work" and actually "Does work". Good luck.
-
Re: Fast and Easy Checkout
Quote:
Originally Posted by
Maynards
Can someone help me with is probably a stupid question. I am still working on the plugin called fast and easy checkout. The directions say to Download and install CSS JS Loader. Where exactly are these files and where exactly do I up load them to????
see: https://www.zen-cart.com/downloads.php?do=file&id=1774 .
-
Re: Fast and Easy Checkout
I started out with a fresh copy of my site on the server. I uploaded CSS/JS Loader to my site then uploaded FEC plugin. Still does not work
In the admin/configuration/fast and easy checkout, the 3 tabs (general | layout | guest checkout) are not functional. There are no debug files on the logs folder.
My Site: http://www d o t maynardstackle.com / zencart155e / zencart155e/
any ideas would be appreciated.
-
Re: Fast and Easy Checkout
Quote:
Originally Posted by
Maynards
I did try to install just the FEC, that did not work then I tried to install the OPC which did not work either. I did make a backup of my site which I think I will install after I delete the current one on my server.
Yesterday I did a live chat with NUMINIX about the FEC and they said it would work fine on my westminster_new template using zencart 155e. The problem is that I do not know what they mean when they say to Download and install CSS JS Loader first. Maybe this is the problem.
Quote:
Originally Posted by
RixStix
Quote:
Originally Posted by
Maynards
Thanks, its starting to make sense now. I did not know there was another plugin to install first called this. I did not see anything about this in the FEC instructions. I will give it a try.
BE SURE TO MAKE A COMPLETE BACKUP OF ALL your PHP/etc files before installing CSS/JS Loader plugin. It changes so many core template components that future upgrades are painful. I've wasted dozens of hours on dozens of sites that installed that crap, that now I always yank it out. It makes everything unnecessarily complex for little to no added value. Your mileage may vary.
Quote:
Originally Posted by
RixStix
Sometimes there can be a huge difference in "Should Work" and actually "Does work". Good luck.
Exactly.
-
Re: Fast and Easy Checkout
Thanks everyone for your input on this topic both publicly and privately. I will not mess with this. It's just not worth the headache.
-
Re: Fast and Easy Checkout
for those of you that use this plugin, there is an incompatibility if you decide to make the move to php7.0. you can see the problem here:
http://php.net/manual/en/migration70...dling.indirect
there are 2 scripts that would need to get changed:
includes/modules/pages/checkout/header_php.php
includes/modules/pages/fec_confirmation/header_php.php
you would need to change all instances of:
$$_SESSION['payment']
to
${$_SESSION['payment']}
this change will also make the code backwards compatible with 5.6.
best.
-
Re: Fast and Easy Checkout
Having an issue where when a customer returns and attempts to use the guest checkout, but they already have an account with us from a previous traditional checkout, it throws and error and tells the customer to log on (" Our system already has a record of that email address - please try logging in with that email address. If you do not use that address any longer you can correct it in the My Account area.") which defeats the purpose of a guest account.
Is there a way around this?
-
Re: Fast and Easy Checkout
Quote:
Originally Posted by
nightdesigns
Having an issue where when a customer returns and attempts to use the guest checkout, but they already have an account with us from a previous traditional checkout, it throws and error and tells the customer to log on (" Our system already has a record of that email address - please try logging in with that email address. If you do not use that address any longer you can correct it in the My Account area.") which defeats the purpose of a guest account.
Is there a way around this?
well, in looking at the code, it does "seem" to be an easy way around this. you can just comment out the error check. in:
includes/modules/fec_create_account.php
change from:
Code:
if ($check_email->fields['total'] > 0) {
$error = true;
$messageStack->add_session('login', ENTRY_EMAIL_ADDRESS_ERROR_EXISTS);
}
// TO:
/*
if ($check_email->fields['total'] > 0) {
$error = true;
$messageStack->add_session('login', ENTRY_EMAIL_ADDRESS_ERROR_EXISTS);
}
*/
it does "look" like the code already takes into account an update v insert later in the module. although i provide no warranty as to this actually working.
on another note, the error message is pretty lame. if you do not have the password or access to that email address, how can you change it in the my accounts area?
good luck!
-
Re: Fast and Easy Checkout
Quote:
Originally Posted by
carlwhat
well, in looking at the code, it does "seem" to be an easy way around this. you can just comment out the error check.
Turns out it's not that file but the /modules/quickcheckout.php which disables the error. You can disable the error and continue on a checkout, but it essentially creates a new account on top of the old customer ID info (by matching email address) replacing all of the existing customer info with new, including password.
-
Re: Fast and Easy Checkout
Could someone please refresh my memory .. On my last page of checkout where you confirm your order , I need to make the left side slightly wider as I use the split page option , it is giving a sub total and price of say £19.9 when it should be £19.99... I have done it before but for the life of me can't find the post again as it was about 4 years ago I last had to do it , I'm pretty sure you just adjust the split pages ....thanks
-
Re: Fast and Easy Checkout for Zen Cart
I've just installed the latest version of FEC sourced from the numinix.com website on a fresh ZC 1.5.5e. At the top of the checkout page I get the warnings
WARNING: Could not locate language file: includes/languages/english/modules/order_total/ot_bogo.php
.../ot_sc.php
.../ot_reward_points.php
.../ot_reward_points_display.php
I am upgrading from 1.5.0 and so there are records in the database for existing store credits and reward points from the store credit and reward points module also by numinix, but nothing about "bogo". I have searched the FEC file set and can find no mention of these items. I am wondering how I can eliminate the warnings. I plan to leave the customer's store credits and rewards records in the database hoping that there may again be a free store credit and reward points released by numinix for 1.5.5. I see that there's a module now on the numinix website for $8 per month, but I'm gonna have to pass on that for now.
So... to get rid of those warnings...?
Thank You,
John
-
Re: Fast and Easy Checkout for Zen Cart
**Correction** In my 1.5.0 installation I have been using the store credit module (store_credit.php 4 2008-10-25 23:24:35Z) by numinix and the reward module by Andrew Moore.
-
Re: Fast and Easy Checkout for Zen Cart
I seem to have the warnings resolved by installing the reward points module. still not sure why, but that did it. However - I've now noticed another issue. When I enter a coupon or gift certificate code and click update it goes straight to processing which of course shouldn't happen, but the order doesn't go through. It just sits there processing.
Any help is greatly appreciated.
Thank You, John
-
Re: Fast and Easy Checkout for Zen Cart
I have the Fast and Easy Checkout Installed on slayitqueen.com with Zen Cart 1.5.5e and PHP7 on a new site. I have one page checkout and COWOA enabled and payment module works but I have a few problems with fec, I know nothing about coding but trying to learn php now.
1. Blank page on mobile.... main_page=no account, nothing in the debug log. Tried some things suggested on page 207 of this thread but I could not get it to work or did it wrong. I know its not responsive but shouldn't I get more than a blank page?
2. The PayPal button on the checkout page above the credit card option and details does not work in (main_page=checkout&fecaction=null) and seems unconnected, but the other PayPal button that I enabled in the shopping cart works fine. Could not find any info on this in this thread.
3. You cant use the same email twice to go through guest checkout or you get this message:
"Our system already has a record of that email address - please try logging in with that email address. If you do not use that address any longer you can correct it in the My Account area." Customers have no password if they checkout as guests. Tried the suggestion on page 215 that you can just comment out the error check in modules/quickcheckout.php but I don't know exactly what to comment out as it does not go into detail.
Any help would be greatly appreciated.
-
Re: Fast and Easy Checkout for Zen Cart
I can't help with one and two but 3 is an option setting.
There is an option to create a new account when a Guest checks out.
You have to turn that option off.
-
Re: Fast and Easy Checkout for Zen Cart
That was already done.
Checkout Without Account is set to true.
Checkout Without Account Only is set to true.
But it still logs you in after entering billing details and problem remains.
So seems the option setting is not the problem.
Thanks for the suggestion.
-
Re: Fast and Easy Checkout for Zen Cart
I'll answer some of my own questions , now I have them sort of figured out.
1. Check the log files more carefully.
2. Its not a PayPal button, just a radio button, but its confusing to the customers. You have a choice of images in paypalwpp.php and you can just comment out the current confusing image (That looks like a button) and un-comment another of your choice.
3. Its a known issue, and must be lurking somewhere in the forums. You need to go into the /includes/modules/[insert_your_custom_template_directory_here]/fec_create_account.php and remove and COWOA_account != 1"; I believe.
-
Re: Fast and Easy Checkout for Zen Cart
I am running this Mod and it worked like a charm, all the sudden i get an email from a customer telling me that they can not pass the first step, i created a thread that have more detail, you can see it here
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
bumba000
I seem to have the warnings resolved by installing the reward points module. still not sure why, but that did it. However - I've now noticed another issue. When I enter a coupon or gift certificate code and click update it goes straight to processing which of course shouldn't happen, but the order doesn't go through. It just sits there processing.
Any help is greatly appreciated.
Thank You, John
Sounds like there is probably a browser console error possibly due to a JavaScript compatibility issue.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
TamyA
I am running this Mod and it worked like a charm, all the sudden i get an email from a customer telling me that they can not pass the first step, i created a thread that have more detail, you can see it
here
TamyA, I replied in your thread.
-
Re: Fast and Easy Checkout for Zen Cart
I'm running 1.15.3, and recently our robot checker/CAPTCHA box has disappeared from our Create an Account page. In the admin configs, there isn't an option to turn off or on the CAPTCHA, and despite it missing, if you try to create an account, it says that you have to check the anti-bot box first... which is now impossible. I've tried updating to the most recent version, and now when I go to the configs page, all I get is a box that has FAST AND EASY CHECKOUT CONFIG, and under that, 3 boxes that say General, Guest, and Login, and under that Save and Cancel. That's it. no options or anything. When I go and try to make an account, I no longer get the "please check the box", but instead it just cycles back to the same login page, and doesn't say anything new. None of this triggers an error report either, so I have no idea what is going wrong. I followed the install/update instructions completely, including the php overwrites/edits.
-
1 Attachment(s)
Re: Fast and Easy Checkout for Zen Cart
*Edit to last post*
Attachment 17824
This is the only thing I get when I go to the config page.
-
Re: Fast and Easy Checkout for Zen Cart
Does this module work in zc 1.5.6? My checkout payment options are not showing up after an upgrade.
-
Fast and Easy Checkout for 1.5.5f?
I'm running v1.5.5f. Added the FEC plugin. When customer uses the guest checkout option, they receive an error that instructs them to refresh and they get the same error. Each time, the charge is registered through Paypal and they are charged however the order never makes it through to admin. The plugin installed smoothly and everything appears to work properly except this aspect. I disable the checkout without creating an account and all is well sans the easy checkout. Curious if this is unique to me or if others have had the issue? Thanks!
-
Re: Fast and Easy Checkout for 1.5.5f?
I am currently using fast and easy checkout.
For some reason I am having trouble getting the out of stock to show throughout the checkout process. I am only seeing it on the cart page.
/includes/templates/theme871/templates/tpl_checkout_stacked.php
On fast and easy checkout On the page given above I have
Code:
<?php if ($flagAnyOutOfStock) { ?>
<?php if (STOCK_ALLOW_CHECKOUT == 'true') { ?>
<div class="messageStackError"><?php echo OUT_OF_STOCK_CAN_CHECKOUT; ?></div>
<?php } else { ?>
<div class="messageStackError"><?php echo OUT_OF_STOCK_CANT_CHECKOUT; ?></div>
<?php } //endif STOCK_ALLOW_CHECKOUT ?>
<?php } //endif flagAnyOutOfStock ?>
Code:
<td class="cartProductDisplay" colspan="2"><?php echo $order->products[$i]['name']; ?>
<?php echo $stock_check[$i]; ?>
Seems to be the same piece code on the default as in the fast and easy checkout. But for some reason it does not want to show (item is out of stock).
Anyone have any ideas on how to get the out of stock to show throughout the entire checkout process
-
Re: Fast and Easy Checkout for 1.5.5f?
I installed this on a 1.5.6c cart using the Square payment module. Now the credit card fields do not display. If I disable FEC they do display. Anyone else having this issue or using Square successfully?
-
Re: Fast and Easy Checkout for 1.5.5f?
Quote:
Originally Posted by
jeking
I installed this on a 1.5.6c cart using the Square payment module. Now the credit card fields do not display. If I disable FEC they do display. Anyone else having this issue or using Square successfully?
Here's the answer:
copy /includes/modules/pages/checkout_payment/jscript_square.php
to
/includes/modules/pages/checkout/jscript_square.php
-
Re: Fast and Easy Checkout for 1.5.5f?
how can i clean this up. i want to close the spacing.
https://jnsflooringandsupplies.com/Log_In
-
Re: Fast and Easy Checkout for 1.5.5f?
I am trying to get FEC up and running on my website. It seems to be working on the store end ... but in the Admin Area, certain setting won't update when trying to save them. You can make the change and then update and the site returns a white page and doesn't update the setting in the database. The error is being generated by a the configuration_default.php added by the FEC module.
Code:
PHP Fatal error: Uncaught Error: Call to undefined function zen_admin_demo()
Been scouring the forum for an answer have yet to find one. Thanks in advance for any help that can be offered.
Here's the full error message:
Code:
[04-Sep-2020 11:31:48 America/Los_Angeles] PHP Fatal error: Uncaught Error: Call to undefined function zen_admin_demo() in /home/*****/moonrivercardstore.com/store_NLW/admin_***/configuration_default.php:19
Stack trace:
#0 /home/*****/moonrivercardstore.com/store_NLW/admin_***/index.php(11): require()
#1 {main}
thrown in /home/*****/moonrivercardstore.com/store_NLW/admin_***/configuration_default.php on line 19
[04-Sep-2020 11:31:48 America/Los_Angeles] Request URI: /store_***/admin_***/index.php?cmd=configuration_default&gID=10&cID=244&action=save, IP address: 71.85.54.137
--> PHP Fatal error: Uncaught Error: Call to undefined function zen_admin_demo() in /home/*****/moonrivercardstore.com/store_NLW/admin_***/configuration_default.php:19
Stack trace:
#0 /home/*****/moonrivercardstore.com/store_NLW/admin_***/index.php(11): require()
#1 {main}
thrown in /home/*****/moonrivercardstore.com/store_NLW/admin_***/configuration_default.php on line 19.
We are running Zen Cart 1.5.7 with PHP 7.2.
-
Re: Fast and Easy Checkout for 1.5.5f?
Quote:
Originally Posted by
thegoodlifestore
I am trying to get FEC up and running on my website. It seems to be working on the store end ... but in the Admin Area, certain setting won't update when trying to save them. You can make the change and then update and the site returns a white page and doesn't update the setting in the database. The error is being generated by a the
configuration_default.php added by the FEC module.
Code:
PHP Fatal error: Uncaught Error: Call to undefined function zen_admin_demo()
Been scouring the forum for an answer have yet to find one. Thanks in advance for any help that can be offered.
Here's the full error message:
Code:
[04-Sep-2020 11:31:48 America/Los_Angeles] PHP Fatal error: Uncaught Error: Call to undefined function zen_admin_demo() in /home/*****/moonrivercardstore.com/store_NLW/admin_***/configuration_default.php:19
Stack trace:
#0 /home/*****/moonrivercardstore.com/store_NLW/admin_***/index.php(11): require()
#1 {main}
thrown in /home/*****/moonrivercardstore.com/store_NLW/admin_***/configuration_default.php on line 19
[04-Sep-2020 11:31:48 America/Los_Angeles] Request URI: /store_***/admin_***/index.php?cmd=configuration_default&gID=10&cID=244&action=save, IP address: 71.85.54.137
--> PHP Fatal error: Uncaught Error: Call to undefined function zen_admin_demo() in /home/*****/moonrivercardstore.com/store_NLW/admin_***/configuration_default.php:19
Stack trace:
#0 /home/*****/moonrivercardstore.com/store_NLW/admin_***/index.php(11): require()
#1 {main}
thrown in /home/*****/moonrivercardstore.com/store_NLW/admin_***/configuration_default.php on line 19.
We are running Zen Cart 1.5.7 with PHP 7.2.
The function zen_admin_demo, as identified in that log, was removed in zc157. Sounds like FEC needs an update.
-
Re: Fast and Easy Checkout for 1.5.5f?
Quote:
Originally Posted by
lat9
The function zen_admin_demo, as identified in that log, was removed in zc157. Sounds like FEC needs an update.
I am sure it does. The instructions for "TO SEE IF A CUSTOMER IS A GUEST ACCOUNT" in the Admin area definitely need to be updated as most of the coding they want you to add to or replace in admin/orders.php doesn't exist in the 1.5.7 version of that file.
I was hoping FEC was updated enough for 1.5.7 since the latest update of FEC was released (on 7/15/20) after 1.5.7 was (on 6/23/20).
-
Re: Fast and Easy Checkout for 1.5.5f?
Quote:
Originally Posted by
jeking
Here's the answer:
copy /includes/modules/pages/checkout_payment/jscript_square.php
to
/includes/modules/pages/checkout/jscript_square.php
I have this, but the above fix didn't work. Bootstrap template, maybe that's why?
-
Re: Fast and Easy Checkout for 1.5.5f?
Quote:
Originally Posted by
thegoodlifestore
I am sure it does. The instructions for "TO SEE IF A CUSTOMER IS A GUEST ACCOUNT" in the Admin area definitely need to be updated as most of the coding they want you to add to or replace in admin/orders.php doesn't exist in the 1.5.7 version of that file.
I was hoping FEC was updated enough for 1.5.7 since the latest update of FEC was released (on 7/15/20) after 1.5.7 was (on 6/23/20).
let's see about a few things here:
- php 7.0 released 12/2015; support for php 5 discontinued 1/2019
- FEC 2.4.3 released 7/2020
- FEC 2.4.3 still makes use of Old style constructors that were DEPRECATED in PHP 7.0
- IMO, anyone releasing php code in 2020 that makes use of old style constructors is pretty much a joke, and not really supporting their code.
- FEC 2.4.3 makes use of a script in includes/modules/pages/header_php.php. i am not sure when that page was removed from ZC; perhaps v138? certainly looks to predate the ZC repo on github.
hope may spring eternal; frankly i have lost hope in this module and will be looking to move to ones where there is real support that keeps up with the ZC development. this one does not seem to be in that process.
-
Re: Fast and Easy Checkout for Zen Cart
Hey All,
On a 1.5.5e with FEC 2.2.2 I have created a sort of captcha that works well during the standard checkout process.
Form field created in the tpl_modules_create_account.php and then tested for in the modules/fec_create_account.php.
I'm having some trouble with the guest checkout though. I cant figure out where the post data from tpl_modules_no_account.php is handled. I just have a form field in the file that I need to test for before the guest account is created. Your help would be greatly appreciated.
Thank you,
John
-
Re: Fast and Easy Checkout for Zen Cart
Figured it out. modules/quick_checkout.php
-
Re: Fast and Easy Checkout for Zen Cart
Someone is clinging tenaciously to the trailing edge of technology. :P