Sorry, I was still sleepy
1,852 2006-07-17 13:18
Re: PunBB "Userbar" (13 replies, posted in General discussion)
Pretty nice Although I don't like how you chopped a part off the logo...
1,853 2006-07-17 13:17
Re: [request] Auto Introduction Post (8 replies, posted in PunBB 1.2 modifications, plugins and integrations)
How do you mean? Just a post that displays the information they entered when signing up?
1,854 2006-07-17 13:15
Re: $db object not global (12 replies, posted in PunBB 1.2 bug reports)
To solve this problem: if you are getting this error when calling a function, make sure you put
global $db;
at the beginning of it.
Also, be sure to load common.php at the start of your script.
1,855 2006-07-16 21:00
Re: Free PHP/HTML editor (99 replies, posted in Programming)
Sounds promising, downloading it now ^^
1,856 2006-07-16 19:00
Re: Automated Smilies (14 replies, posted in Feature requests)
elbekko wrote:I think coppermine integration has been done, seach for it
And for your other question: I think that will be in PunBB 1.3
glad to hear it... i'm just a bit concerned about the risks with coppermine coming from the phpBB family. I have a phpBB forum on one of my sites already - biggest mistake i made!! i spend more time dealing with hackers & spammers than i do posting messages on the damn thing!
Use the migration tool to switch to PunBB then
Now, I don't know how unsafe Coppermine is...
1,857 2006-07-16 18:53
Re: bbcode [size=xx] (3 replies, posted in PunBB 1.2 troubleshooting)
I wouldn't be doing it in em =/ Change em to px and you're a tad safer.
1,858 2006-07-16 18:51
Re: Automated Smilies (14 replies, posted in Feature requests)
I think coppermine integration has been done, seach for it
And for your other question: I think that will be in PunBB 1.3
1,859 2006-07-16 18:05
Re: Password Protect (3 replies, posted in PunBB 1.2 discussion)
You can limit the admin section to admins with existing forum features
Go to Administration > Forums > Edit and use the checkboxes at the bottom.
1,860 2006-07-16 16:26
Re: New PunBB logo proposal (76 replies, posted in PunBB 1.2 discussion)
Those t-shirts look pretty nice
1,861 2006-07-16 15:44
Re: New PunBB logo proposal (76 replies, posted in PunBB 1.2 discussion)
I played around with the logo a bit:
(use firefox, png transparent)
1,862 2006-07-15 18:56
Re: style a single nav link? (25 replies, posted in PunBB 1.2 modifications, plugins and integrations)
.pun #brdmenu #navsearch a { color: #FF0000; }
That works for me
1,863 2006-07-15 18:48
Re: style a single nav link? (25 replies, posted in PunBB 1.2 modifications, plugins and integrations)
What Paul said should work
1,864 2006-07-15 18:43
Re: style a single nav link? (25 replies, posted in PunBB 1.2 modifications, plugins and integrations)
li#navsearch maybe?
1,865 2006-07-15 18:34
Re: style a single nav link? (25 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Try putting .pun before it.
1,866 2006-07-15 17:52
Re: style a single nav link? (25 replies, posted in PunBB 1.2 modifications, plugins and integrations)
#navsearch { color: #FF0000; }
1,867 2006-07-14 11:41
Re: Post new topic (6 replies, posted in PunBB 1.2 troubleshooting)
Something like that I suppose
Oh, and I just see an error in the first one... you can't click on it So I advise to put the link back...
viewforum.php:
$post_link = "\t\t".'<p class="postlink conr"><a href="post.php?fid='.$id.'"><img src="http://www.ginkworld.sakamuyo.net/Themes/gink/images/new_topic.gif" alt="'.$lang_forum['Post topic'].'" /></a></p>'."\n";
viewtopic.php: (both lines)
$post_link = '<a href="post.php?tid='.$id.'"><img src="http://www.ginkworld.sakamuyo.net/Themes/gink/images/reply.gif" alt="'.$lang_topic['Post reply'].'" /></a>';
1,868 2006-07-14 11:02
Re: Post new topic (6 replies, posted in PunBB 1.2 troubleshooting)
Change lines ~115 and ~124 in viewtopic.php If you have some basic HTML knowlegde, I suppose you can do it
1,869 2006-07-14 10:32
Re: Post new topic (6 replies, posted in PunBB 1.2 troubleshooting)
Find, ~line 64 in viewforum.php:
$post_link = "\t\t".'<p class="postlink conr"><a href="post.php?fid='.$id.'">'.$lang_forum['Post topic'].'</a></p>'."\n";
Replace it with:
$post_link = "\t\t".'<p class="postlink conr"><img src="http://www.ginkworld.sakamuyo.net/Themes/gink/images/new_topic.gif" alt="'.$lang_forum['Post topic'].'" /></p>'."\n";
1,870 2006-07-14 10:19
Re: I'm likin' punBB - Anyone want to create a skin? (9 replies, posted in PunBB 1.2 discussion)
nice skin Jeckyl
1,871 2006-07-13 22:06
Re: I hate computers! (24 replies, posted in General discussion)
Jansson: I have that one with Copper and Aluminium
1,873 2006-07-13 14:21
Re: I hate computers! (24 replies, posted in General discussion)
Indeed, hardware gives alot problems these days... You new setup looks nice though ^^
1,874 2006-07-12 20:14
Re: Pulling subjects and authors from ONLY one forum to display on page (4 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Here's the code:
<?php
define('PUN_ROOT', './');
include "include/common.php";
$result = $db->query("SELECT poster, subject FROM ".$db->prefix."topics WHERE forum_id=".intval($_GET['fid']));
while($row = $db->fetch_assoc($result))
echo $row['subject']." by ".$row['poster']."<br />\n";
?>
It outputs something like this:
Test post by elbekko
Testing... by elbekko
You use it with listthreads.php?fid=1
1,875 2006-07-12 20:03
Re: Pulling subjects and authors from ONLY one forum to display on page (4 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Not any more, I suppose the search cache has been deleted. Anyways, do you want it is an existing feature or wouldn't you mind creating a new page with a separate query?
I'll write a bit of code that will do it for you