Mysql site database

Do not post support requests, bug reports or feature requests. Discuss phpBB here. Non-phpBB related discussion goes in General Discussion!
Suggested Hosts
DoctorB2
Registered User
Posts: 21
Joined: Mon Oct 23, 2023 2:55 pm

Mysql site database

Post by DoctorB2 »

An unknown area to me and have tried searching for mysql help elsewhere with no luck.

I note that in the 'acl_users' section there appear to be two settings for 'auth_setting', 0 or 1.

In simple terms(!) what is this setting please?
Last edited by Mick on Mon May 06, 2024 8:12 pm, edited 1 time in total.
Reason: Solved.
User avatar
Brf
Support Team Member
Support Team Member
Posts: 53543
Joined: Tue May 10, 2005 7:47 pm
Location: {postrow.POSTER_FROM}

Re: Mysql site database

Post by Brf »

In includes/constants.php:

Code: Select all

// ACL
define('ACL_NEVER', 0);
define('ACL_YES', 1);
define('ACL_NO', -1);
Note that that column is going to be zero in most cases, because you will be using a role rather than a specific permission setting.
DoctorB2
Registered User
Posts: 21
Joined: Mon Oct 23, 2023 2:55 pm

Re: Mysql site database

Post by DoctorB2 »

Thanks.

Return to “phpBB Discussion”