StevenBullen wrote:

Pogenwurst
That will not work properly... you will lose the nice rounded effect.

Huh? I never told him to do anything, I just explained why setting the background color in PunBB's styles would not have an effect, because the WP style defines the background color and overwrites PunBB's. I was addressing this:

Ennis wrote:

My question was, if the forum background is white, there shouldn't be any areas any other color throughout the forums, including that part. In other words, the theme for my background should not be showing through the forum.

And yes, you are correct, plenty of stuff would probably become flubbed up if he were to switch around the styles.

902

(11 replies, posted in PunBB 1.2 troubleshooting)

Can you give us a link?

Ennis wrote:
pogenwurst wrote:

This is your problem:

http://www.thisisennis.com/wp-content/t … middle.gif

This and two other images are used as backgrounds in order to create the illusion of equal-height columns and to add the fancy border around your content.

umm. i new that was what was showing through, its my background for my theme. My question was, if the forum background is white, there shouldn't be any areas any other color throughout the forums, including that part. In other words, the theme for my background should not be showing through the forum.

Oops, sorry for the confusion.

Anyway....

<link rel="stylesheet" type="text/css" href="style/Oxygen.css" />
    <link rel="stylesheet" href="http://www.thisisennis.com/wp-content/themes/relaxation/style.css" type="text/css" media="screen" />

^ Because the WP stylesheet is called after PunBB's, it overwrites any of PunBB's styles with which it comes into conflict.

904

(5 replies, posted in Feature requests)

Clearly not a bug. Moved.

This is your problem:

http://www.thisisennis.com/wp-content/t … middle.gif

This and two other images are used as backgrounds in order to create the illusion of equal-height columns and to add the fancy border around your content.

1. PunLA integrates PunBB and Joomla, although I'm unsure of what version

2. PunBB is, well, PunBB while Punbo is a package integrating PunBB and Mambo

wii wrote:

Yeah, that would be the obvious choice, but unfortunately it doesn´t work when I rename the file.

Did you remember to edit this code so that each copy of the plugin has its own directory for storing the generated news?

/ Path to news item template
$template_path = PUN_ROOT.'plugins/AP_News_Generator/news.tpl';

// Directories in which plugin will save generated markup (must end with slash)
$output_dir_latest = PUN_ROOT.'plugins/AP_News_Generator/';
$output_dir_archive = PUN_ROOT.'plugins/AP_News_Generator/archive/';

908

(2 replies, posted in PunBB 1.2 discussion)

If you want such a feature for individual posts, you can use the forward posts mod.

obelix wrote:

Can they still create a top-level post?

A top-level post? What do you mean? A new topic?

910

(2 replies, posted in PunBB 1.2 troubleshooting)

The issue with the colors of the bar on the left is probably related to this: http://www.punres.org/viewtopic.php?id=1027

Your posts don't seem to be duplicated anymore. It was probably the result of a known bug. See:

http://punbb.org/forums/viewtopic.php?id=8569
http://punbb.org/forums/viewtopic.php?id=8436

912

(1 replies, posted in PunBB 1.2 show off)

Cool banner smile

Will this mod work for you?

Mad-Wolfie wrote:

