1,151

(34 replies, posted in News)

i don't see Textdrive going anywhere anytime soon. but if they did i'm sure there is something in whatever contract you signed that protects them in such a case. a "Unforeseen circumstance" claus if you will.

it's an option in the admin options. it's called "redirect time" and default time is 1 second, if this is the one you're refering to.

1,153

(65 replies, posted in PunBB 1.2 discussion)

Mako wrote:

Interesting. Finally got around to putting this into my forums. I added the line in main.tpl and then made the _google.php file. I put this in the root forum directory. That is where it is supposed to go right because it's not showing the ads.

Then for some reason, which I know is causing it not to show ads on the regular pages, when I go to the page directly nothing comes up. Any ideas?

also make sure you don't have any anti-ad programs running. i had admuncher running and none of the google ads here on punbb.org would show up until i disabled it. just a thought.

1,154

(34 replies, posted in News)

if i only had $399 right now... nice deal.

added: will any of this go twards your dev costs?

1,155

(29 replies, posted in PunBB 1.2 discussion)

i'll contribute to a style contest if there is to be one.

RULES:
1-MUST BE 100% VALID CSS
2- all entries will be judged by ******  (to be decided)
3-*add you own here*

note: include a good sized(800x600) screenshot of the board index for preview purposes or provide a demo site.


let's get this off the ground here.

if i recall it is static(the output of the plugin) so the need to click the generate news button and also the lack of comment count is the result of this.

1,157

(29 replies, posted in PunBB 1.2 discussion)

not any resource for them YET wink

1,158

(5 replies, posted in Programming)

weird.... i can use only ie: http://127.0.0.1/pun   <-- my test forum:D but i can't use  http://localhost/pun
seems like someone else is having the same trouble http://www.wampserver.com/phorum/read.p … amp;t=1197

1,159

(5 replies, posted in Programming)

Connorhd wrote:

eww zonealarm tongue

got any FREE alternatives?

1,160

(5 replies, posted in Programming)

that's another thing, WAMP doesn't show up in the program control list. i've even tried to manually add it.

1,161

(5 replies, posted in Programming)

are there any out there? i am trying to test out differant CMSs and tweak everything to my liking before i upload it so i've chosen WAMP (www.wampserver.com) because of it's ease of use and just plain simplicity. well when i first installed it i had a dial-up connection and everytime i would fire WAMP up i would disconnect from the net and turn off zonealarm. well now i have cable internet and i listen to alot of streaming music while working on the computer so i keep zonealarm on and for some reason it won't let WAMP work. i have tried to input  http://localhost and 127.0.0.1 as trusted zones and the like but zonealarm still won't let me connect to my localhost until i shut down zonealarm. could i be doing something wrong here? any help is appreciated.

1,162

(13 replies, posted in Feature requests)

if he is to use

 $lang_common['Downloads'].

someone please correct me if i'm wrong but shouldn't he have to add "downloads" to this list(in \lang\en\en_common.php)?

// Stuff for the navigator (top of every page)
'Home'                    =>    'Home',
'User list'                =>    'User list',
'Rules'                    =>  'Rules',
'Search'                =>  'Search',
'Register'                =>  'Register',
'Login'                    =>  'Login',
'Not logged in'            =>  'You are not logged in.',
'Profile'                =>    'Profile',
'Logout'                =>    'Logout',
'Logged in as'            =>    'Logged in as',
'Admin'                    =>    'Admin',
'Last visit'            =>    'Last visit',
wisesage wrote:

- with the addition of the new PMS mod

wow! there is a mod that turns our boards into a complete emotional mess every 28 days? wink



seriously, nicely done wisesage!

1,164

(13 replies, posted in Feature requests)

look for this. this is a STOCK UNTOUCHED version of the code in question in functions.php file in punbb 1.1.5:

