Ok thanks for pointing me to log files. From the latest session, I saw this:
[20-Aug-2011 17:24:54] PHP Fatal error: Call to undefined function zen_address_format() in /home1/xxxxxx/public_html/admin/orders.php on line 382
Any ideas?
Ok thanks for pointing me to log files. From the latest session, I saw this:
[20-Aug-2011 17:24:54] PHP Fatal error: Call to undefined function zen_address_format() in /home1/xxxxxx/public_html/admin/orders.php on line 382
Any ideas?
Evidently you're missing the file that contains the function zen_address_format()
So, that suggests one or more of your files didn't get upgraded properly, or didn't upload properly, maybe both.
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
That's the line having problems in admin/orders.phpCode:<td class="main"><?php echo zen_address_format($order->customer['format_id'], $order->customer, 1, '', '<br />'); ?></td>
You won't find it by putting both brackets on the end.
It's a function which also takes several parameters, so you'll never find it by searching for zen_address_format() directly.
Try "function zen_address_format" instead.
Better yet, check ALL your files, since it's likely that you've got more than one that's busted: http://www.zen-cart.com/wiki/index.p...Obscure_Issues
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
No Luck with that either
"zen_address_format" comes up on 11 files. Seems like it's hard to narrow down the issue.
and what about "function zen_address_format" that I suggested?
For me it brings up 2 admin files. One where the function is commented-out and the other is the one which contains the active version of the code.
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
'function zen_address_format' brings up two files for me as well:
admin/includes/functions/general.php
includes/functions/functions_customers.php
However, on my other store that works, it only brings up last file (1 total).