1

Topic: My list of futures :)

1. Only members can see the memberlist smile

2. An option to add "private forums" : actually, in 1.1.5, you can do "Only Admin / Moderators" : it would be great if a check box could be added with "Members"

3. Mass PM for updates

4. Tableless version (1.2 isn't it ?)

5. Like IP adress, I would like the "NAME" field appears beneath the IP : why ??? I do games, and I ask name/firstname : but to see them, I HAVE to click on EVERY profile ... cool when there are 2 or 3 winners, but when they are 50/60 ...

6. When integrated to Coppermine : like
PM | Website | Email every each post of a member, a new   | Photos appears ...

That's all ! smile

2 (edited by snapsolutions 2004-09-23 15:26)

Re: My list of futures :)

1,2 and 4 agree

7. Archive
8. Backup Feature (for those who do not have access to phpmyadmin or shell account.)

3

Re: My list of futures :)

1. for Membership, I'm gone on functions.php

Find

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

Cut

$links[] = '<a href="userlist.php">'.$lang_common['User list'].'</a>';

Find few lines later

        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>';

And paste after

$links[] = '<a href="userlist.php">'.$lang_common['User list'].'</a>';

Re: My list of futures :)

you might want to edit userlist.php otherwise that would be very easy to get round

5 (edited by Rod 2004-09-23 18:19)

Re: My list of futures :)

I have done the NAME under IP in Admin Mode ...

viewtopic.php


First is to call 'realname' in db request ...

// Retrieve the posts (and their respective poster)
$result = $db->query('SELECT u.email, u.title, 
u.url, u.location, u.use_avatar,
 u.signature, u.email_setting, u.num_posts, 
u.status, u.registered, u.admin_note, p.id, p.poster, 
p.poster_id, p.poster_ip, p.poster_email, p.message, 
p.smilies, p.posted, p.edited, p.edited_by FROM 
'.$db->prefix.'posts AS p INNER JOIN '.$db->prefix.'users 
AS u ON u.id=p.poster_id WHERE p.topic_id='.$id.' ORDER BY 
p.id LIMIT '.$start_from.','.$disp_posts) or error('Unable to 
fetch post info', __FILE__, __LINE__, $db->error());

Add in the list

u.realname
        if ($cur_user['status'] > PUN_USER)
        {
            $info .= "\n\t\t\t\t\t\t\t".$lang_common['Posts'].': '.$cur_post['num_posts'].'<br>'.
"\n\t\t\t\t\t\t\t".'IP: <a href="moderate.php?get_host='.$cur_post['id'].'">
'.$cur_post['poster_ip'].'</a>';

between
</a>         and          ';

Add

<br /><br /><b> '.$cur_post['realname'].'</b>

6 (edited by Rod 2004-09-23 18:42)

Re: My list of futures :)

Connorhd wrote:

you might want to edit userlist.php otherwise that would be very easy to get round

Indeed ...


if ($cookie['is_guest'] && $pun_config['p_guests_read'] == '0')
    message($lang_common['Login required']);

Replace Value 0 by 1

Re: My list of futures :)

although i hate sites with closed userlists, i mean its just annoying

8

Re: My list of futures :)

Rod wrote:

1. Only members can see the memberlist smile

...

It's the first modify that I put in my punBB smile