-
Notifications
You must be signed in to change notification settings - Fork 0
installation.en_US
YanQS edited this page Dec 13, 2025
·
1 revision
- Upload the plugin to
wp-content/plugins/wp-comment-reply-notify-plugin(or the current directory) and activate it in the admin dashboard. - On activation the plugin will attempt to create the email log table and schedule the daily maintenance task (
pcn_daily_maintenance).
- The plugin will attempt to write to
includes/templates/to save template styles. If writing fails, templates are saved to thepcn_templatesoption in the database. - To allow the "Load selected style" feature to write style files, ensure
includes/templates/is writable by the webserver.
- If your host disables WP-Cron or you need to schedule maintenance immediately, use WP-CLI:
wp eval 'if (!wp_next_scheduled("pcn_daily_maintenance")) { wp_schedule_event(time(), "daily", "pcn_daily_maintenance"); }'- Back up your database before upgrading. Settings are stored in
wp_options(for examplepcn_templates,pcn_log_table_max). - If templates do not change after an upgrade, check file permissions for
includes/templates/.