Search found 138 matches

by Prince of area51
Thu May 15, 2008 7:11 pm
Forum: [3.0/Olympus] New features discussion
Topic: Welcome to (long awaited) Hook System!
Replies: 27
Views: 59726

Re: Welcome to (long awaited) Hook System!

At the moment there are only four. I believe I read somewhere phpBB 3.2.x will have full working events system (I hope events = hooks).
by Prince of area51
Mon May 05, 2008 3:56 am
Forum: [3.0/Olympus] Discussion
Topic: [SOLVED] Nested Block Variables/Templating Question
Replies: 3
Views: 6161

Re: Nested Block Variables/Templating Question

This example might be useful:
while($topic = $db->sql_fetchrow($result))
{
$template->assign_block_vars('topic', array('TOPIC_ID' => $topic['topic_id']));

while($post = $db->sql_fetchrow($result))
{
$template->assign_block_vars('topic.post', array('POST_ID' => $post['post_id']));
}
}

For ...
by Prince of area51
Sun Apr 13, 2008 10:50 pm
Forum: [3.0/Olympus] Discussion
Topic: Ban by IP address, unban by name?
Replies: 6
Views: 15667

Re: Ban by IP address, unban by name?

Yes, they do change with ADSL but the range jumps more for dial up (at least in my case). I had one user connecting with 15+ IP addresses :|
by Prince of area51
Sun Apr 13, 2008 10:50 am
Forum: [3.0/Olympus] Discussion
Topic: Ban by IP address, unban by name?
Replies: 6
Views: 15667

Re: Ban by IP address, unban by name?

I second this because most of users on my board use dial up. This definately be a step in the right direction. Btw nice suggestion :)
by Prince of area51
Mon Mar 31, 2008 8:24 pm
Forum: Chit Chat
Topic: Future plan of phpBB
Replies: 1
Views: 7032

Re: Future plan of phpBB

Just to add to WhiteWolfSix, phpBB 3.0.x is bug fixes/small improvements for phpBB 3.0.0 whereas phpBB 3.2 is going to be an upgrade with many more features. The big difference is phpBB 3.2 does not support version below PHP5 and MySQL5.0

PS: By the way, nice work on the Urdu site, I'm glad someone ...
by Prince of area51
Sat Mar 22, 2008 8:56 pm
Forum: [3.0/Olympus] Discussion
Topic: phpBB 3.2 Discussion
Replies: 257
Views: 386806

Re: phpBB 3.2 Discussion

@Yawnster
Really interesting post Yawnster, I would really like if Community Coding Projects is started again. My summer is going to free (after four years of pain I'm graduating, yay!!) so I would love to a pick a project or two. I second all the integrations you have asked.
by Prince of area51
Tue Mar 11, 2008 8:31 pm
Forum: [3.0/Olympus] Discussion
Topic: PhpBB 3.0 cookie management
Replies: 2
Views: 6521

Re: PhpBB 3.0 cookie management

Its not the perfect place to ask because this forum is for the development purposes. You will get more support if you ask in 3.0.x Support Forum .

I also do not think you should run the SVN version of phpBB because that code might have some other bugs as that code is work in progress. What I've ...
by Prince of area51
Tue Mar 04, 2008 3:25 pm
Forum: [3.0/Olympus] Discussion
Topic: Abstraction .. Just a thought
Replies: 2
Views: 3997

Abstraction .. Just a thought

I have been using phpBB for quite some time and I'm so impressed by the code (and the standards), that I use it now in my everyday life to develop all sorts of professional applications. I go through phpBB3 code all the time, seeing how things are done and how problems are solved. One thing I have ...
by Prince of area51
Tue Mar 04, 2008 2:52 pm
Forum: [3.0/Olympus] New features discussion
Topic: Some suggestions
Replies: 4
Views: 13495

Re: Some suggestions

Did someone even read this?
Actually the post is in a some-what wrong place .. The forum rules clearly states:

Discuss features as they are added to the new version. Give us your feedback. Don't post bug reports, feature requests, support questions or suggestions here. Feature requests are ...
by Prince of area51
Thu Feb 28, 2008 7:29 pm
Forum: [3.0/Olympus] Discussion
Topic: How to use login_db in auth_db.php?
Replies: 1
Views: 11361

Re: How to use login_db in auth_db.php?

Actually there is a bit more than that. The header should be something like:

/**
* @ignore
*/
define('IN_PHPBB', true);
// Specify the path to you phpBB3 installation directory.
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './forum/';
$phpEx = substr(strrchr(__FILE ...