What did you upgrade from?
77 2005-06-24 22:29
Re: miniportal issue (14 replies, posted in PunBB 1.2 troubleshooting)
Down in
<?php
echo pun_news(1, 5, 0);
require PUN_ROOT.'footer.php';
try
<?php
echo pun_news(*FID*, *TOPICS*, *TRUNCATE*);
require PUN_ROOT.'footer.php';
instead, where *FID* is the forum ID, *TOPICS* is the # of topics to display, and *TRUNCATE* is either 0 (don't truncate) or 1 (do truncate). At least, I think.
78 2005-06-23 18:03
Topic: [Release] Extra BBCodes 1.0.2 (1 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Description:
This mod adds certain, needed BBCodes.
Affected files:
include/parser.php
mod_easy_bbcode.php (If Rickard's Easy BBCode 1.0.1 is installed)
##
##
## Mod title: Extra BBCodes
##
## Mod version: 1.0.2
## Works on PunBB: 1.2.5
## Release date: 2005-06-19
## Author: ScottyWZ (mods AT scottywz DOT com)
##
## Description: This mod adds certain, needed BBCodes.
##
## Affected files: include/parser.php
## mod_easy_bbcode.php (If Rickard's Easy BBCode 1.0.1 is)
## (installed )
##
## Affects DB: No
##
## Notes: Adds these BBCodes:
## [font= FACE ] [/font] for font face
## [hr /] and [hr] = <hr /> (Horizontal Line)
## [table], [caption], [tr], and [td] for tables
## [s] [/s] for strikethrough (<del> </del>)
## [pre] [/pre] for fixed-width formatting
## [sup] [/sup] and [sub] [/sub] for superscripting
## and subscripting, respectively
## [h] [/h] for highliting text
## [align= ALIGNMENT ] [/align] fror text alignment
## [ul] [/ul], [ol] [/ol], [uli] [/uli], and [oli]
## [/oli] (by request) for lists AND
## [style= STYLE ] [/style] for font size
##
## You'll have to edit the help.php file to document them
## if you want. Also includes additional instructions if
## you have Rickard's Easy BBCode 1.0.1 installed.
##
## DISCLAIMER: Please note that "mods" are not officially supported by
## PunBB. Installation of this modification is done at your
## own risk. Backup your forum database and any and all
## applicable files before proceeding.
##
##
79 2005-06-23 17:56
Re: Upgrade 1.0.1 to 1.2.5? (16 replies, posted in PunBB 1.2 discussion)
Someone could plant some malicious JavaScript in a post and do something bad to one's computer. I'm thinking maybe add an enable HTML option and disable <script> elements and on***** attributes (on***** being onClick, onLoad, etc.) and links with javascript:... would be nice.
80 2005-06-23 17:47
Re: PunBB vs PHPBB (49 replies, posted in General discussion)
PunBB
+ No COPPA compliance (many people, like myself, don't have the time, money, or big mailboxes to comply with that thing) If someone wants to comply with it in PunBB, they can make a mod to do so.
+ See most of above
- See most of above
phpBB
+ See most of above
- COPPA Compliance (see above)
- See most of above
81 2005-06-21 20:20
Re: More Powerful Ban (3 replies, posted in Feature requests)
It replaces all pages with banned message (in my experience; I haven't ever been banned before).
82 2005-06-21 20:16
Re: Forbid defined groups to view the userlist. (9 replies, posted in Feature requests)
Right. My mistake.
83 2005-06-21 20:09
Re: Can we read emails thru sms? (3 replies, posted in General discussion)
Perhaps you could just have your provider forward those emails to your phone? For example, a phone email address is like 1234567890@cingularme.com
Check with your provider.
Or leave your PC on 24/7 (I do, my PC is a file/print [mostly print] server on my network) and have your e-mail program forward e-mails to your phone's e-mail address (like above)
84 2005-06-21 20:06
Re: Removal of "Posted by name" in the Last Post column (3 replies, posted in PunBB 1.2 troubleshooting)
Around line 145, replace
$last_post = '<a href="viewtopic.php?pid='.$cur_forum['last_post_id'].'#p'.$cur_forum['last_post_id'].'">'.pun_htmlspecialchars($cur_forum['subject']).'</a> <br />'.$lang_common['by'].' '.pun_htmlspecialchars($cur_forum['last_poster']).'<br />at '.format_time($cur_forum['last_post']);
with
$last_post = '<a href="viewtopic.php?pid='.$cur_forum['last_post_id'].'#p'.$cur_forum['last_post_id'].'">'.pun_htmlspecialchars($cur_forum['subject']).'</a> <br />at '.format_time($cur_forum['last_post']);
86 2005-06-21 01:55
Topic: Disable BBCode (0 replies, posted in Feature requests)
I was on a phpBB forum, and there was an option to disable BBCode in a particular post. I don't know if that was built-in or a mod, but it would be nice in PunBB.
87 2005-06-21 00:22
Re: PunBB as CMS? (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
My Web site uses PunBB as a CMS. It really takes a lot of modification. I could zip it up for you once I add the ability to change the style withot registering. (I'm just having a problem with setting a cookie.)
And, for the page urls, if they're PHPs, you can do
<?php
header("Location: http://www.somestupidsite-justkidding.com/pun/viewtopic.php?id=###"); // redirect
exit; // Exit
?>
where http://www.somestupidsite-justkidding.com/pun is the address of your PunBB installation, and ### is the topic (or, page) ID once you've made the big move.
Or you could use a meta or JavaScript redirect.... PHP redirect is probably the most compatible.
88 2005-06-20 22:52
Re: Need favor with not over http SVN (4 replies, posted in General discussion)
Do you need the latest version fo Inno Setup or all of them? I don't understand.
89 2005-06-20 21:51
Re: how to add recent post to the miniportal (3 replies, posted in PunBB 1.2 troubleshooting)
If there's a recent posts on the Index page, just copy the news code from that into a file called news.php in the PunBB root. You maybe could make it just put the subject in and make the subject a link to the whole post. Then include the news.php file in main.tpl like this: <pun_include "news.php"> Don't include header.php, common.php, footer.php in the news.php file.
Of course you could call news.php whatever on earth you want.
And about the extern.php errors, what do they say?
90 2005-06-20 21:09
Re: Opera Lies About Popularity Status (13 replies, posted in General discussion)
And why would someone use Opera for free when it has banner ads if they could get Firefox that doesn't have any banner ads on it for free? It's just a personal preference....
91 2005-06-20 20:00
Re: Opera Lies About Popularity Status (13 replies, posted in General discussion)
I just prefer PunBB.
92 2005-06-20 18:44
Re: Opera Lies About Popularity Status (13 replies, posted in General discussion)
I tried Opera earlier (not recently) and liked it for a little while, but later I didn't like it (I don't remember why). Now, they're being stupid to say they got the PC World World Class Award. What World Class Award?
But I do like the built-in e-mail....
vBulletin for the forums? Why?
93 2005-06-20 18:18
Re: Error: Unable to insert group forum permissions. (14 replies, posted in PunBB 1.2 bug reports)
What have you done to the DB since you first got the error?
94 2005-06-20 16:28
Re: Undefined message with custom field - RESOLVED (5 replies, posted in PunBB 1.2 troubleshooting)
What field does it jump to when you press OK?
95 2005-06-20 16:26
Re: is 1.3 stable? stable 1.3 ETA? (63 replies, posted in Feature requests)
I think 2005/06/01 (YYYY/MM/DD).
96 2005-06-20 16:16
Re: Error: Unable to insert group forum permissions. (14 replies, posted in PunBB 1.2 bug reports)
Any mods installed?
97 2005-06-20 16:14
Re: Undefined message with custom field - RESOLVED (5 replies, posted in PunBB 1.2 troubleshooting)
Should it say req_prov and req_age instead of yec_prov and yec_age?
98 2005-06-20 15:56
Re: Web site Statistics (6 replies, posted in General discussion)
Unrelated, one search keyphrase used was "powered by punbb 1.1.4" And I use PunBB 1.2.5.
Anyone here use Linux?
99 2005-06-20 01:26
Re: Installed mini portal getting error? (11 replies, posted in PunBB 1.2 troubleshooting)
Do you find $output anywhere else in index.php?
100 2005-06-20 00:55
Re: Installed mini portal getting error? (11 replies, posted in PunBB 1.2 troubleshooting)
Tell me what line 29 of index.php says.
And, for the forum ID, just look at the URL. Where it says ...viewforum.php?id=###, ### is the forum ID.