Quote:
Originally Posted by pointalk
"User must first enable the function on the Settings => General Settings page. It's off by default."
How to set on by default?
|
To set it on as default for new users run this SQL query at the Maintenance > Execute SQL Query Page.
ALTER TABLE
tableprefixuser ALTER sk_repnotif_options SET DEFAULT '1'
To activate it for all current user run this SQL query.
UPDATE
tableprefixuser SET sk_repnotif_options = '1'
Change the tableprefix to whatever you are using or remove it if you don't use any.
/SK