Category: Wordpress phpBB integration
-
WordPress phpBB integration without linking users
—
by
From 1.9.4 > this feature become option on plugin admin page. Activate integration without linking users between WordPress and phpBB It is possible to display Last Topics Widgets and Shortcodes to display phpBB Last Posts or Posts contents into WordPress Pages/Posts. It is also possible to use the template integration to display the phpBB forum…
-
WordPress Shortcode: last phpBB topics/posts into WP post
—
by
Vers. 1.0 check all others shortcodes listed under the “common how” to section WordPress phpBB Latest phpBB Topics shortcode how to To add a WP_w3all shortcode, and display a list of Latest updated phpBB Topics into a WordPress post/page, the WordPress shortcode to use is like this: change the topics_number value 5 with the number…
-
Synchronize Buddypress and phpBB user’s profile fields
—
by
WP_w3all 1.7.5 or > https://www.axew3.com/w3/2017/09/wordpress-and-buddypress-phpbb-profile-fields-integration
-
WP_w3all phpBB integration and phpBB profile fields
—
by
Original forum post:https://www.axew3.com/w3/forums/viewtopic.php?f=13&t=573&p=2300#p2300
-
WordPress Shortcode: phpBB posts into WP post
—
by
check all others shortcodes listed under the “common how” to section phpBB posts – WP post shortcode how to To add a WP_w3all shortcode, and display a phpBB post into a WordPress post, choose a phpBB Post ID (note: post ID NOT Topic ID) to display, and add it into WordPress post, like this: Change…
-
WP_w3all for WordPress MS MU (Multisite, Multiuser network installations)
—
by
Configure WP_w3all on WordPress MS MU WordPress MU MS. The plugin can be also network activated, but the linked phpBB on each subsite, need to be the same. If the plugin is network activated, it is mandatory that the sub admin or super admin, setup/configure into each subsite the same config of the main site…
-
WP_w3all .htaccess and Javascript for phpBB: rewrite URLs to point iframe how to (Spiders friendly)
—
by
Open .htaccess file of your phpBB root folder, search for this line: RewriteRule ^(.*)$ app.php [QSA,L] just below add the follow: #p reserved in WP RewriteCond %{QUERY_STRING} ^(.*)(iframe=true&)(.*)(p=)([0-9]+)(.*)?$ RewriteRule . /yourwp/index.php/forum/?%3post_id=%5%6 [R,L] #all others RewriteCond %{QUERY_STRING} ^(.*)(iframe=true)(.*)$ RewriteRule . /yourwp/index.php/forum/?%3 [R,L] Change on lines RewriteRule . /yourwp/index.php/forum/?%3post_id=%5%6 [R,L] and RewriteRule . /yourwp/index.php/forum/?%3 [R,L] the relative…
-
How are users identified when you add/transfer existent user
integration of same username/email users—
by
Problem: i have WordPress users and I have phpbb users, they have different usernames but the same email addresses. Solutions: user A into phpBB with email C user B into WP with email C user A into phpBB come to try to login WP: NOT added can’t login WP side. If you use the transfer…
-
phpBB images and .htaccess:
how to set phpBB avatars images available over all your domain—
by
On Apache server, the default phpBB .htaccess file in phpBB/images/avatars/upload folder, by default, is setup to deny access to images files if these are requested by an external resource, or the call to images files are done outside the phpBB installation folder. So, to get working WP_w3all avatar option, it is required to edit the…
-
phpBB external login redirect
how to – domain, subdomain—
by
To correctly do an external redirect for domain in phpBB 3> it is required to modify/edit a single file in phpBB: open with text editor /includes/functions.php search for the function redirect function redirect($url, $return = false, $disable_cd_check = false) inside this function there is this code: else if (!empty($url_parts[‘scheme’]) && !empty($url_parts[‘host’])) { just after this…