The permissions of the founder are higher than those of the Administrator. Some important functions of the ucenter home background can be seen only after the founder logs on, such as template editing, multi-application settings, and data backup, so sometimes the webmaster may feel that a founder in the website is not enough, or wants to change the administrator to the Founder. The following describes the procedure:
1. Open the config. php file in the ucenter home root directory.
Find the following code:
Code: [copy]
- $ _ SC ['founder'] = '1'; // founder uid, which can be separated by commas (,).
As shown in:
2. Add a founder
If I want to add a member with UID 5 as the founder, modify the Code as follows:
Code: [copy]
- $ _ SC ['founder'] = '1, 5'; // founder uid, which can be separated by commas (,).
3. Modify founder
I want to cancel the founder of uid 5, as long as the account with UID 1 is the founder, then change this code:
Code: [copy]
- $ _ SC ['founder'] = '1 ';
You can.