sNews support

652

(114 replies, posted in Programming)

Gizzmo wrote:

I'm stuck on Notepad2 and i cant seem to stop using it. And yes iv tryed.

i use this as my notepad replacement. works flawlessly.  rename notepad2.exe to notepad.exe. reboot into safe mode then nav to C:\WINDOWS\system32\ and replace  notepade.exe with the now renamed notepad2 exe. run the reg file in the zip. done.

i'm thinking of getting a copy of ultraedit. looks neat.

it is a serious problem and it's getting worse. i also run a vb board and with captcha + email varification + no guest posting they still get through.

654

(16 replies, posted in PunBB 1.2 discussion)

question: if i upload a skin does it becaome availible to all hosted forums?

655

(16 replies, posted in PunBB 1.2 discussion)

nice default set of mods.

needshelp wrote:

If you have any advice or other tricks to share with us please post it here!

start executing spammers. that will stop it pretty quick.

657

(2 replies, posted in PunBB 1.2 discussion)

still in closed development.

658

(11 replies, posted in General discussion)

5.1.4 here on my localhost and no issues as of yet.

659

(2 replies, posted in PunBB 1.2 show off)

kick ass!

Reind wrote:

....
I used the famfamfam icons..... damn now everybody knows my secret wink

i like the Tango desktop ones personally. on the files, nah that's ok. i just needed a push in the right direction that's all. but thanks none-the-less. big_smile

all of them actually. wink but thanks, it's a start.

i have a few icons i have been itching to use for the post/etc links. in fact, i have been collecting icons for quite some time if anyone needs some.

if you wouldn't mind writing up a wiki entry for punres.org about your image/text replacement, i know i would be much appreciated. wink

nice work by the way.

663

(2 replies, posted in PunBB 1.2 troubleshooting)

looks fine to me. checked it in ie, ff and opera.

cool! thanks for the share.

665

(63 replies, posted in Feature requests)

Smartys wrote:
elbekko wrote:
Dr.Jeckyl wrote:

if i recall the "plugin" system isn't even in it yet.... could be wrong, been known tohappen. tongue

The plugin is there but the table isn't....

He means the extension system tongue

yes the extension system, my bad.

666

(63 replies, posted in Feature requests)

if i recall the "plugin" system isn't even in it yet.... could be wrong, been known tohappen. tongue

Gravatar

668

(5 replies, posted in General discussion)

someone's getting fired.

669

(10 replies, posted in Feature requests)

Limber wrote:

Don't think the guy will release it to the public though.

wouldn't hurt to ask.

670

(10 replies, posted in Feature requests)

it's kinda like a hidden feature so a higher admin can see the thread still but noone else. the thread can later be undeleted if need be too. atleast that's how my vb forum works.

671

(9 replies, posted in PunBB 1.2 troubleshooting)

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

helped me.

Image Zoom FF extension support forums

673

(11 replies, posted in PunBB 1.2 troubleshooting)

thanks Smartys, that fixed my issues too.

LogoPond.com
very neat site with loads of inspirational logos.

675

(2 replies, posted in PunBB 1.2 discussion)

it's not EXACTLY the same but look around line 259-273:

include/functions.php

if ($pun_user['g_id'] > PUN_MOD)
        {
            if ($pun_user['g_search'] == '1')
                $links[] = '<li id="navsearch"><a href="search.php">'.$lang_common['Search'].'</a>';

            $links[] = '<li id="navprofile"><a href="profile.php?id='.$pun_user['id'].'">'.$lang_common['Profile'].'</a>';
            $links[] = '<li id="navlogout"><a href="login.php?action=out&id='.$pun_user['id'].'">'.$lang_common['Logout'].'</a>';
        }
        else
        {
            $links[] = '<li id="navsearch"><a href="search.php">'.$lang_common['Search'].'</a>';
            $links[] = '<li id="navprofile"><a href="profile.php?id='.$pun_user['id'].'">'.$lang_common['Profile'].'</a>';
            $links[] = '<li id="navadmin"><a href="admin_index.php">'.$lang_common['Admin'].'</a>';
            $links[] = '<li id="navlogout"><a href="login.php?action=out&id='.$pun_user['id'].'">'.$lang_common['Logout'].'</a>';
        }