Results 1 to 10 of 2177

Hybrid View

  1. #1
    Join Date
    Apr 2007
    Location
    Dayton, Ohio
    Posts
    682
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Love fast and easy checkout. One problem it hangs on this payment confirmation page: http://www.leafnovelties.com/fec_con...action/process


    Here is the last page that I see:
    Code:
    Your order is being processed, please wait...
    It does not process just stays on this page permanently. When I look in the admin panel the orders are not there. Any ideas?

  2. #2
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,569
    Plugin Contributions
    74

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by sports guy View Post
    Love fast and easy checkout. One problem it hangs on this payment confirmation page: http://www.leafnovelties.com/fec_con...action/process


    Here is the last page that I see:
    Code:
    Your order is being processed, please wait...
    It does not process just stays on this page permanently. When I look in the admin panel the orders are not there. Any ideas?
    Firstly, try not rewriting this URL. If you are unable to stop your SEF URLs module from rewriting certain pages, try disabling it and if that corrects the issue, then you would need to decide between the checkout system or your current SEF URLs module.

    Check the error console for JavaScript errors.

    Check the Live HTTP Headers to see what is happening during the submission process.

  3. #3
    Join Date
    Mar 2010
    Posts
    77
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by sports guy View Post
    Love fast and easy checkout. One problem it hangs on this payment confirmation page: http://www.leafnovelties.com/fec_con...action/process


    Here is the last page that I see:
    Code:
    Your order is being processed, please wait...
    It does not process just stays on this page permanently. When I look in the admin panel the orders are not there. Any ideas?

    I'm suffering the same problem. it came about when i attempted to upgrade the html_header file in the common directory to the latest version, why it wasn't allready the latest version i'm not sure as were currently running 139h. more details are here relating to why i had to change http://www.zen-cart.com/forum/showthread.php?t=170257

    but the new file now causes my website to stall at the "processing order page"

    THE OLD CODE WAS

    <?php
    /**
    * load the loader files
    */
    if($RI_CJLoader->get('status')){
    $directory_array = $template->get_template_part(DIR_WS_TEMPLATE.'auto_loaders', '/^loader_/', '.php');

    $loaders_check = $RI_CJLoader->get('loaders');
    if($loaders_check == '*' || count($loaders_check) > 0){
    while(list ($key, $value) = each($directory_array)) {
    /**
    * include content from all site-wide loader_*.php files from includes/templates/YOURTEMPLATE/jscript/auto_loaders, alphabetically.
    */
    if($loaders_check == '*' || in_array($value, $loaders_check))
    require(DIR_WS_TEMPLATE.'auto_loaders'. '/' . $value);
    }
    }

    $RI_CJLoader->loadCssJsFiles();
    $files = $RI_CJLoader->processCssJsFiles();
    foreach($files['css'] as $file)
    if($file['include']) include($file['string']);
    else echo $file['string'];

    foreach($files['js'] as $file)
    if($file['include']) include($file['string']);
    else echo $file['string'];
    }
    //DEBUG: echo '<!-- I SEE cat: ' . $current_category_id . ' || vs cpath: ' . $cPath . ' || page: ' . $current_page . ' || template: ' . $current_template . ' || main = ' . ($this_is_home_page ? 'YES' : 'NO') . ' -->';

    AND NEW, WHICH NO LONGER WORKS IS

    <?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";
    }

    /**
    * 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";
    }

    /**
    * 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') . ' -->';

    Since I dont know the first thing about coding I'm wondering if anyone can help?
    Thanks
    T

  4. #4
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Fast and Easy Checkout for Zen Cart

    Try updating the CJ Loader add-on. FEC needs this to run, and if you upgraded FEC, you should go ahead and grab the CJ Loader too.. (in case it TOO has changed) Google "CJ Loader" to locate the link to the download page for CJ Loader (not sure we're allowed to post the link to it on the forum)

    Quote Originally Posted by TonyB6 View Post
    I'm suffering the same problem. it came about when i attempted to upgrade the html_header file in the common directory to the latest version, why it wasn't allready the latest version i'm not sure as were currently running 139h. more details are here relating to why i had to change http://www.zen-cart.com/forum/showthread.php?t=170257

    but the new file now causes my website to stall at the "processing order page"
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  5. #5
    Join Date
    Apr 2007
    Posts
    649
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    I am having problems with the shipping updating on the final page. I have installed the last version on the loader and FEC and everything is great, with this exception.
    I see other people have the same problem but I have not found a solution yet.
    Please help, it's very frustrating for my customers.

  6. #6
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by helpme View Post
    I am having problems with the shipping updating on the final page. I have installed the last version on the loader and FEC and everything is great, with this exception.
    I see other people have the same problem but I have not found a solution yet.
    Please help, it's very frustrating for my customers.
    What version of FEC?? The version available here in the downloads is v1.8.1, the version available on the Numinix site is 1.9.3. (Latest version of the CJ Loader is 1.7)
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  7. #7
    Join Date
    Oct 2004
    Posts
    1,045
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    I installed FEC 1.9.6 on ZenCart 1.3.9h and enabled "Checkout Without Account" in Configuration.

    When I input user info on "/index.php?main_page=no_account" page, the form just refreshes itself and I can't proceed through checkout. A customer account is created though.

    Any ideas on how I can fix this? The mod worked fine at first, as soon as I installed the Ceon URI mod I started to have this problem.

  8. #8
    Join Date
    Feb 2011
    Posts
    665
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout

    ZC1.39

    Sigh......

    So tried loading this onto my local site, ran the SQL patches....

    Now I've got nothing on my main page...nada, zip, zitch.
    Nothing but a white screen.
    Any suggestions?

 

 

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

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