teenagegluesniffer: http://punbb.org/forums/viewtopic.php?id=2295
751 2006-08-11 11:51
Re: Private Message mod v1.2.2 (204 replies, posted in PunBB 1.2 modifications, plugins and integrations)
752 2006-08-11 00:06
Re: Private Message mod v1.2.2 (204 replies, posted in PunBB 1.2 modifications, plugins and integrations)
You obviously have the wrong zip, because the readme is certainly there.
753 2006-08-11 00:05
Re: Different style sheet when logged in and out! (8 replies, posted in PunBB 1.2 troubleshooting)
Change the style in the display section of your profile.
754 2006-08-11 00:00
Re: trouble doing 2 things that maybe can't be done... at least not by me (2 replies, posted in PunBB 1.2 troubleshooting)
Smartys: I believe 1 refers to the statisics at the bottom of the forum index and the topic / post counts for each individual forum.
jr78: place this in style/imports/base.css for #1 (assuming you want the numbers hidden in all styles):
#punindex .tc2, #punindex .tc3, DIV#brdstats {DISPLAY: none; VISIBILITY: hidden}
Haha, I just realized that "brd" stands for "board". God I'm slow.
756 2006-08-10 23:53
Re: How to register or login user automatically? (3 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Moved to integration.
757 2006-08-10 12:52
Re: replacing timestamps with "posted 47 minutes ago" etc. (12 replies, posted in Feature requests)
There's no mod out there to do this that I know of, but this PHP class has a function to print out a date in that format. With a little modding, you might be able to get PunBB to use that.
758 2006-08-10 12:49
Re: Punk music forum (19 replies, posted in PunBB 1.2 show off)
What font is that in the banner? I like it.
759 2006-08-10 12:46
Re: Simple access control using integration (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
PunBB's message() function?
Just put, for example:
if($pun_user['g_id'] > PUN_ADMIN)
message($lang_common['No view']);
after you include the lang files, common.php, header.php, etc but before what you want to be displayed to certain people. Assuming "No view" is a valid lang entry, anyone but admins will receive an error message. No else {} is required.
760 2006-08-10 12:37
Re: A new user was registered with the same IP address as you one hour ago (6 replies, posted in PunBB 1.2 troubleshooting)
Comment out or remove this code from register.php:
// Check that someone from this IP didn't register a user within the last hour (DoS prevention)
$result = $db->query('SELECT 1 FROM '.$db->prefix.'users WHERE registration_ip=\''.get_remote_address().'\' AND registered>'.(time() - 3600)) or error('Unable to fetch user info', __FILE__, __LINE__, $db->error());
if ($db->num_rows($result))
message('A new user was registered with the same IP address as you within the last hour. To prevent registration flooding, at least an hour has to pass between registrations from the same IP. Sorry for the inconvenience.');
761 2006-08-09 21:49
Re: blog:cms (24 replies, posted in General discussion)
I know the project didn't get off the ground, I just thought some of the discussion in that thread might be helpful. Some good points were made in that thread.
762 2006-08-09 21:39
Re: modifying my styles (22 replies, posted in PunBB 1.2 troubleshooting)
I'm not sure why the repeat is funky for the background (if I were you I'd do a little research on the repeat property), but I can tell you that it's not going behind the categories/header/footer because each has it's own background - the page's background does not apply to them. Getting rid of their backgrounds then using "BACKGROUND: inherit" might work, but I'm not quite sure.
763 2006-08-09 21:30
Re: blog:cms (24 replies, posted in General discussion)
ops my bad... but still a fully cms dev off of punbb.. that not a bad idea.
This has been discussed quite heavily before: http://punbb.org/forums/viewtopic.php?id=4709
764 2006-08-09 21:27
Re: i translated (4 replies, posted in PunBB 1.2 discussion)
Send the files to the user that created the chatbox mod, pokemon_jojo.
765 2006-08-09 21:26
Re: modifying my styles (22 replies, posted in PunBB 1.2 troubleshooting)
Can we have a link or a screenshot (preferrably a link)?
766 2006-08-09 19:28
Re: How to import language packs? (4 replies, posted in PunBB 1.2 troubleshooting)
Yes. Just copy the folder named "Norwegian" into the folder named "lang" in your PunBB install, then select it as the default language in the admin options.
767 2006-08-09 19:02
Re: mailing (4 replies, posted in PunBB 1.2 troubleshooting)
Go to the downloads page and download the Broadcast Email plugin.
768 2006-08-09 18:33
Re: guest only view categories (1 replies, posted in PunBB 1.2 troubleshooting)
769 2006-08-09 18:28
Topic: Google Video BBCode (0 replies, posted in PunBB 1.2 modifications, plugins and integrations)
##
##
## Mod title: Google Video BBCode
##
## Mod version: 1.0
## Works on PunBB: 1.2.12
## Release date: 2006-08-07
## Author: Brian H. (pogenwurst [aT] gmail {D0t} com)
##
## Description: Adds [googlevid] BBCode to embed videos w/in posts
##
## Affected files: include/parser.php
##
## Affects DB: No
##
## Notes: By request! :)
## Syntax: [googlevid]URL[/googlevid]
## URLs MUST be in the format below:
## http://video.google.com/videoplay?docid=whatever_the_id_is
## demo at http://forums.pogenwurst.com/viewtopic.php?id=285
##
## 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.
##
##
By request.
770 2006-08-09 12:41
Re: What the hell is this !!!! (9 replies, posted in PunBB 1.2 discussion)
The statistics software I use, BBClone, also has built-in links to lookup IPs on Arin.net.
771 2006-08-09 12:38
Re: What editor do you use for php? (114 replies, posted in Programming)
I can't say I'm much of a PHP programmer (or programmer at all, for that matter), but I do my coding in SciTE. It's available for both Windows and Linux, and like Notepad++ it's based upon Scintilla.
772 2006-08-09 01:53
Re: What the hell is this !!!! (9 replies, posted in PunBB 1.2 discussion)
No match, but that doesn't really say a whole lot.
773 2006-08-09 01:06
Re: What the hell is this !!!! (9 replies, posted in PunBB 1.2 discussion)
roflmao
tool25.png is a defacing toolIt's someone trying to abuse a bug that was fixed in... 1.1.5 (pun_root was a variable back then, so it was a very serious vulnerability)
Hmm... someone found my forum today searching for "powered by punbb 1.1.3" (except without the quotes) (the 1.1.3 was from within a post). I wonder if it might be the same guy...
774 2006-08-08 20:52
Re: Changing text colours in different parts of the forums (6 replies, posted in PunBB 1.2 troubleshooting)
linkst
P.S. For little things like this, please at least take a quick look at the source (markup) before asking (assuming you didn't).
775 2006-08-08 20:47
Re: Changing text colours in different parts of the forums (6 replies, posted in PunBB 1.2 troubleshooting)
"P.postlink A" and "DIV.linkst LI A" should probably work.
P.S. If you only want it changed on the topic listing then put "#punviewforum " before each.
EDIT: Actually, "DIV.linkst A" might cover both links.
EDIT 2: FYI that would change the page number links as well.