Reading the CubeCart error log

When something misbehaves, the log usually names the cause. Guessing wastes time.

Where to look

CubeCart keeps its own error log in the admin, under the system or maintenance section. Separately, the server keeps a PHP error log – look for an error_log file in your public_html or the relevant folder, or open Errors in cPanel.

Check both. CubeCart's log records what the shop noticed; the server log records failures so severe the shop never got to write anything.

Reading an entry

Each entry has a date, a message, and usually a file and line number. The file path tells you where the problem is: something under modules/plugins/ points at a plugin, something under skins/ at your theme, and something in the core is more likely a symptom than a cause.

What to ignore

Notices and deprecation warnings are noise on an older codebase and do not indicate a fault. Concentrate on fatal errors and exceptions.

What matters

  • Fatal error – execution stopped. This is your white page.
  • Call to undefined function – usually a missing PHP extension, or the wrong PHP version.
  • Allowed memory size exhausted – the request needed more memory than permitted.
  • Database errors – often a missing table after a failed upgrade.

When you open a ticket

Paste the actual log entry, with its date and time, and say what you were doing. That turns a long investigation into a short one.

Keep it tidy

An error log left growing for years can reach a size that is a problem in itself. Once you have dealt with the cause, clear it.

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Where your plugin licence key lives, and why it is tied to your store

Every Havenswift plugin is licensed to a specific store. Understanding how that works avoids the...

Moving your CubeCart store to a new domain

Moving a shop to a new address touches more than the web server. Work through these in order....

Upgrading CubeCart safely: a pre-flight checklist

Most upgrade problems come from skipping one of these. Before Take a full backup of files and...

Products missing from search or category pages

If a product exists in the admin but customers cannot find it, work through these in order. It is...

The correct robots.txt for an online shop

robots.txt tells search engines which parts of your site to crawl. It is easy to write one that...