I can't find it on Punres anymore for some reason, but it's still available on PunBB.fr.

877

(1,382 replies, posted in General discussion)

Mr. T

878

(1 replies, posted in PunBB 1.2 troubleshooting)

Do you mean when you're viewing a topic or when you're viewing a profile?

jjmancini wrote:

As far as add-ons, I'm not lookin gfor anything in particular, I'm looking for some mods that a lot of people found useful and/or helpful.

Many of your users will probably appreciate Easy BBCode.

880

(1 replies, posted in PunBB 1.2 discussion)

Just edit this line in viewforum.php:

$subject = '<strong>·</strong> '.$subject;

881

(1 replies, posted in PunBB 1.2 troubleshooting)

Try this:

#punindex TH.tcr, #punindex TD.tcr, #punviewforum TH.tcr, #punviewforum TD.tcr {
  height: 0;
  position:absolute;
  left: -9999px;
  }

Please let me know if it works.

There was once a project called Punbo integrationg PunBB and Mambo, but it has changed hands and become PunLA, which integrates PunBB and Joomla. I suggest that you search the web for Punbo and see if you can find the files.

zhico wrote:

By the way, can i change the logo like that before publish this forum.
or if aint got no permission. i'll change it as the default copyrights. thanks.

I don't see what could be wrong with that. For more info on the copyright, see FAQ: Copyright.

I believe there is a mod on PunBB.fr that provides the functionality you're looking for, iatbm, although you'd need to do a bit of translating.

885

(13 replies, posted in General discussion)

Nice job helter!

There's also a nice one at PunBB.tox.pl.

TFD wrote:

anybody?

Try doing the same thing as above (the code should be there twice, so do it twice) in moderatepoll.php.

Moved to modifications.

The first and easiest thing to try is simply changing the names of various fields in the lang files. For example, you could just change the label of the Jabber field to Skype in lang/English/profile.php.

Deleting fields might be a bit trickier though.

ortzinator wrote:

you can't put php in the templates

Actually, by using pun_include (see the docs), you can, but obviously the work is already done, so just keep that in mind for the future.

deleted user wrote:

Hello,
My forum www.brokeneden.com/forums/ got hacked by Snakeq3i.
The error it gives is: Unable to fetch user information.

I have a backup which i made with the backup plugin i downloaded form the mainpage (called backup not DB manangement).
Becouse it was on the official site i thought this plugin would be good.

My problem now is i cant restore it.
When i use the backup in the other plugin (DB manangement) its loading so i waited toll it saud done.
After checking nothing changed, structure hasnt changed and i still dont have posts.
I also tried restoring the backup i had with phpMyadmin but that also wouldnt work...

What did i do wrong?
And even more how can i fix my forum?
Thanks,

Tim Lolkema

Why the double post?

890

(2 replies, posted in PunBB 1.2 troubleshooting)

Try removing the queries adding the data for the search_* tables (leave the ones restoring the structure if needed though). That will reduce the size of the backup file and may help you be able to do it successfully. You can restore the data from those tables in the Maintenance section of the admin panel.

I would assume that elbekko wants you to change the following line in viewpoll.php:

/Perform the main parsing of the message (BBCode, smilies, censor words etc)
    $cur_post['message'] = parse_message($cur_post['message'], $cur_post['hide_smilies']);

to:

/ Perform the main parsing of the message (BBCode, smilies, censor words etc)
    $cur_post['message'] = parse_message($cur_post['message'], $cur_post['hide_smilies'], true);

although I'm not sure. Try it, and if it doesn't work, simply change it back.

sillage wrote:

(ps : is there a diagram of the database on the site? )

Do you mean like this?

Mad-Wolfie wrote:

I follow you now, just as a follow up from this, is there a mod so you can see what any users who are online are doing (posting a message, changing profile etc) or what page or thread they are viewing?  Sort of like "viewonline.php" that phpBB uses?

I believe PunOnline does that.

Enable debug mode and post back with the full error, please.

This seems to be a request for the DB management plugin, so I've moved this topic to plugins.

896

(12 replies, posted in Feature requests)

lhffan wrote:

Edit: Can someone move the topic, posted in wrong section

To where would you like it moved?

nick23 wrote:

I'm running the latest version of pun (1.2.12) - but the following mod (http://punbb.org/forums/viewtopic.php?id=6101&p=1) states it wont work on my version of pun.

Will the instructions given by Mark help to solve this?

If install_mod.php gives you an error about not having the correct version of PunBB, then yes, this guide will solve that problem.

StevenBullen wrote:

My bad pogenwurst.

I was aiming for the end result he wanted, not to just answer his question.

No problem. We were both right. smile

899

(11 replies, posted in PunBB 1.2 troubleshooting)

Just make sure the section of the code that prints the forum listing looks similar to the original index.php file.

                                <tr<?php if ($item_status != '') echo ' class="'.$item_status.'"'; ?>>
                                        <td class="tcl">
                                                <div class="intd">
                                                        <div class="<?php echo $icon_type ?>"><div class="nosize"><?php echo $icon_text ?></div></div>
                                                        <div class="tclcon">
                                                                <?php echo $forum_field."\n".$moderators ?>
                                                        </div>
                                                </div>
                                        </td>
                                        <td class="tc2"><?php echo $num_topics ?></td>
                                        <td class="tc3"><?php echo $num_posts ?></td>
                                        <td class="tcr"><?php echo $last_post ?></td>
                                </tr>

900

(11 replies, posted in PunBB 1.2 troubleshooting)

Have you edited your index.php file at all? You're missing this:

<div class="icon"><div class="nosize"><!-- --></div></div>

which is needed if you want to display an icon (that's why the problem is occuring with all styles - it's not a style issue).