3,701

(5 replies, posted in PunBB 1.2 discussion)

Bob Armstrong wrote:

Thanks for the input .

I just went ahead and deleted the bouncing users directly from the users table using the phpMyAdmin interface .  No apparent problems . ( They had no posts anyway . )

No subscriptions and no posts? Yeah, just deleting from the table works then

3,702

(1 replies, posted in PunBB 1.2 troubleshooting)

PunBB uses PHP's mail function or SMTP if you enter the information: does PHP know about your mail server?

3,703

(5 replies, posted in PunBB 1.2 discussion)

Bans are not lined to specific users
Posts, authors, etc are: might I suggest deleting them through their profiles or (if there are too many) using the copy of the User Management plugin I posted in the topic

Ask your host what specific scripts were going over

3,705

(14 replies, posted in PunBB 1.2 discussion)

I'm going to assume that simply redirecting back to the topic (setting to 0) isn't going to work, you'll want to give feedback. So why not just set the refresh time to a minute and maybe edit the language files to reflect that users might want to click?

No, the option is in Admin Options

Nope, I made a point about where I stand: I won't claim to represent the opinions of the rest of the developers wink

And so my point is clear to people who missed your posts: hating a religion (I'm not sure how you can hate a religion, but that's for another topic) or any other reason doesn't give you the right to hijack someone's topic with images intended to offend.
If you wanted to engage in reasoned discussion of people's thoughts on Islam, in the proper forum and without hijacking someone else's topic, I would have no problem. However, I do have a problem with you seeing the word Islam in a subject and immediately thinking "mmm, lets try and offend some people."

That's how you syndicate the 5 most recent topics wink
However, it looks like the original poster has decided to go with SMF.

3,709

(11 replies, posted in PunBB 1.2 troubleshooting)

It looks fine to me hmm

3,710

(11 replies, posted in PunBB 1.2 troubleshooting)

Adding that to base.css would accomplish the same purpose wink

So that doesn't work?

3,711

(11 replies, posted in PunBB 1.2 troubleshooting)

quaker wrote:

how so? i didnt find anything in the wiki that listed ie7

Q

http://wiki.punres.org/Change_forum_width
The suggestion for "change the width and center the forum" doesn't work in IE7?

3,712

(11 replies, posted in PunBB 1.2 troubleshooting)

The way suggested in the wiki doesn't work in IE 7?

http://forums.crysisbb.com/extern.php?a … amp;show=5

Well, if their first visit is to a page with define('PUN_QUIET_VISIT', 1) in it, they won't be inserted into the table.

I think what you're looking at are modifications that include plugins. Plugins are admin/mod only tools that go in the plugins folder. Modifications require the user to add files to other places, modify files, etc
In 1.3, modifications and plugins will be replaced by the new extension system. Essentially, all you will have to do is upload the folder for a modification into the extensions directory, hit Install in the admin panel, and you'll have your modification installed

Moved to PunBB Discussion

The online entries are added in the check_cookie function in include/functions.php

3,717

(5 replies, posted in PunBB 1.2 troubleshooting)

Are you sure it's a JPG, GIF, or PNG and not, say, a BMP with the wrong extension?

Peter: I'm not exactly sure why you posted those images, but I've removed them since they seem to have no relevance to the discussion and can be considered offensive. If you have a problem with it, drop me an email.

Take a look at how viewtopic.php does it

Only when resizing images that are too large: I can upload a properly sized GIF or PNG wink

3,721

(8 replies, posted in General discussion)

Is this it?
http://www.punres.org/viewtopic.php?pid=4643#p4643

If so, message_send.php

<?php
if ($pun_config['o_users_online'] == '1')
{
    // Fetch users online info and generate strings for output
    $num_guests = 0;
    $users = array();
    $result = $db->query('SELECT user_id, ident FROM '.$db->prefix.'online WHERE idle=0 ORDER BY ident', true) or error('Unable to fetch online list', __FILE__, __LINE__, $db->error());

    while ($pun_user_online = $db->fetch_assoc($result))
    {
        if ($pun_user_online['user_id'] > 1)
            $users[$pun_user_online['user_id']] = "\n\t\t\t\t".'<a href="profile.php?id='.$pun_user_online['user_id'].'">'.pun_htmlspecialchars($pun_user_online['ident']).'</a><br />';
        else
            ++$num_guests;
    }

    $num_users = count($users);
    echo "\t\t\t\t".$lang_index['users online'].': '.$num_users."\n\t\t\t\t".$lang_index['Guests online'].': '.$num_guests."\n\t\t\t"."\n".'<br />';


    if ($num_users > 0)
    {
        echo "<br />Currently online:";
        
        foreach ($users as $user_id => $username)
        {
            echo '<p><img src="http://bizpartnerlounge.com/common/img/avatars/'.$user_id.'.jpg" /><br />'.$username.'</p>';

        }
        echo "\n\t\t\t"."\n";
    }
    else
        echo "\t\t\t"."\n".'<br />';


}
else
    echo "\t\t"."\n\t\t\t"."\n".'<br />';

?>

I believe that should work, keep in mind though that if the user uploads a GIF or PNG instead of a JPEG, it won't show

3,723

(8 replies, posted in General discussion)

The private messaging mod does not send out emails when there is a new private message. You need to install a modification to make it do that.
What mod did you install that added that functionality?

Mmm, the code that deadram gave you isn't going to work for you
I'd need to see the code for the page to be sure what's going on and what to edit

3,725

(17 replies, posted in PunBB 1.2 discussion)

There is no answer more precise than "when it's done" smile