Search found 182 matches

by sparkster
Fri Jan 16, 2004 12:27 am
Forum: [3.0/Olympus] Discussion
Topic: Highlighted usernames in the memberlist
Replies: 6
Views: 4928

Re: Highlighted usernames in the memberlist

Maybe he's talking about the fact that the current memberlist doesn't colour username based on their usergroup ;)
by sparkster
Fri Jan 16, 2004 12:22 am
Forum: [3.0/Olympus] Discussion
Topic: Question about Login System
Replies: 19
Views: 13720

Re: Question about Login System

Well I don't mean to be a rude *beep*, but if you can't figure out which function/object handles authentication, then you're going to have trouble writing a worthwhile mod :?
by sparkster
Thu Jan 15, 2004 10:02 pm
Forum: [3.0/Olympus] Discussion
Topic: Question about Login System
Replies: 19
Views: 13720

Re: Question about Login System

Yeah, I'm probably going to write a blog that works off the forum but I still think it'd be safer to wait a little.
by sparkster
Thu Jan 15, 2004 9:54 pm
Forum: [3.0/Olympus] Discussion
Topic: Any news?
Replies: 6
Views: 7314

Re: Any news?

You can tell the milestone that phpBB is at by looking at the page footer. Powered by phpBB 2.1.2 © 2002, 2003 phpBB Group The last digit is the milestone. For example, in phpBB 2.1.x, x is the milestone. Right now its 2.1.2, and the last digit is 2, so Milestone 2 is completed. When M3 is done, it...
by sparkster
Thu Jan 15, 2004 9:51 pm
Forum: [3.0/Olympus] Discussion
Topic: Question about Login System
Replies: 19
Views: 13720

Re: Question about Login System

Seriously, I wouldn't start writing a mod for this release just yet ;) I haven't had a decent look yet, but I'd imagine that common.php should do the trick, make sure you define() IN_PHPBB first. common.php includes all the files you should generally need and it instantiates the objects you should n...
by sparkster
Thu Jan 15, 2004 5:04 am
Forum: [3.0/Olympus] New features discussion
Topic: Looks like custom profile fields were added!
Replies: 11
Views: 11755

Re: Looks like custom profile fields were added!

Yeah, it's help if CODE tags weren't parsed for smilies though ;)

Code: Select all

[quote]
test
[/quote]
by sparkster
Thu Jan 15, 2004 4:53 am
Forum: [3.0/Olympus] New features discussion
Topic: Looks like custom profile fields were added!
Replies: 11
Views: 11755

Re: Looks like custom profile fields were added!

Yeah, it's added but as of yesterday didn't quite work ;)
by sparkster
Thu Jan 15, 2004 4:47 am
Forum: [3.0/Olympus] Discussion
Topic: How much new technology is reflected with 2.2?
Replies: 8
Views: 6624

Re: How much new technology is reflected with 2.2?

PHP5 is fully backward-compatible with PHP4. The new object model has been drastically changed but there is a flag in php.ini file to force it to act in the same manner as PHP4's OO behaviour so if desperate (although it shouldn't be necessary), this can be altered with ini_set(). According to the i...
by sparkster
Thu Jan 15, 2004 4:43 am
Forum: [3.0/Olympus] Discussion
Topic: hmm...where are the forums?
Replies: 7
Views: 6916

Re: hmm...where are the forums?

Open up phpMyAdmin or MySQL-Front or whatever and run this query.

Code: Select all

UPDATE
     phpbb_forums
SET
     display_on_index = 1
Unless you've messed with permissions, this should fix it :)