I can clean it up, and I did say to click the arroew.

I released a plugin to display the user subscriptions. Connorhd, I hope you don't mind that I based it on your DB Management plugin. (The GPL allows me to do that.)

Last edited by Thomas Jefferson (1776-07-04 13:08:47)

Inspired by this post, this admin/moderator plugin allows you to see what posts users are subscribed to. It is based on the DB Management plugin by Connorhd.

Download instructions (if you don't want to go to the PunBB downloads page):
1. Go to http://phpxplorer.scottywz.com
2. You are already logged in as guest. Don't try to login as me or root (the passwords here are not the default ones).
3. Click on dloads.
4. Click on PunBB.
5. Click the arrow next to AMP_User_subscriptions.zip.
6. Extract and upload like a regular plugin.

I can't give you a direct link to the download due to its location in my Web hosting account.

Enjoy!

254

(31 replies, posted in PunBB 1.2 show off)

I just now did it.

255

(31 replies, posted in PunBB 1.2 show off)

I just wanted it to be that way. Thanks for the suggestion; Ill make it point to the home page. smile

I give up for now, but am still open for suggestions.

In the meantime, they're in maintenence mode. I transferred all of the accounts in the DB.

I want to keep the 3 separate.

I am combing the user accounts my Web site (which uses PunBB as a CMS) and my two forums into one account. I'm working on it, but I'd like to know if anyone has a suggestion on how to do this.

260

(31 replies, posted in PunBB 1.2 show off)

You can register on my Web site to change the colors. I'm thinking of combining all 3 accounts (the site, the forums, and the SECM) into one.

261

(31 replies, posted in PunBB 1.2 show off)

The logo is just a thumbnail. The supplementary pages link being left off is intentional, because that's just for things I want accessible but not in the main navigation, like the toolbar page. Thanks for the theme comment.

262

(6 replies, posted in PunBB 1.2 troubleshooting)

Where's your forum?

If it still says 1.2, enable the version number in the board footer, and I'll take a look at it (not in files or admin, of course).

264

(3 replies, posted in Feature requests)

Interesting. However, "I'm Feeling Lucky" is a trademark of Google, so you'd have to give it another name. Nice concept, though.

265

(34 replies, posted in PunBB 1.2 bug reports)

No. That was actually my Pocket PC. I used MagicSS to do the screenshots.

zaher wrote:

I need that, Show in table who is Subscribe to topic and what topic Subscribes

User Name | Topic title

hmm I'll have to think about that one. smile

267

(34 replies, posted in PunBB 1.2 bug reports)

Thanks.

268

(35 replies, posted in General discussion)

I'm making a WYSIWYG (what you see is what you get) mod for PunBB. Does anyone know of a good WYSIWYG BBCode editor? (Usually WYSIWYG editors edit HTML, but I want to edit BBCode.)

269

(8 replies, posted in General discussion)

ameenullah wrote:

Thanks alot Zaheer, I am start checking all the sites one by one, Main thing I want is i want to convert it to midi format for my mobile 6600, if any other format which the mobile can support... also ll go.

It looks like a Nokia® phone; is it?

270

(72 replies, posted in General discussion)

It gives me a "Cannot Find Server" message. Did you remove it?

271

(8 replies, posted in General discussion)

There's Anvil Studio at http://www.anvilstudio.com/. It's free. It may not be exactly what you need, but it may help.

Last edited by scottywz (1776-07-04 0:03:24)

272

(7 replies, posted in Feature requests)

On a clean (no mods) installation of PunBB 1.2.5, you edit this in the profile.php file:

Find (it's way down in there):

    <div class="blockform">
        <h2><span><?php echo pun_htmlspecialchars($user['username']).' - '.$lang_profile['Section messaging'] ?></span></h2>
        <div class="box">
            <form id="profile3" method="post" action="profile.php?section=messaging&id=<?php echo $id ?>">
                <div class="inform">
                    <fieldset>
                        <legend><?php echo $lang_profile['Contact details legend'] ?></legend>
                        <div class="infldset">
                            <input type="hidden" name="form_sent" value="1" />
                            <label><?php echo $lang_profile['Jabber'] ?><br /><input id="jabber" type="text" name="form[jabber]" value="<?php echo pun_htmlspecialchars($user['jabber']) ?>" size="40" maxlength="75" /><br /></label>
                            <label><?php echo $lang_profile['ICQ'] ?><br /><input id="icq" type="text" name="form[icq]" value="<?php echo $user['icq'] ?>" size="12" maxlength="12" /><br /></label>
                            <label><?php echo $lang_profile['MSN'] ?><br /><input id="msn" type="text" name="form[msn]" value="<?php echo pun_htmlspecialchars($user['msn']) ?>" size="40" maxlength="50" /><br /></label>
                            <label><?php echo $lang_profile['AOL IM'] ?><br /><input id="aim" type="text" name="form[aim]" value="<?php echo pun_htmlspecialchars($user['aim']) ?>" size="20" maxlength="30" /><br /></label>
                            <label><?php echo $lang_profile['Yahoo'] ?><br /><input id="yahoo" type="text" name="form[yahoo]" value="<?php echo pun_htmlspecialchars($user['yahoo']) ?>" size="20" maxlength="30" /><br /></label>
                        </div>
                    </fieldset>
                </div>
                <p><input type="submit" name="update" value="<?php echo $lang_common['Submit'] ?>" /><?php echo $lang_profile['Instructions'] ?></p>
            </form>
        </div>
    </div>

Replace with:

    <div class="blockform">
        <h2><span><?php echo pun_htmlspecialchars($user['username']).' - '.$lang_profile['Section messaging'] ?></span></h2>
        <div class="box">
            <form id="profile3" method="post" action="profile.php?section=messaging&id=<?php echo $id ?>">
                <div class="inform">
                    <fieldset>
                        <legend><?php echo $lang_profile['Contact details legend'] ?></legend>
                        <div class="infldset">
                            <input type="hidden" name="form_sent" value="1" />
                            <label><?php echo $lang_profile['Jabber'] ?><br /><input id="jabber" type="text" name="form[jabber]" value="<?php echo pun_htmlspecialchars($user['jabber']) ?>" size="40" /><br /></label>
                            <label><?php echo $lang_profile['ICQ'] ?><br /><input id="icq" type="text" name="form[icq]" value="<?php echo $user['icq'] ?>" size="12" /><br /></label>
                            <label><?php echo $lang_profile['MSN'] ?><br /><input id="msn" type="text" name="form[msn]" value="<?php echo pun_htmlspecialchars($user['msn']) ?>" size="40" /><br /></label>
                            <label><?php echo $lang_profile['AOL IM'] ?><br /><input id="aim" type="text" name="form[aim]" value="<?php echo pun_htmlspecialchars($user['aim']) ?>" size="20" /><br /></label>
                            <label><?php echo $lang_profile['Yahoo'] ?><br /><input id="yahoo" type="text" name="form[yahoo]" value="<?php echo pun_htmlspecialchars($user['yahoo']) ?>" size="20" /><br /></label>
                        </div>
                    </fieldset>
                </div>
                <p><input type="submit" name="update" value="<?php echo $lang_common['Submit'] ?>" /><?php echo $lang_profile['Instructions'] ?></p>
            </form>
        </div>
    </div>

It may work if you have mods installed, you may have to experiment. smile

Last edited by scottywz (1776-07-04 0:01:37)

273

(63 replies, posted in Feature requests)

Not much difference between 1.2.5 and 1.3 (as far as your eyes can tell), except the Oxygen theme doesn't work and there's a Search Engine Friendly URLs option.

Still, here's a preview: http://test.scottywz.com/punbb_1.3
Login as user forums_user with password forums_user

274

(63 replies, posted in Feature requests)

Oh. Silly me! smile

275

(63 replies, posted in Feature requests)

Gizzmo wrote:

psst its 1.2.5 if it was 1.25, 1.3 would be a downgrade

...

How so?