just going back to this... (i know it's an old thread)

is what you want to do actually show them on the online users - which usually lists members who are online - when the search engine spiders are visiting.. I've seen this as a mod for VB but if used on PunBB for instance I would imagine it needs to appear something like:-
-------------------------------

Registered users online: 1
Guests online: 0

Online:   Pun Member, googlebot, yahoo! slurp, msnbot, google adsense

-----------------------------------

No, that's not what he wants. He wants to let Googlebot index members-only content.

I believe the BotDetect mod is meant to do what you are talking about, Mad-Wolfe.

pogenwurst wrote:
Therminator007 wrote:

When I go on

How do I add a basic portal page to my board? http://punres.org/doku.php?id=tutorials:miniportal

I get this message:

No input file specified.

sad
can anybody help me/fix it etc...???

Uggh I forgot to update this...

I'll get it fixed soon... meanwhile the page in my sig should have the correct link.

Ok, everything should be fine now. Thanks for the tip-off.

pogenwurst wrote:
Dr.Jeckyl wrote:

change the post status icons.

PunRes wiki post

Is that a suggestion for the list?

Added, thank you for the tip-off as well.

Therminator007 wrote:

When I go on

How do I add a basic portal page to my board? http://punres.org/doku.php?id=tutorials:miniportal

I get this message:

No input file specified.

sad
can anybody help me/fix it etc...???

Uggh I forgot to update this...

I'll get it fixed soon... meanwhile the page in my sig should have the correct link.

917

(2 replies, posted in PunBB 1.2 troubleshooting)

I'm not great with PHP/SQL and I haven't tested this code, so be warned that this might not work.

Anyway, open viewtopic.php and find

if (!$pun_user['is_guest'])
        $result = $db->query('SELECT f.no_images, t.subject, t.closed, t.num_replies, t.sticky, f.id AS forum_id, f.forum_name, f.moderators, fp.post_replies, s.user_id AS is_subscribed FROM '.$db->prefix.'topics AS t INNER JOIN '.$db->prefix.'forums AS f ON f.id=t.forum_id LEFT JOIN '.$db->prefix.'subscriptions AS s ON (t.id=s.topic_id AND s.user_id='.$pun_user['id'].') LEFT JOIN '.$db->prefix.'forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id='.$pun_user['g_id'].') WHERE (fp.read_forum IS NULL OR fp.read_forum=1) AND t.id='.$id.' AND t.moved_to IS NULL') or error('Unable to fetch topic info', __FILE__, __LINE__, $db->error());

replace with

if (!$pun_user['is_guest'])
        $result = $db->query('SELECT f.no_images, t.subject, t.closed, t.num_replies, t.sticky, t.poster, f.id AS forum_id, f.forum_name, f.moderators, fp.post_replies, s.user_id AS is_subscribed FROM '.$db->prefix.'topics AS t INNER JOIN '.$db->prefix.'forums AS f ON f.id=t.forum_id LEFT JOIN '.$db->prefix.'subscriptions AS s ON (t.id=s.topic_id AND s.user_id='.$pun_user['id'].') LEFT JOIN '.$db->prefix.'forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id='.$pun_user['g_id'].') WHERE (fp.read_forum IS NULL OR fp.read_forum=1) AND t.id='.$id.' AND t.moved_to IS NULL') or error('Unable to fetch topic info', __FILE__, __LINE__, $db->error());

find

// Increment "num_views" for topic
$low_prio = ($db_type == 'mysql') ? 'LOW_PRIORITY ' : '';
$db->query('UPDATE '.$low_prio.$db->prefix.'topics SET num_views=num_views+1 WHERE id='.$id) or error('Unable to update topic', __FILE__, __LINE__, $db->error());

replace with

// Increment "num_views" for topic
if (pun_user['g_id'] != PUN_ADMIN AND  (isset($cur_topic['poster']) AND $pun_user['username'] != $cur_topic['poster']))
{
    $low_prio = ($db_type == 'mysql') ? 'LOW_PRIORITY ' : '';
    $db->query('UPDATE '.$low_prio.$db->prefix.'topics SET num_views=num_views+1 WHERE id='.$id) or error('Unable to update topic', __FILE__, __LINE__, $db->error());
}

918

(3 replies, posted in PunBB 1.2 discussion)

DIV#punwrap {WIDTH: whatever}

in yourstyle.css

Moved to modifications.

Dr.Jeckyl wrote:

change the post status icons.

PunRes wiki post

Is that a suggestion for the list?

Kato wrote:

Er...wow.  LOL.  *knocks himself in the head a few times*

Yeah..something like that.  That wasn't the site I was thinking of...but wow.  ahahaha.  Thanks man big_smile

You may have been thinking of syi.cc, it has a three column portal as well.

922

(1 replies, posted in PunBB 1.2 troubleshooting)

This is how it is inteaded to work. Any posts that have been made since the last time a user logged in will be marked as read. The next time they log in, those posts will be marked read.

923

(6 replies, posted in PunBB 1.2 show off)

Looks even nicer than before. Great work!

924

(4 replies, posted in PunBB 1.2 discussion)

Moved to PunBB discussions.

elbekko wrote:

Well, I just installed it and it looks alot like PunBB =/

That's because it's based on PunBB source code.