|
I want to write an app that parse particular threas on a phpbb forum. So if a thread has 200 pages with 10 posts (that doesn't give you the ability to adjust the post count per page), and has an address like this:
http://www.forum.com/viewtopic.php?t=...
Started by Joan Venge on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If the forum doesn't for this if it is your forum: http://www.phpbb.com/community/viewtopic.php?f=69&t=1101295.
If you're parsing, just parse each page, then add up the results in the end .
|
|
This is the million dollar question, I see it time and time again on here and other php coding related sites and forums but I have NEVER seen an answer to it.
So I started digging in and studying how some of the big high traffic forums accomplish this...
Started by jasondavis on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
They supply example code and explain the process to get .
I could not find devoted to developing your own forum page.
For the unread/read status of forum posts should be done through the database.
|
|
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):
On attempting to submit_post:
Code: Select all [phpBB Debug] PHP Notice: in file /forum/includes/utf/utf: No such file or directory
[phpBB Debug] PHP Notice: in file /forum/includes/utf/utf_tools.php, $language, $auth;
define....
|
Ask your Facebook Friends
|
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):
All I want to do is imitate the session that phpBB creates with the phpBB session system?
Add a New Custom Page to phpBB Support Toolkit developer | Support Request Template | Knowledge....
Get any further than forum information.
|
|
Hi all,
The forums have been upgraded to phpBB 3.0.9. Along with this, I've updated our Tapatalk plugin, and our anti-spam plugin. Whether the latter will have any effect on the amount of spam we're getting, I don't know, but we can only hope!
As always...
Started by orudge on
, 13 posts
by 6 people.
Answer Snippets (Read the full thread at tt-forums):
Hmm, phpBB 3.0.9 did make changes to the textarea CSS:
width: 700px; height: 270px; min.
Her by..." - John Masefield Top orudge Post subject: Re: Forums upgraded to phpBB 3.0.9 Posted: Sun, running Linux.
|
|
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.
|
|
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):
After some time I have found my answer....
Is to place a new .htaccess file inside the forum/ directory and turn off the rewrite engine
RewriteEngine Off you request /forum/ he finds the .htaccess file there and turns off the RewriteEngine.
|
|
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 timeI have integrated phpBB with a site before, however I used phpBB's login system/users table to use your own login as....
As the primary one as you said.
|
|
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'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):
Anonymous users are already allowed to post in phpBB....
Although maybe it was migrated from there?
phpBB is fully extensible and can do what you want /forum/ to the category listing and by writing the theme to ignore the category areas.
|