Wiem właśnie zrobiłem i wchodzi forum normalnie teraz to co dałeś mi "medeish" robię wszystko po kolei. Natomiast mam problem z tym:
Installing additional phpBB forums
The steps for installing additional phpBB forums are exactly the same as for the first installation, with one exception, you do not need to rename the database tables for additional installations. All you have to do is edit the includes/constants.php file to tell your new phpBB installation to use the shared tables.
The tricky part
Next comes the tricky stuff. phpBB uses a kind of system where it caches the user permission for each board into the users table. I’m not entirely sure how the system works, but suffice it to say that each board needs its own cache. So you will need to add additional columns to the users table, specifically the user_permissions and the user_perm_from fields.
What you need to do is add assign a number for each phpBB installation and then duplicate the above two fields with the addition of the installation number as its suffix. For example, if your primary forum installation is assigned the number 1, the duplicated fields will be called user_permissions_1 and user_perm_from_1. This can be anything you want it to be as long as you know that it refers to this specific installation. Do the same for all other installations.
Now you need to change all reference to these fields for each phpBB installation. Open up includes/auth.php for each phpBB installation, and change all references to user_permissions and user_perm_from to the appropriate tables. For example, the includes/auth.php file for your primary phpBB installation will use user_permissions_1 and user_perm_from_1, provided these tables are the ones you’ve assigned to this specific installation. The same goes for all of your phpBB installations, so in my case I have three forums sharing the same user database, the first one is assigned with the number one so it uses the tables user_permissions_1 and user_perm_from_1. The second forum uses the tables user_permissions_2 and user_perm_from_2, and the third one user_permissions_3 and user_perm_from_3.
Of course, this depends entirely on what you name the tables, but for simplicity’s sake, I decided to go with numbers as suggested in the forum post mentioned above.
Jak pisałem wcześniej robie coś takiego pierwszy raz i potrzebuje pomocy od doświadczonych osób. Przypomnę, że edytuje wszystko z panelu admina na xaa.pl
Wiem, że mam dodać nowe kolumny najpierw się zastanawiałem czy edytować "user" i tam dodać nowe i później w nowym forum też "phpbb_pousers" tam też dodać nowe kolumny. A to chodzi o dodanie bodajże. Ale potrzebuje wiedzieć jakie zapytania i jak dodać. Bo nigdy tego jeszcze nie robiłem.
Chodzi mi o to co i jak po kolei zrobić waszymi słowami.