Search found 138 matches

by Prince of area51
Wed Oct 24, 2007 11:27 am
Forum: [3.0/Olympus] Discussion
Topic: phpbb3 >RC4, db connect issues.
Replies: 7
Views: 10037

Re: phpbb3 >RC4, db connect issues.

Well if you are actually doing that then adding a config field in the config table and an option somewhere in the CP would not be a problem for one of the devs. I can understand the reasons by Devs do not want newbie (admins) to mess with the connection settings. But I'm sure your team can write a ...
by Prince of area51
Tue Oct 23, 2007 1:28 pm
Forum: Chit Chat
Topic: preg_replace syntax
Replies: 2
Views: 6588

Re: preg_replace syntax

How about:

Code: Select all

$pattern = '/^(.*)(\.)+(.*)$/';
$replace = '${1}.<br />${3}';
$string = 'Dit is een test ........Dit is een test';

echo preg_replace($pattern, $replace, $string);
The above code will output:

Code: Select all

Dit is een test ........<br />Dit is een test
by Prince of area51
Tue Oct 23, 2007 1:01 pm
Forum: [3.0/Olympus] Discussion
Topic: phpbb3 >RC4, db connect issues.
Replies: 7
Views: 10037

Re: phpbb3 >RC4, db connect issues.

I think advanced users can edit the $db->sql_connect() method call anyway :)
by Prince of area51
Tue Oct 23, 2007 12:38 pm
Forum: [3.0/Olympus] Discussion
Topic: Limit on number of replies for a topic
Replies: 7
Views: 7743

Re: Limit on number of replies for a topic

Is there any imposed limit on number of replies for a topic?

Could it easily go upto say 200,000 replies without messing up with DB?
If you are using a decent DBMS, this won't be an issue, I've got tables with million of rows, if you are worried about phpBB handling those rows; v3 is written with ...
by Prince of area51
Mon Oct 22, 2007 9:46 am
Forum: [3.0/Olympus] Discussion
Topic: format_date problem
Replies: 6
Views: 7578

Re: format_date problem

It seems the array $lang_dates is not set, try to see if it is being initiated somewhere before this function is called. Since you said its outside the forum, your code has to set it to something as well.
by Prince of area51
Mon Oct 22, 2007 9:40 am
Forum: [3.0/Olympus] Discussion
Topic: So where do we post feature requests exactly?
Replies: 6
Views: 8411

Re: So where do we post feature requests exactly?

Try posting it as a MOD Request in [3.0.x] MOD Requests , I don't think its something huge, someone would be able to do it for you :)

I think the reason this is not included because User ID is not used for cosmetic purposes and URLs are created on the PHP side (two reasons I can think of for this ...
by Prince of area51
Mon Sep 24, 2007 7:56 pm
Forum: [3.0/Olympus] Discussion
Topic: [Discussion] View new posts
Replies: 7
Views: 8650

Re: [Discussion] View new posts

I think phpBB 3.0 starts tracking posts the way you want. So once, you update (I think) all the posts will me marked read (or was it unread). phpBB 2.0 tracks by last login.
by Prince of area51
Mon Sep 24, 2007 9:30 am
Forum: [3.0/Olympus] New features discussion
Topic: Welcome to (long awaited) Hook System!
Replies: 27
Views: 59801

Re: Welcome to (long awaited) Hook System!

LOL what a boomer for an early morning monday start
/me hopes today to turn into a friday

Now since we are talking anyone like to *throw* at me what is going to be the use of it *


*(This question is not directed towards Devs, of course they can answer it on their will :P)
by Prince of area51
Sun Sep 23, 2007 9:59 pm
Forum: [3.0/Olympus] New features discussion
Topic: phpBB default FAQ -- helpful or not?
Replies: 2
Views: 5958

Re: phpBB default FAQ -- helpful or not?

I agree with you, the FAQs are so general, they are not helpful at all. The best advice I can give is we develop FAQs write here in this very thread, and give it to Devs as a proposal, they won't reject it ;)
by Prince of area51
Sun Sep 23, 2007 9:53 pm
Forum: [3.0/Olympus] New features discussion
Topic: Welcome to (long awaited) Hook System!
Replies: 27
Views: 59801

Welcome to (long awaited) Hook System!

Hi all, I just couldn't help but smile because of the hook system of phpBB, what do you guys think??

Bye bye to all those horrible file edits :D