1 (edited by deadram 2006-09-15 14:40)

Topic: robshouse

The first PunBB powered forum to feature SQLite3 database support! big_smile

It's a forum for my makeshift band big_smile

http://robshouse.no-ip.info/

EDIT --

Seems like my ISP is having trouble... the site may be slow hmm

echo "deadram"; echo; fortune;

Re: robshouse

Still having trouble with my ISP, but should clear up soon... (By Sept. 23rd, last I hurd from them... ~.~)

As a side note, I've added music uploads and downloads, integrated right into the forum. This allows people to comment on songs that have been uploaded. Your also able to upload your own music (Please no copyright infringments tongue).

Along with that, there's a "true unread" status for every post, edit, or reply.

Even youtube or google video BBcode (with the option to disable them in signatures, or in posts; when disabled a link will show up instead of the embeded video).

echo "deadram"; echo; fortune;

Re: robshouse

What design is that which you used? that lets you add comments in the front for the page and then a different link to the forum... that is pretty cool.

Re: robshouse

Umm it's the PunBB News Mod v1.0 I think... I changed around every mod I installed though tongue

echo "deadram"; echo; fortune;

Re: robshouse

My ISP finally decided to bring my connection speed back to normal... soes if you view the forums now, you'll acctually be able to browse them tongue

echo "deadram"; echo; fortune;

6

Re: robshouse

I assume you're running this from your home?

One suggestions, change the background color on the Google Ads so they blend in.

Re: robshouse

Dam you IE users! Dam you IE for being such a pain in the arse! Dam IE to hell!

Hurm... Only way to blend them in is to change the bg color of the entire div to white then... Seems IE ignores the transparent property, or else has issues with inherance...

Then again, it is a good way to encourage users to install firefox, and rid me of these dam IE problems once and for all...

*Hurmughfuls* ok, ok, I'll see about installing IE soes I can get the dam browser to work...

echo "deadram"; echo; fortune;

8

Re: robshouse

You just need add this to your Google Code:

google_color_bg = "F1F1F1";

Re: robshouse

If the user changes his style, this won't fix the problem. I'll just force the bg of the ad div's to be white regardless of style. Don't really feel like doing much to clean this up ;p

echo "deadram"; echo; fortune;

10

Re: robshouse

If you're using the default styles then throw this in your /include/user directory.

728x90_as.php:

<?php

switch ($pun_user['style'])
{
    case 'Cobalt':
        $bd_color = '565656';
        $bg_color = '2A2A2A';
        $link_color = '60A0DC';
        $text_color = 'D4D4D4';
        break;

    case 'Mercury':
        $bd_color = '565656';
        $bg_color = '2A2A2A';
        $link_color = 'F6B620';
        $text_color = 'D4D4D4';
        break;

    case 'Radium':
        $bd_color = '565656';
        $bg_color = '2A2A2A';
        $link_color = '60C860';
        $text_color = 'D4D4D4';
        break;

    case 'Sulfur':
        $bd_color = 'B84623';
        $bg_color = 'F1F1F1';
        $link_color = '822100';
        $text_color = '333333';
        break;

    case 'Lithium':
        $bd_color = '6C8A3F';
        $bg_color = 'FFFFFF';
        $link_color = '638137';
        $text_color = '333333';
        break;

    default:
        $bd_color = '0066B9';
        $bg_color = 'FFFFFF';
        $link_color = '005CB1';
        $text_color = '333333';
        break;
}

?>
<div style="TEXT-ALIGN: center">
    <script type="text/javascript">
    <!--
    google_ad_client = "pub-number";
    google_ad_width = 728;
    google_ad_height = 90;
    google_ad_format = "728x90_as";
    google_ad_type = "text_image";
    google_ad_channel ="";
    google_color_border = "<?php echo $bd_color ?>";
    google_color_bg = "<?php echo $bg_color ?>";
    google_color_link = "<?php echo $link_color ?>";
    google_color_url = "<?php echo $link_color ?>";
    google_color_text = "<?php echo $text_color ?>";
    google_alternate_color = "<?php echo $bg_color ?>";
    //-->
    </script>
    <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</div>

<br />

Call it from main.tpl like so:

<pun_include "728x90_as.php">

11 (edited by deadram 2006-10-03 11:07)

Re: robshouse

Thanks for letting me not think big_smile

I'll put that in later today or tomorrow wink

EDIT --

All finished. I changed your color coding around a bit though ;p Thanks again.

echo "deadram"; echo; fortune;