phpbb

Use phpBB credentials for a blog

瘦欲@ 提交于 2020-01-06 06:48:07
问题 Is there any way to setup a Wordpress blog (or any other blog system) and let users use the same credentials used in a phpBB forum...a sort of database sharing. 回答1: there's no out-of-the-box method of sharing PHPBB users with WordPress - it would involve modifying WordPress quite a bit to implement it... there is a blogging site conversion for phpbb, which converts phpbb into a blog.. and I guess you could probably hack it a bit so that you could run forums and a blog from the same database?

Can I use phpBB as a “fake” identification provider?

风格不统一 提交于 2020-01-05 04:47:08
问题 I have a lot of users that have accounts on a phpBB forum. I would like them to be able to re-use their username and password on a new website. So the plan is that if I look up a username/password in my app, and its missing, I would like to call a page on phpBB that will tell me: If the username/password is valid The email address of the user. I would also like the page on the phpBB side to protect against brute-force attacks. Ideally I would like my solution to work out-of-the-box without

Can I use phpBB as a “fake” identification provider?

天涯浪子 提交于 2020-01-05 04:45:45
问题 I have a lot of users that have accounts on a phpBB forum. I would like them to be able to re-use their username and password on a new website. So the plan is that if I look up a username/password in my app, and its missing, I would like to call a page on phpBB that will tell me: If the username/password is valid The email address of the user. I would also like the page on the phpBB side to protect against brute-force attacks. Ideally I would like my solution to work out-of-the-box without

Full integrate phpbb into existing website

旧城冷巷雨未停 提交于 2019-12-31 17:35:32
问题 I have a website that runs for around 2-3 years before, it has its own forum, however, recently I would like to use the phpbb3 to replace that forum. I encounter the problem when I need to do integration . To be precise, I have an existing database that have fields designed for my own website. What I would like to do is the old user do not need to register again and can login to the phpbb forum, using every functions it provided (e.g. check profile) . Are there any way to implement such

Load Joomla 3.x Framework and Modules in external PHP file

…衆ロ難τιáo~ 提交于 2019-12-29 07:53:06
问题 I am migrating my Joomla 2.5 site to Joomla 3.3. Now I'm struggling with loading the joomla framework and displaying a module in a phpbb-Template. Loading the Joomla framework worked fine in Joomla 2.5 with this code: define( '_JEXEC', 1 ); define('JPATH_BASE', '/var/customers/webs/tf2swiss/joomlasite'); define( 'DS', DIRECTORY_SEPARATOR ); require_once('../configuration.php'); require_once ( JPATH_BASE .DS.'includes'.DS.'defines.php' ); require_once ( JPATH_BASE .DS.'includes'.DS.'framework

phpBB Template API error

痴心易碎 提交于 2019-12-25 08:38:41
问题 I want to add thread and show the message in phpBB. Here is my code: <?php define('IN_PHPBB', true); $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.' . $phpEx); include($phpbb_root_path . 'includes/functions_posting.' . $phpEx); include($phpbb_root_path . 'includes/functions_display.' . $phpEx); include($phpbb_root_path . 'includes/message_parser.' . $phpEx); $user->session_begin(); $auth

Handling unread posts in PHP / MySQL

橙三吉。 提交于 2019-12-20 11:49:14
问题 For a personal project, I need to build a forum using PHP and MySQL. It is not possible for me to use an already-built forum package (such as phpBB). I'm currently working through the logic needed to build such an application, but it's been a long day and I'm struggling with the concept of handling unread posts for users. One solution I had was to have a separate table which essentially holds all post IDs and user IDs, to determine if they've been read: tbl_userReadPosts: user_id, post_id,

Laravel conflicting

对着背影说爱祢 提交于 2019-12-13 21:28:51
问题 I am integrating PHPBB with my Laravel installation and I am having errors because variables are conflicting. Eg: This page: http://clashdata.tk/search/livesearch?clanname=clans&location=&trophies=0&minmembers=1&maxmembers=50&clanlevel=0 PHPBB is using the Laravel $request var instead of the phpBB one. The line of code is: $script_name = $request->escape($symfony_request->getScriptName(), true); What can I do to fix this? Is there a way I can make Laravel have nothing to do with the /forum

Create topic in phpBB3 by php file

断了今生、忘了曾经 提交于 2019-12-12 10:26:27
问题 I am trying to create topics in phpBB3 forums by a php file. I found this Creating a forum in phpBB3 from PHP and settings permissions But when i copy this and running my php file i am getting this PHP Notice: Use of undefined constant FORUMS_TABLE - assumed 'FORUMS_TABLE' in /var/www/html/phpvibe/forum/insertPhpbb.php on line 13 PHP Fatal error: Call to a member function sql_build_array() on a non-object in /var/www/html/phpvibe/forum/insertPhpbb.php on line 14 I also found this https://wiki

What is the best forum plug-in solution for the Symfony framework?

我们两清 提交于 2019-12-12 08:16:38
问题 I'm looking for a good solution to integrate a forum into a symfony application. Something like phpBB would be excellent. I've seen phpBB plugins to integrate with symfony but that's not enough for my purposes, also, mapping database tables is a lame approach in my opinion. If anybody knows a good working forum component for Symfony then I would really apreciate it. :) Also, it needs to work with Doctrine. Thanks! 回答1: I've found sfDoctrineSimpleForumPlugin Thanks for all the responses, hope