Demo Mode
From . .. poMMo .. .
Demonstration mode is useful when training new users in poMMo, or to test mailings and throttle settings. It allows you to send mailings without actually emailing your subscribers.
NOTE: When demo mode is enabled, the program will NOT send emails during a mailing or a test mailing. Confirmation, Activation, and Reset password emails are still sent.
Contents |
[edit]
Temporary
Demo mode can be switched on under the Setup menu in the Admin interface.
[edit]
Permanent
To permanently enable (or disable) demonstration mode so that it can not be toggled via the Setup menu, a change to the database must be made.
[edit]
PHPMyAdmin
- Using PHPMyAdmin, visit your poMMo database.
- Open the config table (normally pommo_config)
- Click browse you should see all the options
- Click the edit icon for demo_mode
- Change user_change to OFF
[edit]
Command line
- mysql -u username -p -D pommo_database
- mysql -> UPDATE `<db_prefix>_config` SET `user_change` = 'off' WHERE `config_name` = 'demo_mode'
<db_prefix> depending on what you have set for the database prefix in config.php
