Skip to main content

🛠 Preparation

emlog supports template themes and extension plugins. Developers can develop personalized template themes and functional plugins to enrich the functions and styles of emlog sites.

Development Environment

  • PHP 7.4 and above
  • MySQL 5.6 and above

Enable Developer Mode

Append a configuration line at the end of the root directory config.php file, as follows:

const ENVIRONMENT = 'develop';

After configuration, the program will output more detailed error information, including errors at warning and notice levels, to facilitate debugging and improving code. Please eliminate all warning and notice errors (mostly caused by uninitialized variables or unchecked variable exception conditions).

Development Documentation