summitwynds wrote:

Bluedenim is the style.  Denim was the 1st css I did just to change the color.  I gave it a 2nd name incase I screwed something up and had to revert, at least I had the colors.

Check your settings for your account. Denim does not have the image.

http://punbb.org/docs/faq.html#faq2_6
The lesson here is not to log out when the forum tells you
"WARNING! Do not log out when the board is in maintenance mode. You will not be able to login again."
wink

pogenwurst wrote:
thegleek wrote:

this entire DST crap that GWB invoked is completely stupid and messed a lot of things up.

There are some advantages to it:

Thanks to passage of the Energy Policy Act of 2005, Daylight Saving Time will begin one month earlier in 2007 and will continue for an extra week. It's part of a phased move designed to conserve electricity and save an estimated 300,000 barrels of oil a year.

The actual effect is in dispute: Wikipedia cites http://www.ucei.berkeley.edu/PDF/csemwp163.pdf as an example of the opinion that it won't help wink

Is your account's style set to Denim, not BlueDenim?

Aha, in a username: I didn't know what field you were talking about wink
There's a check already that does a max of 25: if you want to lower it, just look in register.php for the if statement

Looks fine to me...

Err, number of characters where?

3,808

(38 replies, posted in PunBB 1.2 discussion)

spytrdr wrote:
Rickard wrote:
spytrdr wrote:

Another suggestion: When one clicks on someone's profile, all their recent posts should be shown immediately, without having to click again on "Show all posts". In short, make profiles more interesting. That's the way it was in Silicon Investor.

But if clicking on someone's profile takes you to the search results, how would you get to the actual profile?

Example:

If I click on Rickard, I want to see this:
http://punbb.org/forums/profile.php?id=2

AND ALSO THIS (COMBINED, in the same profile page, without having to do a second click on "show all posts")
http://punbb.org/forums/search.php?acti … ;user_id=2

And maybe also the poster's pic, if he/she wants to show one. Or a place to add a (longer) comment, quote or something that may give a better idea of who the person is.
That would make profiles much more interesting and meaningful without adding any clutter, imho.

That sounds like a perfect candidate for an extension smile

3,809

(38 replies, posted in PunBB 1.2 discussion)

guardian34 wrote:

I think Oxygen in 1.3 looks better than Oxygen in 1.2. But if you don't like a blue and white look, then you don't like a blue and white look.

Indeed: I think that's the main issue.
Obviously Oxygen doesn't please everyone, but there isn't just going to be Oxygen with 1.3 wink

spytrdr wrote:

I would like 1.3 to look exactly like this BY DEFAULT, out of the box:
http://forum.textdrive.com

It's the theme/style I use right now, so neat and elegant.

Mmm, personally I think that style is a bit bland tongue

FIND

$sort_by = (!isset($_GET['sort_by']) || $_GET['sort_by'] != 'username' && $_GET['sort_by'] != 'registered' && ($_GET['sort_by'] != 'num_posts' || !$show_post_count)) ? 'username' : $_GET['sort_by'];
$sort_dir = (!isset($_GET['sort_dir']) || $_GET['sort_dir'] != 'ASC' && $_GET['sort_dir'] != 'DESC') ? 'ASC' : strtoupper($_GET['sort_dir']);

REPLACE WITH

$sort_by = (!isset($_GET['sort_by']) || $_GET['sort_by'] != 'username' && $_GET['sort_by'] != 'registered' && ($_GET['sort_by'] != 'num_posts' || !$show_post_count)) ? 'registered' : $_GET['sort_by'];
$sort_dir = (!isset($_GET['sort_dir']) || $_GET['sort_dir'] != 'ASC' && $_GET['sort_dir'] != 'DESC') ? 'DESC' : strtoupper($_GET['sort_dir']);

3,811

(9 replies, posted in Programming)

elbekko wrote:

It should hide stopwords, as they're not included in the table?

Right, I wasn't thinking there for a second wink

3,812

(2 replies, posted in PunBB 1.2 discussion)

Not as far as I know: if you want to convert, my suggestion would be to convert to a system that PunBB already can convert from (ie: phpBB) and then convert from there to PunBB

http://punbb.org/forums/viewtopic.php?id=2658

Jérémie wrote:

Well, an auto-DST would be quite nice. If one is registered and contributing to, say, 10 forums, having to change a setting twice a year on 10 websites in sequence is a pain in the lower parts.

On the other hand, the worldwide DST system is a huge mess. Without a clean GPL library, maybe more fitted for an extension at first?

Even with a GPL library, calculating it accurately for every user on every server is a mess: some people in certain timezones don't observe DST while others do, for example.

guardian34 wrote:
Smartys wrote:

DST is something that needs to be handled by the users

Changing my timezone feels odd though. *shrug*

Yes, and in 1.3 you're checking a box to toggle it on/off. I do that on my digitial clock at home (the button thing): it seems fine to me tongue

3,815

(9 replies, posted in Programming)

Dr.Jeckyl wrote:

is there a way (mod/hack/etc) to do a 1 time search of all the posts and come up with a list of the top 10/20/50/100 words used? i have a project in mind that this info would be useful. of course it would have to adhere to the normal search criteria and functionality ie: use the stop words list and forum specific search.

any help is appreciated.

What Jansson said, keeping in mind that the query is not per forum.

Edited, as per what elbekko said

Smartys wrote:

Enable debug mode, paste the complete error here

Be a little patient wink

FIND

<? $pun_config['o_base_url'] ?>

REPLACE WITH

<?php echo $pun_config['o_base_url'] ?>
nickfzx wrote:

universtities and other public places often have cookie's disabled on computers.

At my uni i tried loggin in and wondered why it wasn't working...luckily they hadn't locked the browsers control panel so i just turned cookies back on.

Really? I've never had that experience: I must have gotten lucky smile

3,819

(38 replies, posted in PunBB 1.2 discussion)

Rickard wrote:
spytrdr wrote:

I hope the changes in 1.3 are under the hood only but the general look & feel of the board remains exactly the same. As elegant and neat as it is right now.
From the screenshots of 1.3 I've seen that doesn't seem to be the case and it's looking slightly uglier.

I disagree. I definitely prefer the current look and feel of 1.3 over 1.2. Having worked with 1.3 a lot, I just think 1.2 looks dated.

I agree with Rickard: what do you think looks ugly about it spytrdr?

nickfzx wrote:

anyway to have people logged out after 2 days (or n days) of inactivity?

Put an if statement before setting the cookie, if expire is more than n days (in seconds) in the future, set expire to n days (in seconds) in the future

You didn't modify the line I asked you to wink

There's no patch necessary: DST is something that needs to be handled by the users/forum admins

How odd, it was working fine when I checked it before: paste your code for header.php again?

Looks like it's working fine to me, why?

Chris Powell wrote:

not sure how you got that, where do i change this code though

cheers

chris

I got it from your paste of header.php in the posts above wink