That's OK, I'm glad we figured out what was going on
2,776 2007-06-17 19:21
Re: How does PunBB do against spam attacks (28 replies, posted in PunBB 1.2 discussion)
2,777 2007-06-17 19:21
Re: Punbb 1.3 status (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 2007-06-17 19:18
Re: Register problem (4 replies, posted in PunBB 1.2 troubleshooting)
Moved to Troubleshooting
2,779 2007-06-17 16:41
Re: Punbb 1.3 status (23 replies, posted in PunBB 1.2 discussion)
Oh.
Well, that's not going to be a core feature either
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 2007-06-17 16:26
Re: Punbb 1.3 status (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
- 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.
2,781 2007-06-17 15:22
Re: What the? (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
Closed
2,782 2007-06-17 15:10
Re: What the? (4 replies, posted in PunBB 1.2 troubleshooting)
That's an issue with your host
2,783 2007-06-17 14:08
Re: Punbb 1.3 status (23 replies, posted in PunBB 1.2 discussion)
spikeweb: What features are your users asking for that PunBB 1.3 will provide?
2,784 2007-06-17 14:04
Re: Smarty.your Punbb-hosting is cool (3 replies, posted in PunBB 1.2 discussion)
Moved to PunBB Discussion
Thanks qie
I'm actually not going to be releasing the source for PunBB-Hosting because I would then have to support other people using it
However, as people have pointed out, there is a modification to allow multiple forum hosting released already.
2,785 2007-06-17 13:53
Re: Banner problem with Structure (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 2007-06-17 13:38
Re: Banner problem with Structure (21 replies, posted in PunBB 1.2 troubleshooting)
OK, and what's the problem with the CSS I gave you?
2,787 2007-06-17 13:28
Re: Banner problem with Structure (21 replies, posted in PunBB 1.2 troubleshooting)
Your site
And I'm not understanding what you're asking to do with the logo
2,788 2007-06-17 13:27
Re: Registration language in confirmation email (5 replies, posted in Feature requests)
PunBB comes with the English language pack, all other languages need to be downloaded from the site seperately
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
2,789 2007-06-17 13:05
Re: Registration language in confirmation email (5 replies, posted in Feature requests)
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.
2,790 2007-06-17 12:58
Re: Registration language in confirmation email (5 replies, posted in Feature requests)
Moved to Feature Requests
You're right, that's right on the boundary. We'll have to discuss it a little more
2,791 2007-06-17 12:36
Re: HIGHLIGHT THE CODE (1 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Moved to Modifications.
Check out include/parser.php
2,792 2007-06-17 03:11
Re: Registration Date and the Posts per day average (19 replies, posted in PunBB 1.2 modifications, plugins and integrations)
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).
2,793 2007-06-17 02:46
Re: Registration Date and the Posts per day average (19 replies, posted in PunBB 1.2 modifications, plugins and integrations)
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);
2,794 2007-06-17 02:42
Re: Question about forum features. (3 replies, posted in PunBB 1.2 modifications, plugins and integrations)
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.
2,795 2007-06-17 01:43
Re: Question about forum features. (3 replies, posted in PunBB 1.2 modifications, plugins and integrations)
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
2,796 2007-06-17 01:39
Re: Registration Date and the Posts per day average (19 replies, posted in PunBB 1.2 modifications, plugins and integrations)
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.
2,797 2007-06-17 00:01
Re: Problem viewing old topics after host change (9 replies, posted in PunBB 1.2 troubleshooting)
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).
2,798 2007-06-17 00:00
Re: Staff post color changer (5 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Moved to Modifications
2,799 2007-06-17 00:00
Re: Icon for staff (4 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Moved to Modifications
2,800 2007-06-16 18:18
Re: Banner problem with Structure (21 replies, posted in PunBB 1.2 troubleshooting)
Code what where?