developr Active member Mar 13, 2019 #1 Hi there, when I create a snapshot of my forum I have to disable mails via config.php. Is there also an option to disable push via config.php?
Hi there, when I create a snapshot of my forum I have to disable mails via config.php. Is there also an option to disable push via config.php?
Ozzy47 Well-known member Mar 13, 2019 #2 Just disable the option for push notifications. Upvote 0 Downvote
Ozzy47 Well-known member Mar 13, 2019 #4 Via the DB then, there is no boolean switch available. Upvote 0 Downvote
Chris D XenForo developer Staff member Mar 13, 2019 #5 You can override option values in src/config.php: PHP: $c->extend('options', function(\ArrayObject $options) { $options->enablePush = false; return $options; }); Upvote 0 Downvote
You can override option values in src/config.php: PHP: $c->extend('options', function(\ArrayObject $options) { $options->enablePush = false; return $options; });