Actually, error was echoed to browser, and no myDEBUG file created.
Actually, error was echoed to browser, and no myDEBUG file created.
ZC Installation/Maintenance Support <- Site
Contribution for contributions welcome...
1146 Table 'belmetri2009_2010d.produc' doesn't exist
in:
[select * from produc where products_id < 100;]
Did an internet search, while this doesn't address all potential issues/solutions, it might help. Looks like either in php.ini display_errors is on or perhaps it is somewhere in the ZC files (possible to override, but isn't suggested)... But this offers a few things to consider:
http://askubuntu.com/questions/57840...ted-to-browser and at least some discussion about where else to possibly look... Sorry for not trying to find an equivalent FAQ on this site... Went the "easy" route. :)
ZC Installation/Maintenance Support <- Site
Contribution for contributions welcome...
Any place in ZC Files it is more likely to be? Server info says Error Reporting is off, so I am not sure where to start.
Would check includes/application_top.php:
In ZC 1.5.3 there is a section like this:
Not sure what it is/was for 1.3.9h at the moment. Could find it if need it (I've got a copy somewhere), but I'm working on something else at the moment.Code:/** * set the level of error reporting * * Note STRICT_ERROR_REPORTING should never be set to true on a production site. <br /> * It is mainly there to show php warnings during testing/bug fixing phases.<br /> */ if (defined('STRICT_ERROR_REPORTING') && STRICT_ERROR_REPORTING == true) { @ini_set('display_errors', TRUE); error_reporting(version_compare(PHP_VERSION, 5.3, '>=') ? E_ALL & ~E_DEPRECATED & ~E_NOTICE : version_compare(PHP_VERSION, 5.4, '>=') ? E_ALL & ~E_DEPRECATED & ~E_NOTICE & ~E_STRICT : E_ALL & ~E_NOTICE); } else { error_reporting(0); }
ZC Installation/Maintenance Support <- Site
Contribution for contributions welcome...
.
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.
Quick update: myDEBUG were missing due to a permissions issue. Now although they are generating, there is nothing in them near the times the cart issues happen.
ZC Installation/Maintenance Support <- Site
Contribution for contributions welcome...
ZC Installation/Maintenance Support <- Site
Contribution for contributions welcome...