The Debug/Error Log section in Osclass helps administrators identify and resolve issues related to PHP execution, database queries, and system errors.
By enabling debugging and logging features, you can monitor system performance and diagnose issues efficiently.
These settings determine whether errors are displayed in real-time, logged into files, or debugged at the database level.
You can enable error/debug logs in config.php
(located in the root directory) by adding the following lines:
define('OSC_DEBUG', true);
// Enable PHP debugging
define('OSC_DEBUG_LOG', true);
// Stores PHP debug into a log file
define('OSC_DEBUG_DB', true);
// Enable database debugging
Explanation of debug settings:
The debug log file is located in the oc-content
folder. If the file does not exist or is empty, no errors or debug messages have been logged yet.
Common reasons why the debug log file may be empty:
config.php
.To effectively manage debug logs, consider the following:
chmod 644
or chmod 666
may be required).The Debug/Error Log section in Osclass provides essential tools for troubleshooting and diagnosing system issues. By enabling logging features in config.php
, administrators can track errors, identify bugs, and improve overall system stability.