What do I need to do to make sure all users have the sound turned on by default?
This require vB Pager 3.0.1 + Installed.
From
phpMyAdmin, run this query:
Code:
UPDATE user SET pagersoundoption = 1;
where
user is your user table plus
TABLE PREFIX if you got one.
If you want to change the default value for the sound option to all new registerd users and make it enabled by default.
From
phpMyAdmin, under the user table, edit the
pagersoundoption field and change the
Default value to
1 then save it.
Or run this query
Code:
ALTER TABLE user CHANGE pagersoundoption pagersoundoption SMALLINT( 6 ) DEFAULT 1 NOT NULL;