//
// Generate the "navigator" that appears at the top of every page
//
function generate_navlinks()
{
    global $pun_config, $lang_common, $cookie, $cur_user;

    // Home and Userlist should always be displayed
    $links[] = '<a href="index.php">'.$lang_common['Home'].'</a> | <a href="userlist.php">'.$lang_common['User list'].'</a>';

    if ($pun_config['o_rules'] == '1')
        $links[] = '<a href="misc.php?action=rules">'.$lang_common['Rules'].'</a>';

    if ($cookie['is_guest'])
    {
        if ($pun_config['o_search'] == '1' && $pun_config['p_guests_search'] == '1')
            $links[] = '<a href="search.php">'.$lang_common['Search'].'</a>';

        $links[] = '<a href="register.php">'.$lang_common['Register'].'</a> | <a href="login.php">'.$lang_common['Login'].'</a>';
        
        $info = $lang_common['Not logged in'];
    }
    else
    {
        if ($cur_user['status'] < PUN_MOD)
        {
            if ($pun_config['o_search'] == '1')
                $links[] = '<a href="search.php">'.$lang_common['Search'].'</a>';

            $links[] = '<a href="profile.php?id='.$cur_user['id'].'">'.$lang_common['Profile'].'</a>';
            $links[] = '<a href="login.php?action=out">'.$lang_common['Logout'].'</a>';
        }
        else
        {
            $links[] = '<a href="search.php">'.$lang_common['Search'].'</a>';
            $links[] = '<a href="profile.php?id='.$cur_user['id'].'">'.$lang_common['Profile'].'</a>';
            $links[] = '<a href="admin_index.php">'.$lang_common['Admin'].'</a>';
            $links[] = '<a href="login.php?action=out">'.$lang_common['Logout'].'</a>';
        }
    }

    return implode(' | ', $links);
}

you will need to edit this section to add you own links to the list.

see what happens when you try to please one group Connorhd, you are chastized by another. wink

Andorin wrote:

Now both Mambo and PunBB is installed in the same database, and with the right prefix.
What would be the next step? When somebody register at the page, they should register at the forum at the same time. But I don't where in the code (and which code) to make that. Suggestions? Anyone?

if i'm not mistaken you can't just install mambo and punbb's database together and expect them to know what each other means/wants when the db is called upon. you will need to "translate" for lack of a better word, the language that both punbb and mambo speak and build a "translater" plugin/hack for mambo and punbb so the users that register for each portion can be administered. or just search the mambo sites for a wrapper plugin/module and just use the forum without any user registration for the mambo side of things. who knows there might already bea punbb + mambo module/plugin.

short of it is it's not as simple as mambo and punbb using the same db.

lol

i was just going to post that.

1,168

(6 replies, posted in PunBB 1.2 troubleshooting)

http://punbb.org/downloads.php   news generator

1,169

(2 replies, posted in PunBB 1.2 bug reports)

try clearing your cache and trying again.

1,170

(8 replies, posted in Feature requests)

i would email the author who updated it, t2, and see if he still has it laying around.

1,171

(8 replies, posted in Feature requests)

In your linked page (Dr.Jeckyl), I read that somebody adapted it to the version 1.2 of PunBB (http://punbb.org/forums/viewtopic.php?pid=32441#p32441 and http://punbb.org/forums/viewtopic.php?id=4374#p32551).

But this person didn't give any link to download it.

hmmm you're right... i didn't realize that.

Rickard wrote:
CodeDuck wrote:
Rickard wrote:

Is that a required disclaimer for Microsoft employees? big_smile

Yes it is, and let me also point out that views expressed in this forum are mine and do not necessarily reflect the views of my employer.

Wow. I was actually kidding smile Didn't mean to imply that your response was in any way biased. I agree with you 100%.

i'm going to assume he is saying this because of the rash of firings over blogs that have been popping up.

Hear from nine organizations, from seven countries?all leaders in their industries, who evaluated the facts about Windows and Linux and concluded that Windows is a more secure, reliable platform at a lower total cost of ownership than Linux.

BWAHAHAHA!!!!! this is a paid advertisement right?

1,173

(8 replies, posted in Feature requests)

http://punbb.org/forums/viewtopic.php?id=4374 not sure if it's been updated for the latest release of PunBB but worth a shot.

maybe an option to send the mails out in chuncks(groups of maybe 200-500) at a time with a small, couple second pause in between. with a big board this may put a big strain on a mail server.
very nice plugin by the way.

1,175

(4 replies, posted in PunBB 1.2 troubleshooting)

yes, or just move them to a temporary place so you don't need to reupload them if you change your mind.