The one I posted works really well.
Now, I know I'm not actually supposed to do this. Im just playing around and haven't showed this page to anyone. It does look the same as punbb homepage. I will take it down if you want me to.
The rss feed is pretty nice on here on the left hand column check it out.
http://thpsvids.com/users/gfg/home.php

<?php
class RSSParser {

    var $insideitem = false;
    var $tag = "";
    var $title = "";
    var $description = "";
    var $link = "";

    function startElement($parser, $tagName, $attrs) {
        if ($this->insideitem) {
            $this->tag = $tagName;
        } elseif ($tagName == "ITEM") {
            $this->insideitem = true;
        }
    }

    function endElement($parser, $tagName) {
        if ($tagName == "ITEM") {
            printf("<h1><a href='%s'>%s</a></b></dt></h1>",
                trim($this->link),htmlspecialchars(trim($this->title)));
            printf("<dd>%s</dd><br /><br />",htmlspecialchars(trim($this->description)));
            $this->title = "";
            $this->description = "";
            $this->link = "";
            $this->insideitem = false;
        }
    }

    function characterData($parser, $data) {
        if ($this->insideitem) {
        switch ($this->tag) {
            case "TITLE":
            $this->title .= $data;
            break;
            case "DESCRIPTION":
            $this->description .= $data;

            break;
            case "LINK":
            $this->link .= $data;
            break;
        }
        }
    }
}

$xml_parser = xml_parser_create();
$rss_parser = new RSSParser();
xml_set_object($xml_parser,&$rss_parser);
xml_set_element_handler($xml_parser, "startElement", "endElement");
xml_set_character_data_handler($xml_parser, "characterData");
$fp = fopen("RSS FEED GOES HERE","r")
    or die("Error reading RSS data.");
while ($data = fread($fp, 4096))
    xml_parse($xml_parser, $data, feof($fp))
        or die(sprintf("XML error: %s at line %d", 
            xml_error_string(xml_get_error_code($xml_parser)), 
            xml_get_current_line_number($xml_parser)));
fclose($fp);
xml_parser_free($xml_parser);


?>

Saw this in a tutorial a while back and coded it. This is from their source files though. If I can remember link I'll post it to give credit.

28

(2 replies, posted in PunBB 1.2 show off)

Are you refering to the banner? I did use photoshop, but mainly flash and actionscript, and it is actually not an image but rather an .swf.
What browser / os are you using? What are your appearance settings (resolution?)


edit: okay I see what you mean thank you.

Create a function that posts then. Examine post.php like smartys said.

Are you talking about rss?

31

(2 replies, posted in PunBB 1.2 show off)

Well, I've been posting on this site for a little while, and haven't yet posted a show off topic.
www.gfgthps.co.nr

Also check out this custom app that I created

http://thpsvids.com/users/gfg/iladder.php

If I were to modify this to not use the set html there, I could print it with my own css, and not require regular punbb files other than include/common, correct?

33

(4 replies, posted in PunBB 1.2 troubleshooting)

I would suggest looking into more effective methods to combat the spam problem? Are you talking about human spam or spambots?

34

(13 replies, posted in PunBB 1.2 show off)

When testing these things, you can use firefox and addon tabs to mimic other browser types.
Also try playing arround with your display resolution settings on your computer when viewing.

35

(4 replies, posted in PunBB 1.2 show off)

Honestly, very good work. I love it.

36

(9 replies, posted in General discussion)

I actually have checked out that site before, it is very nice admin zone.
Mattk good job on fourth street, very good work.

37

(114 replies, posted in Programming)

Dreamweaver is best in my opinion.

The whole idea is to change the default question. I am pretty sure it mentions this in the readme.

Just installed, works nicely.

40

(4 replies, posted in PunBB 1.2 show off)

Nice job. Better than a lot of others who post in the show off forums.

Is there a punbb.org irc channel?

Figured it out

Thanks buddy, you will notice that I implemented a thing where it displays who has challenged you now.

(If I want to sell the script and it is tied into punbb then I have to give them my source free?) or (Do I just need to give them punbb's source? (Obviously I would never attempt to sell punbb, that is just plain f*kin ridiculous lol.))


- edit: figured out new code prob

You can do this if you examine how posts are submitted in the databse. If you want a set number of posts to be added then you could say create a second form on the page with a new name then the script that reads it can add +1 to the thing post id.

Not the best explain, but I dont feel like going through db and figuring out exactly how you would do it.

Basically you have your regular
<form><inputs></form>
then you create how ever many more of them you need and changing certain parameters inside of them. (Not 100% sure if this would work)

So If I were to create a completely seperated version of it from punbb then the rules of GPL do not apply?

Gameballa I know you are all over my code scraps in here.

46

(4 replies, posted in General discussion)

Yeah, that is kind of what my standpoint was on the whole issue. Plus it was a little bit random, the person pmed me on sitepoint asking to do it.

Well, I don't mind, and I have already worked out the database where playera and playerb must verify before scores update. I don't use cash mod at my site. I have been getting a couple other offers on this app aswell (around 100$usd). If you are interested, when its finished I can install it at your site for a price. (Even though it is my baby. t_T)

@ Smartys.. will I be able to copywright my work when it is finished?

Can you try re-explaining this please.

L o L @ rollonequick: You challenged me to a battle I see in the database.
@smartys hmm lemme re-examine my code here.

50

(11 replies, posted in PunBB 1.2 troubleshooting)

That means that the page you are submitting a form from is not the originally intended source for forms to be submitted. This is to eliminate certain exploits that could be dangerous due to hacking attempts. If there is no referrer then someone could technically create their own form and submit almost any data they wish if they have the skill set, and wreak havoc on a website. I did this today actually lol!

- I could be wrong in this case because it relates to punbb. But I know that referrers are used in the way I mentioned.