Hi thanks for your answer...

below is the myDEBUG-adm-1528817021-296426.log's content

PHP Warning: Cannot modify header information - headers already sent by (output started at /home/tucsoncitycenter/public_html/xxx/edit_orders.php:69) in /home/tucsoncitycenter/public_html/xxx/includes/functions/general.php on line 23

and below is the general.php's 23 line

// Redirect to another page or site
function zen_redirect($url) {
global $logger;

// clean up URL before executing it
while (strstr($url, '&&')) $url = str_replace('&&', '&', $url);
while (strstr($url, '&&')) $url = str_replace('&&', '&', $url);
// header locates should not have the & in the address it breaks things
while (strstr($url, '&')) $url = str_replace('&', '&', $url);

header('Location: ' . $url); // line 23
session_write_close();
if (STORE_PAGE_PARSE_TIME == 'true') {
if (!is_object($logger)) $logger = new logger;
$logger->timer_stop();
}
exit;
}

and below is the DEBUG-update_order-1528817154-119718.log in logs/edit_orders

============================================================
= Edit Orders (4.1.4) Action Log
============================================================
Order ID: 1128
Action Requested: update_order
Enabled Order Totals: ot_subtotal;ot_shipping;ot_tax;ot_gv;ot_total


can you guess what the problem is on my website?

and if i give you my website's info...can you check for me?

thanks have a good one.