|
EDIT: For those who are just looking for the plugin, you can skip the development discussion and go straight to the release post:
phpBB Joomla Comments plugin - alpha release
Formerly: Using submit_post outside of phpBB
I am writing a plugin for Joomla...
Started by boylan on
, 15 posts
by 4 people.
Answer Snippets (Read the full thread at phpbb):
'includes/functions_....
$phpEx );
include( $phpbb_root_path .
'includes/functions_posting.'.
$phpEx );
include( $phpbb_root_path .
'common.'.
These includes at the top of file should do:
Code: Select all include( $phpbb_root_path .
|
|
Hello,
I'm currently integrating a standalone forum to work with my website (which already has its own authentication system). I did try linking phpBB to the site but this didn't work so I moved on to another solution.
What I am doing now is getting users...
Started by tdigby on
, 15 posts
by 3 people.
Answer Snippets (Read the full thread at phpbb):
With the phpBB session system?
Add a New Custom Page to phpBB Support Toolkit developer | Support Request Template | Knowledge Base | phpBB 3.0.x documentation
I don't give support via PM or IM! (all not intregrating with the ....
|
|
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...
Started by Sam Saffron on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
That way, the phpBB code is completely irrelevant, unless they radically), and to reuse your own code with a different....
Do you have direct access to the phpBB database? If so, your standalone authentication script could own internal database.
|
Ask your Facebook Friends
|
Hello all,
I need some help with what is probably a newbie question in terms of modifying phpBB.
I have a whole system developed in PHP, and I would like to integrate phpBB so that people can navigate into the forums and post seamlessly, without logging...
Started by Daniel Magliola on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Since phpBB is a pretty advanced forum software, it would be a pretty time to use your own login as primary....
I have integrated phpBB with a site before, however I used phpBB's login system/users table as the primary one as you said.
|
|
I need to run a simple forum. I have limited control of the box, so I need something with the same runtime requirements as phpBB.
However, we are talking about a local forum here for maybe 300 or so users max and phpBB is just overkill in terms of functionality...
Started by Gareth Simpson on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at serverfault):
It works somewhat differently....
I've only kicked the tires to Vanilla.
Everything works perfectly out, it doesn't require much for resources, and it has the great phpBB support base.
I just run a VM with phpBB installed using Turnkey Linux .
|
|
I've built web apps before that utilize PhpBB session and user data. The common move is to use code like this:
define('IN_PHPBB', true); //replace $phpbb_root_path with path to your forum $phpbb_root_path = '../forum/'; $phpEx = substr(strrchr(__FILE_...
Started by jmccartie on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The session data between multiple servers.)
phpBB changed the algorithm for validating the password to be.)
I agree it's a dicey decision either way; especially since phpBB doesn't have.
|
|
I am using zend framework with Apache sever on Ubuntu. When I try my site on localhost, I use following url
for example:
http://test.dev/authentication/login http://test.dev/student/profile
Where 'authentication' refers to AuthenticationController and...
Started by NAVEED on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If you place phpBB in the public folder the webserver will be able to see it and the 2nd two lines.
|
|
What is the best way to integrate a legacy phpBB forum into a new Joomla site?
Basically I want to keep the navigation links (top and main menu), and embed the forum as pages in the site.
Is this feasible?
Started by Yuval A on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In Parameters , set Wrapper URL....
Registered users in Joomla will be replicated to phpBB too (and vice versa, you have to setup JFusion .
For Joomla and phpBB you can use JFusion , so people logged in Joomla will be logged in phpBB.
|
|
I'm setting up a small forum for Q&A, and phpBB seems like a solid forum platform. It's also very extensible, which is why I'm hoping I can customize away the things I don't like.
So, is there a way to make phpBB:
Drop the concept of categories and forums...
Started by itsadok on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at superuser):
However, it seems like phpBB is a bit overkill for....
Although maybe it was migrated from there?
phpBB is fully extensible and can do what you want are already allowed to post in phpBB, if the settings are correct for that category.
|
|
Hello,
I'm going to improve one of my new projects and one of the features that I want to add is the possibility to post a new thread in a phpBB forum board, but it's possible to do this? If it is, how can I do this? Thanks.
Started by Nathan Campos on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Remember phpBB is likely accomplish this with a simple....
You can modify either of those to suit your tastes .
(); SendKeys.Send("{ENTER}"); }
Another way is to use http requests (not as likely to work reliably with phpBB to log into twitter.
|