Page 2 of 4

Re: Pre-Installation Questions (Buddyboss) passwords and more

Posted: Wed Jul 17, 2024 7:24 am
by Ezrael
Normally when using FTPS to access yourfFiles should be able to see the root of Wordpress

Depending on you hoster its maybe in a subfolder as example:

Code: Select all

Apps/Wordpress_01/"All Wordpressfiles"
You can upload the "phpbb" folder in the "All Wordpressfiles" folder

You should be able to open the phpbb by using https://yourdomain.com/phpbb/index.php

Re: Pre-Installation Questions (Buddyboss)

Posted: Thu Jul 18, 2024 11:00 pm
by elawrenc01
Ok, great, thanks for confirming that.

If I have 2 different styles for my PHPBB forum, I have to update the Header and footer on both styles, correct? Or just prosilver?


Thanks!

Re: Pre-Installation Questions (Buddyboss)

Posted: Thu Jul 18, 2024 11:19 pm
by Ezrael
Depending on the style. If the style has an own overall_header.html and/or oversll_footer.html; yes

Re: Pre-Installation Questions (Buddyboss)

Posted: Wed Jul 31, 2024 2:49 am
by elawrenc01
OK thanks. I am going to try to put this all together in about a week.


Stay tuned!

Re: Pre-Installation Questions (Buddyboss)

Posted: Fri Aug 02, 2024 2:27 am
by elawrenc01
Another question:

All my users are in PHPBB. I am going to transfer them to Wordpress. I am using the PHPBB hash. I couldn't really understand what was being said but will my users be able to use the same password in Wordpress that they are using for PHPBB?

I want to try to avoid users having to change their password.

Thanks

Ed L.

Re: Pre-Installation Questions (Buddyboss) passwords and more

Posted: Fri Aug 02, 2024 7:08 am
by axew3
A wordpress password hash cannot be recognized by phpBB, a phpBB hash cannot be recognized by WP, if you do not provide an easy extension or plugin, that can check for it's validity in phpBB when an user login, or viceversa: phpBB and wordpress uses different ways to hash passwords.
And let me say that i do not understand why WordPress do not use the default PHP passwords and still use an old not useful library.
https://www.php.net/manual/en/function. ... d-hash.php
It really result absurd to me. If anybody have an idea of the why, please let me know.

Anyway, returning to your question:
A phpBB user transferred into WordPress, until the plugin is active, will login into WP without having to change any pass, because the integration plugin check the password in several ways, and also like phpBB do.

If you transfer WP users into phpBB, instead
, they are transferred, obviously, with the WP hash, that phpBB do not recognize.
So at this time, until users will not have reset their pass, they will be able to login with the same old password only into WP and not in phpBB (until a reset pass do not happen).

Until the plugin is active, it hash the WP/phpBB users password in the phpBB way (https://www.php.net/manual/en/function. ... d-hash.php) but it recognize at same time all php hashes, also the old md5 and the phpAss default library of WP.

At the time that the integration is disabled or uninstalled, you can expect this:
phpBB users will have an hash that phpBB recognize, so phpBB users will be ok: but those transferred from WP to phpBB, only if them in the while changed their password in some way, updating it along the integration time (because phpBB do not recognize WP hashes).
WordPress users, once the plugin will be disabled, will have to reset the password because the used hash is not recognized anymore by WordPress (but a single plugin done of +-50 lines of code can fix the problem, whenever required/needed and i will provide one asap).
Also, the phpBB extension could easily be improved so to have an option that if active will recognize in phpBB the WP hashes.