RE: How do I get my store to work live
JB <[email protected]>
| Newsgroups | gmane.comp.web.oscommerce.installation |
|---|---|
| Message-ID | <817c4e355783a30e3c74b63024a47f74@osCommerce-Forums> |
This message was sent from: Installation and Configuration
http://forums.oscommerce.com/viewtopic.php?p=227562#227562
----------------------------------------------------------------
When I copied and pasted the code you posted into a php editor it showed an error. This line was incorrect:
[code]
define('TABLE_HEADING_IMAGE', ");
[/code]
You have a "(quote) at the end instead of two '(apostrophes)... try changing that line to:
[code]
define('TABLE_HEADING_IMAGE', ' ');
[/code]