phpBB3 has an excellent permissions system.
One area I would like to see improved for phpBB4 would be multiple local permissions. What is a local permission for those not knowing? Well its the idea that in certain areas (forums) you have different permissions, you can post in one but not in ...
Search found 180 matches
- Tue Feb 23, 2010 7:50 pm
- Forum: [3.x] Discussion
- Topic: Mutiple Local Permissions
- Replies: 3
- Views: 9714
- Tue Feb 03, 2009 1:05 pm
- Forum: [3.0/Olympus] Discussion
- Topic: [Discussion] Downtime and Server Compromise
- Replies: 353
- Views: 534908
Re: [Discussion] Downtime and Server Compromise
Can you confirm the No was to the question "Does this copy of the phpBB2 DB still exist on the phpBB Database server?"
I do understand what happens to the password from a phpBB3 point of view. My question was related to the fact that the password is left in an unchanged state in the original ...
I do understand what happens to the password from a phpBB3 point of view. My question was related to the fact that the password is left in an unchanged state in the original ...
- Tue Feb 03, 2009 12:38 pm
- Forum: [3.0/Olympus] Discussion
- Topic: [Discussion] Downtime and Server Compromise
- Replies: 353
- Views: 534908
Re: [Discussion] Downtime and Server Compromise
Hope I can ask a question. As a user who has logged in since the phpBB3 conversion I know my current password is in the newer format. However normally a conversion uses a different DB as its source. Does this copy of the phpBB2 DB still exist on the phpBB Database server?
- Thu Jan 29, 2009 8:28 am
- Forum: [3.0/Olympus] Discussion
- Topic: Outbuffering for integration with Joomla and errors
- Replies: 64
- Views: 125022
Re: Outbuffering for integration with Joomla and errors
AutoMOD is the tool to automatically process MODX files. See http://www.phpbb.com/community/viewtopi ... &t=1368025
- Mon Jan 26, 2009 2:28 pm
- Forum: [3.0/Olympus] Discussion
- Topic: Programmatic Create Private Message
- Replies: 4
- Views: 16095
Re: Programmatic Create Private Message
Dude its an example. It needs other code to get the address list.
You will not have that array 
Code: Select all
array('u' => array($moderators_to_pm[$i]['user_id'] => 'to')),
- Mon Jan 26, 2009 10:02 am
- Forum: [3.0/Olympus] Discussion
- Topic: Programmatic Create Private Message
- Replies: 4
- Views: 16095
Re: Programmatic Create Private Message
You would be best to ask in MOD writter on phpBB.com
However you should examine the submit_pm() function, below is a example of it in use by a MOD I wrote.
include_once($phpbb_root_path . 'includes/functions_privmsgs.' . $phpEx);
include_once($phpbb_root_path . 'includes/message_parser ...
However you should examine the submit_pm() function, below is a example of it in use by a MOD I wrote.
include_once($phpbb_root_path . 'includes/functions_privmsgs.' . $phpEx);
include_once($phpbb_root_path . 'includes/message_parser ...
- Mon Apr 21, 2008 8:00 pm
- Forum: [3.0/Olympus] Discussion
- Topic: phpBB 3.2 Discussion
- Replies: 257
- Views: 386758
Re: phpBB 3.2 Discussion
Ok course you are more than welcome to it. I will mail it on to you. PM me the address you want it at.
- Mon Apr 21, 2008 7:34 am
- Forum: [3.0/Olympus] Discussion
- Topic: phpBB 3.2 Discussion
- Replies: 257
- Views: 386758
Re: phpBB 3.2 Discussion
JRSweets, I have a patch 90% ready, I needed this for my site badly so all my coding effort the last few weeks has been on this.
Maybe (probably ;)) the phpBB Dev team can come up witha cleaner solution, but maybe they will gather an idea or two for my implementation. Either way for 3.0.x I have ...
Maybe (probably ;)) the phpBB Dev team can come up witha cleaner solution, but maybe they will gather an idea or two for my implementation. Either way for 3.0.x I have ...
- Tue Jan 29, 2008 9:14 am
- Forum: [3.0/Olympus] Discussion
- Topic: webinstall like smf
- Replies: 2
- Views: 6834
Re: webinstall like smf
Which you can now checkout from the code repo
http://code.phpbb.com/svn/modsmanager/trunk/modsmanager
http://code.phpbb.com/svn/modsmanager/trunk/modsmanager
- Fri Jan 11, 2008 10:31 am
- Forum: [3.0/Olympus] Discussion
- Topic: SQL optimisation
- Replies: 70
- Views: 90025
Re: SQL optimisation
jmpoure,
When your current user base is most likely >90% (rough guess) using MySQL you have deal with that reality ;) . The fact is that the DBAL supports a large number of DBMS and as such you are unable to fully optimize to one DBMS to the detriment of others.
If you want to make a statement ...
When your current user base is most likely >90% (rough guess) using MySQL you have deal with that reality ;) . The fact is that the DBAL supports a large number of DBMS and as such you are unable to fully optimize to one DBMS to the detriment of others.
If you want to make a statement ...