AI Chatbots (and permissions confusion) on phpBB.com
Moderator: phpBB Experts
-
ArrayGanstaZ
- phpBB Expert
- Posts: 84
- Joined: Sat Mar 11, 2023 8:50 am
Re: AI Chatbots (and permissions confusion) on phpBB.com
Nice.. It's a very good/useful tool for any project.
Usus est magister optimus!
When answer lies in the question, question becomes redundant!
When answer lies in the question, question becomes redundant!
-
ArrayDimetrodon
- Not A Dinosaur!
- Posts: 181
- Joined: Mon Sep 12, 2022 9:30 am
- Verification: ✅ Elon Musk Style
Re: AI Chatbots (and permissions confusion) on phpBB.com
I know this is a dumb question, but which dependencies will I likely need to install?
Just to make sure I don't miss something important.
Just to make sure I don't miss something important.
Last edited by Dimetrodon on Fri Mar 17, 2023 5:53 pm, edited 2 times in total.
-
ArrayGanstaZ
- phpBB Expert
- Posts: 84
- Joined: Sat Mar 11, 2023 8:50 am
Re: AI Chatbots (and permissions confusion) on phpBB.com
Composer will do everything automatically.. You only need to give a command:
It will install all dependencies that are set in composer.json file.
Code: Select all
composer install
Last edited by GanstaZ on Sat Mar 18, 2023 9:33 am, edited 2 times in total.
Usus est magister optimus!
When answer lies in the question, question becomes redundant!
When answer lies in the question, question becomes redundant!
-
ArrayDimetrodon
- Not A Dinosaur!
- Posts: 181
- Joined: Mon Sep 12, 2022 9:30 am
- Verification: ✅ Elon Musk Style
Re: AI Chatbots (and permissions confusion) on phpBB.com
Understood, thanks.
Last edited by Dimetrodon on Sat Mar 18, 2023 9:58 am, edited 4 times in total.
-
ArrayDimetrodon
- Not A Dinosaur!
- Posts: 181
- Joined: Mon Sep 12, 2022 9:30 am
- Verification: ✅ Elon Musk Style
Re: AI Chatbots (and permissions confusion) on phpBB.com
I don't mind running your fork on my site's root, but I have extensions on this site, should I worry about them potentially breaking?
-
ArrayGanstaZ
- phpBB Expert
- Posts: 84
- Joined: Sat Mar 11, 2023 8:50 am
Re: AI Chatbots (and permissions confusion) on phpBB.com
Most likely those extensions wont be compatible (php events, some classes that are using 3.4 symfony components or some specific twig files).
Fastest way to test it, would be to test those extensions on master branch.
Fastest way to test it, would be to test those extensions on master branch.
Last edited by GanstaZ on Sun Mar 19, 2023 3:19 pm, edited 1 time in total.
Usus est magister optimus!
When answer lies in the question, question becomes redundant!
When answer lies in the question, question becomes redundant!
-
ArrayDimetrodon
- Not A Dinosaur!
- Posts: 181
- Joined: Mon Sep 12, 2022 9:30 am
- Verification: ✅ Elon Musk Style
Re: AI Chatbots (and permissions confusion) on phpBB.com
I haven't tested them on master branch yet, but I have tested some of them them on the dev version of phpBB4. Pages for instance destroyed the test board. 
Pages I need I will probably drop as custom php files, similar to this article. That's how I created my current homepage as it takes the file name home.php
Those custom files won't break. Such files even work just fine on phpBB4.

Pages I need I will probably drop as custom php files, similar to this article. That's how I created my current homepage as it takes the file name home.php
Those custom files won't break. Such files even work just fine on phpBB4.
Last edited by Dimetrodon on Sun Mar 19, 2023 3:51 pm, edited 3 times in total.
-
ArrayGanstaZ
- phpBB Expert
- Posts: 84
- Joined: Sat Mar 11, 2023 8:50 am
Re: AI Chatbots (and permissions confusion) on phpBB.com
phpbb4 dev is master branch.. Packed version is built from master branch.
Usus est magister optimus!
When answer lies in the question, question becomes redundant!
When answer lies in the question, question becomes redundant!
-
ArrayDimetrodon
- Not A Dinosaur!
- Posts: 181
- Joined: Mon Sep 12, 2022 9:30 am
- Verification: ✅ Elon Musk Style
Re: AI Chatbots (and permissions confusion) on phpBB.com
Well, me not knowing that is a a bit embarrassing, lol. Well, I got my answer then. A large chunk will not.
I'm removing extensions that I do not need. The ones that I have left should work.
I should have done this a long time ago. Less is more.
I'm removing extensions that I do not need. The ones that I have left should work.
I should have done this a long time ago. Less is more.
Last edited by Dimetrodon on Mon Mar 20, 2023 9:52 am, edited 3 times in total.
Reason: Merged two of my posts
Reason: Merged two of my posts
-
ArrayDimetrodon
- Not A Dinosaur!
- Posts: 181
- Joined: Mon Sep 12, 2022 9:30 am
- Verification: ✅ Elon Musk Style
Re: AI Chatbots (and permissions confusion) on phpBB.com
Just curious, are you strongly against the dropping of custom files in a phpBB installation?
I like it because it doesn't call upon the back end as much as something like Pages. Less complex than creating custom pages within extensions and playing with the controllers.
I like it because it doesn't call upon the back end as much as something like Pages. Less complex than creating custom pages within extensions and playing with the controllers.
Last edited by Dimetrodon on Wed Mar 22, 2023 9:50 am, edited 2 times in total.