Didn't I update that... :S
2,451 2006-03-10 15:24
Re: Board Logo 1.0 (12 replies, posted in PunBB 1.2 modifications, plugins and integrations)
2,452 2006-03-09 22:00
Topic: Random Bash Quote 1.0 (0 replies, posted in PunBB 1.2 modifications, plugins and integrations)
##
##
## Mod title: Random Bash Quote
##
## Mod version: 1.0
## Works on PunBB: Should work on every version
## Release date: 2006-03-09
## Author: El Bekko (elbekko@gmail.com)
##
## Description: Adds a random bash quote to your forum.
##
## Difference with
## previous version: /
##
## Affected files: main.tpl
## header.php
##
## Affects DB: No
##
## Notes: May cause a slight lag to your site (due to the slow bash.org)
##
## 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.
##
##
2,453 2006-03-09 21:29
Re: Adding an image to header (12 replies, posted in PunBB 1.2 troubleshooting)
No, but I guess it'll be easily modified to do that
2,454 2006-03-09 20:09
Re: Adding an image to header (12 replies, posted in PunBB 1.2 troubleshooting)
2,455 2006-03-09 17:44
Re: Group Forum Subscribe 1.4 (34 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Then it should work... I have no clue why it doesn't, as it works fine for me and the guy I made it for, so yah...
2,456 2006-03-08 19:36
Re: [SOLVED] My avatar truncated.. in IE only (13 replies, posted in PunBB 1.2 troubleshooting)
Well, as PunBB doesn't generate your avatar but just puts it on the page with an img tag, I suppose it must be a) something in your style or b) IE
2,457 2006-03-08 19:31
Re: [SOLVED] My avatar truncated.. in IE only (13 replies, posted in PunBB 1.2 troubleshooting)
I see... can't really be a PunBB problem tho.
2,458 2006-03-08 19:19
Re: [SOLVED] My avatar truncated.. in IE only (13 replies, posted in PunBB 1.2 troubleshooting)
Loads fine for me...
2,459 2006-03-08 17:53
Re: PunBB Miniportal v1.2.x (128 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Well, find the right place in index.php (search for some keywords) and paste that code there.
2,460 2006-03-08 12:48
Re: Group Forum Subscribe 1.4 (34 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Well, make sure you have access to the mail() function.
2,461 2006-03-06 21:26
Re: integrating with phpnuke 7.8 (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Well, there are some CMS systems specifically designed for PunBB, like PunTal
2,462 2006-03-06 20:21
Re: Ideal PunBB for Academic Use (7 replies, posted in Feature requests)
3. Recently made a mod for it
2,463 2006-03-06 18:18
Re: Duplicate function names (3 replies, posted in PunBB 1.2 troubleshooting)
Try, when creating functions, using a test page with function_exists() So you can easily check if that certain function has already been defined before. What you could do too is create a class with your own functions in it
2,464 2006-03-06 18:17
Re: Minor redirect problem (1 replies, posted in PunBB 1.2 bug reports)
I have had many problems with integration before when I had the testing site in another folder. I had to modify about each link to include PUN_ROOT. One hell of a job, and this is one of those things
2,465 2006-03-06 18:15
Re: Opensource? (6 replies, posted in PunBB 1.2 discussion)
You have to give in some parameters for extern.php to work
INSTRUCTIONS
This script is used to include information about your board from
pages outside the forums and to syndicate news about recent
discussions via RSS. The script can display a list of recent
discussions (sorted by post time or last post time), a list of
active users or a collection of general board statistics. The
script can be called directly via an URL (for RSS), from a PHP
include command or through the use of Server Side Includes (SSI).The scripts behaviour is controlled via variables supplied in the
URL to the script. The different variables are: action (what to
output), show (how many topics to display), fid (the ID or ID's of
the forum(s) to poll for topics), nfid (the ID or ID's of forums
that should be excluded) and type (output as HTML or RSS). The
only mandatory variable is action. Possible/default values are:action: active (show most recently active topics) (HTML or RSS)
new (show newest topics) (HTML or RSS)
online (show users online) (HTML)
online_full (as above, but includes a full list) (HTML)
stats (show board statistics) (HTML)show: Any integer value between 1 and 50. This variables is
ignored for RSS output. The default is 15.fid: One or more forum ID's (comma-separated). If ignored,
topics from all guest-readable forums will be polled.nfid: One or more forum ID's (comma-separated) that are to be
excluded. E.g. the ID of a a test forum.type: RSS. Anything else means HTML output.
Here are some examples using PHP include().
Show the 15 most recently active topics from all forums:
include('http://host.com/forums/extern.php?action=active');Show the 10 newest topics from forums with ID 5, 6 and 7:
include('http://host.com/forums/extern.php?action=new&show=10&fid=5,6,7');Show users online:
include('http://host.com/forums/extern.php?action=online');Show users online with full listing of users:
include('http://host.com/forums/extern.php?action=online_full');Show board statistics:
include('http://host.com/forums/extern.php?action=stats');Here are some examples using SSI.
Show the 5 newest topics from forums with ID 11 and 22:
<!--#include virtual="forums/extern.php?action=new&show=5&fid=11,22" -->Show board statistics:
<!--#include virtual="forums/extern.php?action=stats" -->And finally some examples using extern.php to output an RSS 0.91
feed.Output the 15 most recently active topics:
http://host.com/extern.php?action=active&type=RSSOutput the 15 newest topics from forum with ID=2:
http://host.com/extern.php?action=activ … &fid=2Below you will find some variables you can edit to tailor the
scripts behaviour to your needs.
2,466 2006-03-06 18:12
Re: Smiley Menu 0.7 (28 replies, posted in PunBB 1.2 modifications, plugins and integrations)
:S parse_message() converts the smiley_text entry to the full image links, which should be stored in the smilies array... And so you code is very, very odd As it shouldn't work at all. I'll run some checks, but yah...
EDIT: As it should work, but it doesn't with you, I developed a new way that should do the trick even better I'll release 0.5 now.
EDIT2: You can download at http://www.punres.org/viewtopic.php?id=1184
2,467 2006-03-05 21:19
Re: Suggestion here! (2 replies, posted in General discussion)
Why not just post them in Programming?
2,468 2006-03-05 21:18
Re: Adding a header and a footer to punBB (5 replies, posted in PunBB 1.2 modifications, plugins and integrations)
By using enough ../-es in your path I guess so.
2,469 2006-03-05 20:13
Re: [SOLVED] Changing 'Sticky' to something else (3 replies, posted in PunBB 1.2 modifications, plugins and integrations)
In the language files
2,470 2006-03-05 19:56
Re: [Request] Use email address to login rather than username (8 replies, posted in PunBB 1.2 modifications, plugins and integrations)
On the wiki. But I don't really get the syntax of the DokuWiki tho
2,471 2006-03-05 19:33
Re: Move Post 1.3 + Merge Topics (121 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Try uploading the images...
2,472 2006-03-05 19:10
Re: [Request] Use email address to login rather than username (8 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Ok, I'll put it on soonish
2,473 2006-03-04 23:48
Re: [Request] Use email address to login rather than username (8 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Only the login part
2,474 2006-03-04 20:27
Re: Punbb.org on a text based browswer :) (links) (7 replies, posted in General discussion)
Well, I'm trying to get Lynx working, but the compiling is a bit of a problem, since the gcc commands doesn't seem to exist in XP... X(
2,475 2006-03-04 20:10
Re: Punbb.org on a text based browswer :) (links) (7 replies, posted in General discussion)
It looks pretty nice =o Any chance in you telling me how to open a connection to a server with that tool?