They don't *have* to be released...
2,327 2006-04-07 15:00
Re: Showing forums on other page (8 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Copy viewforum.php and add this to the forum fetch query: WHERE id=<id_of_gaming_forum>
2,328 2006-04-07 12:18
Re: Simple request: support for 'title' tag in a href links on menu etc (9 replies, posted in Feature requests)
A standard ALT attribute ot one that you define like [img=altxtxt ]imglink[/img] ?
2,329 2006-04-06 17:35
Re: License of Html Code (6 replies, posted in PunBB 1.2 discussion)
You can always see HTML code Just make sure you leave a copyright notice somewhere I guess.
2,330 2006-04-06 16:54
Re: request: Display total number of visitors (3 replies, posted in PunBB 1.2 modifications, plugins and integrations)
In index.php, find this line:
echo "\t\t\t\t".'<dd>'. $lang_index['Users online'].': <strong>'.$num_users.'</strong></dd>'."\n\t\t\t\t".'<dd>'.$lang_index['Guests online'].': <strong>'.$num_guests.'</strong></dd>'."\n\t\t\t".'</dl>'."\n";
REPLACE WITH
echo "\t\t\t\t".'<dd>'. $lang_index['Users online'].': <strong>'.$num_users.'</strong></dd>'."\n\t\t\t\t".'<dd>'.$lang_index['Guests online'].': <strong>'.$num_guests.'</strong> A total of '.($num_users + $num_guests).' users are visiting your forum.</dd>'."\n\t\t\t".'</dl>'."\n";
2,331 2006-04-06 16:29
Topic: Menu creation problem... (0 replies, posted in PunBB 1.2 troubleshooting)
Hey guys,
I'm creating a clansite for a friend of mine, fully integrated into PunBB. I created a menu (with help of the Wiki), works fine, but I have a little problem:
Image that shows the problem
You can see a gap there between the Online list and the board info. I tried disabling the online list, but the gap stayed =/
Any idea on how to solve this?
-- Bekko
2,332 2006-04-06 15:40
Re: Links Page 1.2 (40 replies, posted in PunBB 1.2 modifications, plugins and integrations)
1.2 released. It had something to do with me not reloading the config cache =/ Ah well, fixed now.
2,333 2006-04-06 15:23
Re: Mental typewriter (3 replies, posted in General discussion)
Can it program what I want in C++ if I put it on my head?
Looks sw33t
2,334 2006-04-05 15:20
Re: phpMyAdmin / SQL Simple Help Needed (1 replies, posted in Programming)
Click on the insert tab, or execute the query in the box meant for that
2,335 2006-04-05 14:57
Re: Sorry... I am stupid... (7 replies, posted in General discussion)
Well, check if you have the same problem as him
2,336 2006-04-04 21:31
Re: Tags for topics (15 replies, posted in Feature requests)
Adding the tag system to the current system, yes. Replacing, no.
2,337 2006-04-04 10:57
Re: impossible to add word to search index (14 replies, posted in PunBB 1.2 troubleshooting)
See if it's already in?
2,338 2006-04-03 21:31
Re: MyPunBB Beta Testing (8 replies, posted in Programming)
should be id si suppose
2,339 2006-04-03 20:48
Re: Where do we configure the Email Template? (3 replies, posted in PunBB 1.2 discussion)
you have to comment out the check around the mail sending part in register.php
2,341 2006-04-03 20:26
Re: Links Page 1.2 (40 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Ah, I'll fix that in 1.2
And I really don't get why the indexing switch isn't working...
I'll also get full language file support ^^ Just noticed that alot of things still aren't in it
2,342 2006-04-03 20:24
Re: need method to test php_mail function independent of punbb (2 replies, posted in PunBB 1.2 troubleshooting)
make a new page and send a test mail from there
EDIT:
Use this code to make a new page:
<?php
define('PUN_ROOT', './');
require PUN_ROOT.'include/common.php';
$page_title = pun_htmlspecialchars($pun_config['o_board_title']);
define('PUN_ALLOW_INDEX', 1);
require PUN_ROOT.'header.php';
?>
<div id="divid" class="blocktable">
<h2><span><?php echo $pun_config['o_board_title'] ?></span></h2>
<div class="box">
<div class="inbox">
</div>
</div>
</div>
<?php
$footer_style = 'index';
require PUN_ROOT.'footer.php';
?>
2,343 2006-04-03 17:33
Re: MyPunBB Beta Testing (8 replies, posted in Programming)
Looks nice Connor. Seems to me that it's working...
2,344 2006-04-03 15:08
Re: Tiny bit of PHP code to modify in email.php (2 replies, posted in PunBB 1.2 discussion)
Replace that line by this:
$from = '"'.str_replace('"', '', $lang_common['Administrator']).'" <'.$pun_config['o_webmaster_email'].'>';
2,345 2006-04-03 14:02
Re: Top1? (7 replies, posted in Programming)
elbekko wrote:Ah, like that. Yeah, I guess that would do it Connor But I don't quite see how you'd select the biggest count from the array :S
use asort: http://uk2.php.net/manual/en/function.asort.php and then get the get the key for the first/last array item
Oops, n00bie me
2,346 2006-04-03 14:00
Re: Signature problem (6 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Your clearer div
This is what I'd guess to be the problem:
In your style_cs.css file, find this line:
DIV.box, #adminconsole FIELDSET TH, .rowodd, .roweven {BACKGROUND-COLOR: #383838; Background-image: url('./black_back2.png');}
Remove the Background-image: url('./black_back2.png'); and see what it gives
2,347 2006-04-03 11:59
Re: Top1? (7 replies, posted in Programming)
Ah, like that. Yeah, I guess that would do it Connor But I don't quite see how you'd select the biggest count from the array :S
2,348 2006-04-03 11:54
Re: Signature problem (6 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I'd check for a background setting for your clearer
2,349 2006-04-02 17:52
Re: Top1? (7 replies, posted in Programming)
I don't really understand what you're trying to do...
2,350 2006-04-02 12:38
Re: Sort topics by: Alphabetical (5 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Then add an if statement using $fid