The Domain Punbb.info ist at the moment redirecting to punbb.org
i dont need the domain any more and will now cancel the hosting contract.

if anyone is interested just mail to:
felix at brockher . de

punbb.info is now redirected to punbb.org. that's certainly better than a fedora core testpage big_smile

is there a punbb wiki somewhere?

yep. flx is felix.
i used it for german punbb support, because punbb.de is owned by a spammer. there is now another german support board, however, i still own that domain.

the domain name is not used atm. any ideas?

5

(49 replies, posted in PunBB 1.2 discussion)

hcgtv wrote:
flx wrote:

wget -m -k -E -l 0 -D localhost http://localhost/punbb/three/ --no-cookies --header "Cookie: name=content"

You've got the file based (fancy) url scheme on I assume?

no, it's off. i will update later with fancy urls on

//edit: will not update as i have not enabled mod_rewrite on my local machine

6

(49 replies, posted in PunBB 1.2 discussion)

hcgtv wrote:

flx,

How did you generate the html files, wget mirror or on the fly? What version of Ubuntu are you running?

I'm planning on putting up some screen shots of the 1.3 backend, I was just waiting for some things to finalize.

i'm using ubuntu 6.10 edgy eft

i just installed punbb on my localhost and

wget -m -k -E -l 0 -D localhost http://localhost/punbb/three/ --no-cookies --header "Cookie: name=content"

i copied the cookie info from firefox cookie manager.
afterwards you just have to manually add Oxygen_cs.css

7

(49 replies, posted in PunBB 1.2 discussion)

yes, why not? i don't know if you realized that nothing is working -  just .html files big_smile

8

(49 replies, posted in PunBB 1.2 discussion)

goto: http://dev.punbb.org/browser/branches/punbb-1.3-dev
click download in other formats: zip-archive

9

(49 replies, posted in PunBB 1.2 discussion)

If anyone else is interested in PunBB 1.3 look and feel:

http://punbb.info/three/

no, never released, due to problems with page numeration.
i wanted to wait for 1.3 but, well, it's not released yet

i will try that out. thanks for the great mod!

Test/Test works

cant see ajax though

Hi,
will there be any changes in 1.3 style system? For example renaming classes e.g.?

Greetz,
flx

so, im not replacing the bbcode tags um just adding new tags => textile tags
so _foo_ is replaced by <i>foo</i>
*this* is replaced by <strong>this</strong>
but [ b ]this[ /b ]  works, too

if you want h1 then set up a new rule, e.g.

'/^\h1\.\s(.*?)/m' =>  '<h1>$2</h1> '

then

h1. woot loot

will be

<h1>woot loot</h1>

i had that problem, too and did a mixture between textile and bbcode.
- uninstall the textile replacement mod
- opern include/parser.php and search for "$pattern = array(" in function "function do_bbcode($text)"
- then replace the $pattern and $replace arrays with:

                     $pattern = array('/(^|\s)\*(.*?)\*(\s|$)/m',
                     '/(^|\s)\_(.*?)\_(\s|$)/m',
                     '/(^|\s)\+(.*?)\+(\s|$)/m',
                     '/(^|\s)\~(.*?)\~(\s|$)/m',
                     '/(^|\s)\^(.*?)\^(\s|$)/m',
                     '/(^|\s)\!(.*?)\!(\s|$)/m',
                     '#\[u\](.*?)\[/u\]#s',
                     '#\[url\]([^\[]*?)\[/url\]#e',
                     '#\[url=([^\[]*?)\](.*?)\[/url\]#e',
                     '#\[email\]([^\[]*?)\[/email\]#',
                     '#\[email=([^\[]*?)\](.*?)\[/email\]#',
                     '#\[color=([a-zA-Z]*|\#?[0-9a-fA-F]{6})](.*?)\[/color\]#s',
                     '/([^\s[{(>_*])?\'(?(1)|(?=\s|s\b|[[:punct:]]))/',   //  single closing
                     '/\'/',                                              //  single opening
                     //'/([^\s[{(>_*])?"(?(1)|(?=\s|[[:punct:]]))/',        //  double closing
                     //'/"/',                                               //  double opening
                     '/\b( )?\.{3}/',                                     //  ellipsis
                     '/\b([A-Z][A-Z0-9]{2,})\b(?:[(]([^)]*)[)])/',        //  3+ uppercase acronym
                     '/\s?--\s?/',                                        //  em dash
                     '/\s-\s/',                                           //  en dash
                     '/(\d+) ?x ?(\d+)/',                                 //  dimension sign
                     '/\b ?[([]TM[])]/i',                                 //  trademark
                     '/\b ?[([]R[])]/i',                                  //  registered
                     '/\b ?[([]C[])]/i',                                                                    //  copyright
                     '/(^|\s)\-(.*?)\-(\s|$)/m');

    $replace = array(' <strong>$2</strong> ',
                     ' <em>$2</em> ',
                     ' <ins>$2</ins> ',
                     ' <sub>$2</sub> ',
                     ' <sup>$2</sup> ',
                     '<img class="postimg" src="$2" alt="$2" />',
                     '<span class="bbu">$1</span>',
                     'handle_url_tag(\'$1\')',
                     'handle_url_tag(\'$1\', \'$2\')',
                     '<a href="mailto:$1">$1</a>',
                     '<a href="mailto:$1">$2</a>',
                     '<span style="color: $1">$2</span>',
                     '$1?$2',                                        //  single closing
                     '?',                          //  single opening
                     //'$1?',                        //  double closing
                     //'?',                          //  double opening
                     '$1?',                        //  ellipsis
                     '<acronym title="$2">$1</acronym>', //  3+ uppercase acronym
                     '?',                          //  em dash
                     ' ? ',                        //  en dash
                     '$1×$2',                       //  dimension sign
                     '?',                          //  trademark
                     '®',                           //  registered
                     '©',                                                    //  copyright
                     ' <del>$2</del> ');

... without url

17

(2 replies, posted in PunBB 1.2 discussion)

the user cant read the message. nothing else

18

(25 replies, posted in PunBB 1.2 show off)

if there is interest, i will make a mod. i will post here if the mod is finished

19

(25 replies, posted in PunBB 1.2 show off)

thats not mine

yep, check your config file
- database connection does not work or
- punbb data is not in database

21

(25 replies, posted in PunBB 1.2 show off)

@steve castle
i did it with onclick="goto('this.href');this.href='javascript:;'"

the goto funktion got the content of this.href+'&ajax' then.
in the header and footer i asked for the $ajax variable. if it was set, i only included the pun_page content
i replaced the content of the pun_page with the content i got via xhttprequest.

the href="" of the origin urls does not need to be touched so google has its links, too wink

in functions.php on line 33 replace:

$expire = $now + 31536000;    // The cookie expires after a year

with

$expire = 0;    // The cookie expires at the end of the session (when the browser closes)

should work

23

(5 replies, posted in PunBB 1.2 show off)

i registered:

login: test
pw: test

colors changed and some mods. looks good. member of the month seems interesting.
nevertheless it could be more individual..

google updated their index a few days ago. i think therefore they needed all the server power they could get. thats why google indexes very irregulary atm.
if you want your whole site indexed you usually need lots of backlinks.

25

(121 replies, posted in PunBB 1.2 discussion)

Connorhd wrote:

the first rule of punbb club is you do not ask when the next version will be released.
the second rule of punbb club is you do not ask when the next version will be released.
the third rule of punbb club is you DO NOT ask when the next version will be released.

tongue

very funny hahahaha

i just wanted to know if its released in a few days, month or years.