That's OK, I'm glad we figured out what was going on smile

2,777

(23 replies, posted in PunBB 1.2 discussion)

No, 1.3 has some new features and improved existing features.
The most important feature is the extension system, which is described in more detail on the blog.
http://blog.punbb.org/2007/02/14/mods-extensions/

2,778

(4 replies, posted in PunBB 1.2 troubleshooting)

Moved to Troubleshooting

2,779

(23 replies, posted in PunBB 1.2 discussion)

Oh.
Well, that's not going to be a core feature either tongue

And adding modifications now should not impact upgrading to 1.3, since 1.3 will simply be a "replace all files" type upgrade.

2,780

(23 replies, posted in PunBB 1.2 discussion)

- MP

Not sure what that is

- possibility to add a reputation in the leftbar user profile (different from ranking which is based on post number)

There is no reputation system planned for 1.3's core

- RSS out of posts and/or forums

You can already use extern.php to get a feed for a specific forum

- add images to posts (stored on the punbb server, not external url

Again, not a planned core feature

- Search Engine Friendly URLs, I tried to play with the mod found somewhere on this forum but this was not a real success

Fair enough, but SEF URLs are really more of a vanity option than anything else tongue

- use of the fulltext search from mySQL instead of the native index engine from punbb which works but takes a very large place in the DB (I'm closed to 100.000 posts with more or less 100 Mb in my DB, using fulltext search reduces a lot this size). About this, I currently use a mod but again a core integration would facilitate any upgrade

Fair enough, but as you said you already have this implemented. smile

2,781

(4 replies, posted in PunBB 1.2 troubleshooting)

Again, that's an issue with your host. You need to talk to them about it. And we don't need a blow by blow account of your battle with the MySQL server tongue
Closed

2,782

(4 replies, posted in PunBB 1.2 troubleshooting)

That's an issue with your host

2,783

(23 replies, posted in PunBB 1.2 discussion)

spikeweb: What features are your users asking for that PunBB 1.3 will provide?

2,784

(3 replies, posted in PunBB 1.2 discussion)

Moved to PunBB Discussion
Thanks qie smile

I'm actually not going to be releasing the source for PunBB-Hosting because I would then have to support other people using it tongue
However, as people have pointed out, there is a modification to allow multiple forum hosting released already.

2,785

(21 replies, posted in PunBB 1.2 troubleshooting)

#brdheader DIV.box
{
    BORDER-TOP: 0px;
    BORDER-LEFT: 0px;
    BORDER-RIGHT: 0px;
}

How's that instead?

2,786

(21 replies, posted in PunBB 1.2 troubleshooting)

OK, and what's the problem with the CSS I gave you?

2,787

(21 replies, posted in PunBB 1.2 troubleshooting)

Your site
And I'm not understanding what you're asking to do with the logo

PunBB comes with the English language pack, all other languages need to be downloaded from the site seperately smile
And if you want to create a mod, I want point you to the MDK (it can be found on the downloads page) and PunRes. Alternately, since it's a small code change, you could just add it to the PunRes wiki

On the one hand, the user has specified their language and sending out an email in that language is likely to be beneficial to the user.
On the other hand, since the user was able to register we can assume a basic knowledge of English. Plus, if the administrator were to customize the welcome email, he/she would need to customize the email for every language.

Moved to Feature Requests
You're right, that's right on the boundary. We'll have to discuss it a little more smile

Moved to Modifications.
Check out include/parser.php

The first bit I gave you is an SQL query. Execute it as you would any other.
The second bit simply stores the average posts per day in a variable. Put it where you need it, echo it out (you will need to change the variables, obviously, if you're not using it for the currently logged in user but are using information from elsewhere).

Changing registration date/time:

update prefixusers set registered = timestamp where id = #

where prefix is your database prefix, timestamp is the new unix timestamp, and # is the ID of the user whose registration time you want to change

Posts per day (for the current, logged in user):

$posts_per_day = $pun_user['num_posts'] / floor((time() - $pun_user['registered']) / 86400);

Again, it's not a style, it's simply a modification to a file.
I do think people have done similar things in the past.

You wouldn't be modding a style, you would be modding a particular file (in this case header.php)
Now, as to each part:

Hello Dunargo!
(AVatar shown)

Yes, $pun_user has everything you need to create that

Show unread posts since last visit.

That link already exists on index.php, look at the right hand side of index.php on the same line as the "Logged in as" message

Show new replies to your posts.

You would have to modify search.php to create that search feature first

Private Messages: 0 Unread, 0 Total.

Assuming you have the PM mod installed, the information should either already be accessible in some form or you can modify header.php to run a query to get the information

Total time logged in: 7 hours and 40 minutes.

That information isn't stored anywhere, although you could modify the online table and the users table to record that information

Moved to Modifications

Registration date is stored as a unix timestamp in the database. A simple update statement would change it for you.
And average posts per day would simply be
# posts / # days since registration
# posts is recorded in the database
#days is simply the current time minus the registration timestamp divided by 86400 and rounded down.

I've seen this happen before when moved_to is set to 0 as opposed to NULL (just for anyone searching and turning up topics).

Moved to Modifications

Moved to Modifications

2,800

(21 replies, posted in PunBB 1.2 troubleshooting)

Code what where? hmm