Well I have found the problem. Yesterday I went to this file
includes/languages/english/modules/shipping/flat.php
and I made some changes to the Flat Rate text, I wanted it to say USPS United States Flat Rate
define('MODULE_SHIPPING_FLAT_TEXT_TITLE', 'Regular Flat Rate');
define('MODULE_SHIPPING_FLAT_TEXT_DESCRIPTION', 'Flat Rate in USPS 3-5 Days');
define('MODULE_SHIPPING_FLAT_TEXT_WAY', 'USPS Flat Rate Shipping 3-5 Days');
**from the original:**define('MODULE_SHIPPING_FLAT_TEXT_TITLE', 'Flat Rate');
define('MODULE_SHIPPING_FLAT_TEXT_DESCRIPTION', 'Flat Rate');
define('MODULE_SHIPPING_FLAT_TEXT_WAY', 'Best Way');
apparently this was an issue that would not work, so I had to change it back to the original and it worked out fine. Any suggestions on how to change this?
:unsure:
I am providing some info on how I found this problem for others to use.
-
I am using v1.3.9f and I went with my FTP Zilla to this folder /cache and what I found was this text file: myDEBUG-1288309757-24752.log
-
I transfered the file over to my PC and opened it with Notepad and I found this: [28-Oct-2010 17:49:56] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/content/46/5706846/html/catalog/includes/languages/english/modules/shipping/flat.php:53) in /home/content/46/5706846/html/catalog/includes/functions/functions_general.php on line 45
-
I looked in line 53 of my flat.php file and found nothing. It was outside of the ?> close tag
-
I looked at line 45 of the functions_general.php and found this: header('Location: ' . $url);
-
I can't make heads or tails of it and dont have 3hrs to figure it out, so I just replaced the modified flat.php file with the original.
-
I would like to make the shipping table text changes, Any suggestions?:frusty: