Jump to content

Message: " if the page is not updated in 2 seconds, please follow this link "


kentdesautel

Recommended Posts

I have the following message appearing as customers navigate our website:  " if the page is not updated in 2 seconds, please follow this link"

 

If you go to our website www.globalprintsupply.com and click on the "order history" button on the upper right hand corner you will see the message appear in your browser.

 

It pops up mainly as the customer goes through the checkout process.

 

I have searched through my code on the pages and can't seem to find where to get rid of this message.

 

If anyone knows what may be causing this please let me know.

 

Thanks,

 

Kent

Link to comment
Share on other sites

Here is the code from ORDERS.PHP

 

#

# $Id: orders.php,v 1.7.2.1 2007/03/22 13:54:23 svowl Exp $

#

 

define("NUMBER_VARS", "posted_data[total_min],posted_data[total_max],posted_data[price_min],posted_data[price_max]");

require "./auth.php";

 

require $xcart_dir."/include/remember_user.php";

 

require $xcart_dir."/include/security.php";

 

x_session_register("search_data");

 

$search_data["orders"]["customer_login"] = addslashes($login);

x_session_save("search_data");

 

if(@$mode=="subscriptions" && $active_modules["Subscriptions"])

    include $xcart_dir."/modules/Subscriptions/subscriptions.php";

else

    include $xcart_dir."/include/orders.php";

 

require $xcart_dir."/include/categories.php";

 

if($active_modules["Manufacturers"])

    include $xcart_dir."/modules/Manufacturers/customer_manufacturers.php";

 

# Assign the current location line

$smarty->assign("location", $location);

 

func_display("customer/home.tpl",$smarty);

 

 

 

Here is the code from ORDER.PHP

 

#

# $Id: order.php,v 1.7.2.1 2007/03/22 13:54:23 svowl Exp $

#

 

require "./auth.php";

 

require $xcart_dir."/include/remember_user.php";

 

require $xcart_dir."/include/security.php";

 

require $xcart_dir."/include/categories.php";

 

if($active_modules["Manufacturers"])

    include $xcart_dir."/modules/Manufacturers/customer_manufacturers.php";

 

require $xcart_dir."/include/history_order.php";

 

$smarty->assign("main","history_order");

 

# Assign the current location line

$smarty->assign("location", $location);

 

func_display("customer/home.tpl",$smarty);

?>

 

Here is the code from error_message.php

 

#

# $Id: error_message.php,v 1.6.2.3 2007/03/22 13:54:22 svowl Exp $

#

 

define ('IS_ERROR_MESSAGE', 1);

 

require "./auth.php";

require $xcart_dir."/include/categories.php";

 

if ($active_modules["Manufacturers"])

    include $xcart_dir."/modules/Manufacturers/customer_manufacturers.php";

 

include $xcart_dir."/include/error_message.php";

 

$smarty->assign("main",$error);

 

if ($error == 'error_max_order' || $error == 'error_min_order') {

x_session_register('cart');

$smarty->assign("cart",$cart);

}

#

# Assign login information

#

x_session_register("login_antibot_on");

x_session_register("antibot_err");

x_session_register("username");

$smarty->assign("username", $username);

$smarty->assign("login_antibot_on", $login_antibot_on);

if ($antibot_err) {

$smarty->assign("antibot_err", $antibot_err);

$antibot_err = false;

}

 

 

# Assign the current location line

$smarty->assign("location", $location);

 

func_display("customer/home.tpl",$smarty);

?>

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.