php forum
php mysql forum
php mysql smarty
 
Topic Options
#231216 - 12/29/02 10:02 PM Dropping of B_ParentUser
3DSHROOM_dup1 Offline
Journeyman

Registered: 04/17/02
Posts: 108
Loc: Texas

   Dropping of B_ParentUser to Del.icio.us Add to del.icio.us
  Digg Dropping of B_ParentUser Digg it
Well it seems that pretty much all my users really hate the dropping of B_ParentUser info.. They aren't used to using the quote feature so it makes it confusing as to who is replying to who.<br /><br />What does everyone else think of this?
_________________________
SacredShrooms.org

Top
#231217 - 12/29/02 10:14 PM Re: Dropping of B_ParentUser [Re: AleksejVL]
Dave_L_dup1 Offline
Addict

Registered: 04/23/02
Posts: 1929
Loc: Virginia, USA
I'm not sure that it's a big deal. When I post, if there's any ambiguity in whom I'm replying to, I'll mention that person by name in the post.<br /><br />Automatically indicating the repliee (is that a word?) can even be misleading, if the replier used flat view and used the last reply link in the thread, rather than the reply link of the appropriate post.
_________________________
UBB.threads beta tester / threadsdev.com moderator
Software consulting services including UBB.threads problem resolution / installs / upgrades / customization.

Top
#231218 - 12/29/02 11:45 PM Re: Dropping of B_ParentUser [Re: AleksejVL]
JoshPet Offline
I type Like navaho

Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
Some people are really missing this.<br /><br />I think with some luck Rick will find a solution that works while maintaining the speed. <br /><br />
_________________________
Joshua Pettit
www.JoshuaPettit.com
My abilities are for hire.

Top
#231219 - 12/31/02 01:12 AM Re: Dropping of B_ParentUser [Re: Daine]
3DSHROOM_dup1 Offline
Journeyman

Registered: 04/17/02
Posts: 108
Loc: Texas
With the amount of posts we get per thread/day. It can really get confusing sometimes. I guess I could put it back in myself, but I would really like to see this be an available feature. <br /><br />I also think that anytime a feature is removed from the software that it should mention this somewhere in the upgrade documentation or something. I guess I could have looked at the altertable script first but I never really thought a major feature like this would be taken out.<br /><br />*sigh* <img src="/forum/images/graemlins/crazy.gif" alt="" /> <img src="/forum/images/graemlins/frown.gif" alt="" /> <img src="/forum/images/graemlins/confused.gif" alt="" />
_________________________
SacredShrooms.org

Top
#231220 - 12/31/02 01:26 AM Re: Dropping of B_ParentUser [Re: AleksejVL]
JoshPet Offline
I type Like navaho

Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
I did write a mod to put it back (under beta mods)<br /><br />Warning....this adds 1 or 2 queries (depending on the option you choose) per post. (that's post). <br /><br />So if your site is too busy (your site is huge) it might not be able to handle it. Use with caution. But wanted to let you know it's there if you want to give it a try.<br /><br />The loss of that feature was a result of the conversion to Usernumber.
_________________________
Joshua Pettit
www.JoshuaPettit.com
My abilities are for hire.

Top
#231221 - 12/31/02 10:21 AM Re: Dropping of B_ParentUser [Re: Daine]
Gardener Offline
Addict

Registered: 05/11/99
Posts: 1956
Loc: Sweden, Uppsala
I haven't seen any 6.2 code so I'm just guessing here, but wouldn't it be possible to do one separate query after all posts have been read to get the names of all parentusers found and insert them into the post array?
_________________________
/Gardener | Complete list of my mods

Top
#231222 - 12/31/02 10:47 AM Re: Dropping of B_ParentUser [Re: c0bra]
JustDave Offline
That 70's Guy

Registered: 06/24/01
Posts: 4097
I have done this on other things to avoid a join so I'm sure it's completely possible. A query would need to be formatted with all the user numbers and then cycle through and place them into the array. This will still affect the speed slightly but there should only be one query needed.
_________________________
~Dave
ChattersOnline.com

Top
#231223 - 12/31/02 05:24 PM Re: Dropping of B_ParentUser [Re: sjsaunders]
Storm_dup1 Offline
Member

Registered: 08/03/02
Posts: 263
Loc: Somewhere above Texas
I agree and I've had a few complaints about this same thing. When you go to read a post that's 50+ posts back you haven't a clue who you're responding to after reading through so many.... <img src="/forum/images/graemlins/laugh.gif" alt="" />
_________________________
Some people read their stars..... I choose to write my own

Top
#231224 - 01/01/03 02:46 AM Re: Dropping of B_ParentUser [Re: ]
JoshPet Offline
I type Like navaho

Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
Yeah, My mod which adds this back in works.. but it might not be the best way. It does a query first to see the usernumber of the poster of the parent post. This step can then offer a link to the profile. or you can go one step further and then look up the username.<br /><br />But I bet JustDave's way is better. <img src="/forum/images/graemlins/smile.gif" alt="" />
_________________________
Joshua Pettit
www.JoshuaPettit.com
My abilities are for hire.

Top
#231225 - 01/01/03 09:55 AM Re: Dropping of B_ParentUser [Re: Daine]
JustDave Offline
That 70's Guy

Registered: 06/24/01
Posts: 4097
Actually I ended up having to use two queries and 3 loops. The speed impact is minimal but I think the trade off is worth it.<br /><br />It's not that hard of a hack. I'll post the code yet today.<br /><br /><br />In stead of going back to the old way of placing the link around the name of the person your replying to I just put the "by JoePoster" after the subject of the reply but now thinking about that that isn't quite right since the poster can change the subject of their reply... lol<br /><br />Guess I'll have to work on that.
_________________________
~Dave
ChattersOnline.com

Top
#231226 - 01/01/03 06:08 PM Re: Dropping of B_ParentUser [Re: sjsaunders]
JoshPet Offline
I type Like navaho

Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
Did you look at mine. I'd be curious as to "how I did". <img src="/forum/images/graemlins/laugh.gif" alt="" /> Is my version slower?<br /><br />I use 2 queries (per post). Or is yours just 2 queries total??
_________________________
Joshua Pettit
www.JoshuaPettit.com
My abilities are for hire.

Top
#231227 - 01/01/03 06:22 PM Re: Dropping of B_ParentUser [Re: Daine]
JustDave Offline
That 70's Guy

Registered: 06/24/01
Posts: 4097
Mine is 2 total. <img src="/forum/images/graemlins/wink.gif" alt="" /><br /><br />I'll post instructions yet tonight. <img src="/forum/images/graemlins/smile.gif" alt="" />
_________________________
~Dave
ChattersOnline.com

Top
#231228 - 01/01/03 06:48 PM Re: Dropping of B_ParentUser [Re: sjsaunders]
JoshPet Offline
I type Like navaho

Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
cool! You da man!<br /><br />If The usernumber of who you were replying to was stored, then I bet it would only be one! <img src="/forum/images/graemlins/smile.gif" alt="" />
_________________________
Joshua Pettit
www.JoshuaPettit.com
My abilities are for hire.

Top
#231229 - 01/01/03 06:52 PM Re: Dropping of B_ParentUser [Re: Daine]
JustDave Offline
That 70's Guy

Registered: 06/24/01
Posts: 4097
That definately would help. When Rick gets this worked back in perhaps he will take that route.
_________________________
~Dave
ChattersOnline.com

Top
#231230 - 01/01/03 06:58 PM Re: Dropping of B_ParentUser [Re: sjsaunders]
Dave_L_dup1 Offline
Addict

Registered: 04/23/02
Posts: 1929
Loc: Virginia, USA
The only problem with this is that some people (like navaho) don't bother using the correct reply link, but always use the one in the last post, so the username shown won't necessarily be meaningful.
_________________________
UBB.threads beta tester / threadsdev.com moderator
Software consulting services including UBB.threads problem resolution / installs / upgrades / customization.

Top
#231231 - 01/01/03 07:04 PM Re: Dropping of B_ParentUser [Re: joeuser]
JustDave Offline
That 70's Guy

Registered: 06/24/01
Posts: 4097
LoL I'm guilty of that too... <img src="/forum/images/graemlins/wink.gif" alt="" />
_________________________
~Dave
ChattersOnline.com

Top
#231232 - 01/01/03 09:47 PM Re: Dropping of B_ParentUser [Re: sjsaunders]
JoshPet Offline
I type Like navaho

Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
Yeah me too. But it's worse if they don't see "Re: Username" to begin with.<br /><br />If they are seeing "Re: Username" then they are more likely to choose to reply to the correct person.<br /><br />The quick reply is a bit of a culprit too. If they just fill in the form then they reply to the last post. But if they use the javascript, then it works right. <img src="/forum/images/graemlins/wink.gif" alt="" />
_________________________
Joshua Pettit
www.JoshuaPettit.com
My abilities are for hire.

Top
#231233 - 01/10/03 03:19 PM Re: Dropping of B_ParentUser [Re: Daine]
matts Offline
Newbie

Registered: 01/09/03
Posts: 10
I can't find the post in beta mods...but I assume the extra queries are because you have to resolve the U_Number into U_Username, so the username is visible. I think you could add a column to the posts table which keeps a record of who you're replying to, that way you can pick it up in the query to get the post, and you can drop it in the query to add the post. It wouldn't work with older posts, but you could also resolve the u_number to u_username IF the new column is blank. It would cut down on extra queries for new posts, but still be backwards compatable.

Top
#231234 - 01/10/03 04:02 PM Re: Dropping of B_ParentUser [Re: perry]
JustDave Offline
That 70's Guy

Registered: 06/24/01
Posts: 4097
Here it is... (well I think this is what you were looking for) <img src="/forum/images/graemlins/wink.gif" alt="" /><br /><br />http://www.threadsdev.com/threads/php/sh...amp;amp;fpart=1
_________________________
~Dave
ChattersOnline.com

Top
#231235 - 01/10/03 08:56 PM Re: Dropping of B_ParentUser [Re: sjsaunders]
JoshPet Offline
I type Like navaho

Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
Dave's figured out a way that uses only 2 queries. I had done an earlier hack.... but it used 2 queries per post. Dave's is better.
_________________________
Joshua Pettit
www.JoshuaPettit.com
My abilities are for hire.

Top


Moderator:  Deb 
Who's Online
0 Registered (), 26 Guests and 4 Spiders online.
Key: Admin, Global Mod, Mod
Shout Box

Latest Posts
Blogs, love em or hate em?
by AllenAyres
10/07/08 02:05 PM
What do you use to edit the files
by Ian_W
10/05/08 03:33 PM
BeyondCompare v3.00
by Ian_W
10/05/08 03:32 PM
Glossy Black Theme with Image Reflection
by Gizmo
10/05/08 02:17 PM
ShareThis
by Gizmo
09/28/08 05:06 AM
[7.3] Viewing MySQL logfiles made easier
by AllenAyres
09/27/08 09:57 PM
Looking for a simple upload script
by Murphdog
09/26/08 08:45 PM
New Mods
[7.3] Viewing MySQL logfiles made easier
by blaaskaak
09/24/08 05:39 PM
[7.3.1] add search to showmembers page
by blaaskaak
09/07/08 04:50 AM
Multiple Identity Detector
by
12/30/06 06:39 PM
Newest Members
pisa666, ghengis317, NitroX, Dogan, EliYah-
13345 Registered Users
Top Posters Last 30 Days
AllenAyres 12
blaaskaak 7
tackaberry 7
FREAK1 5
Mike L_dup1 4
Chris Bale 4
Ian_W 4

 

 

 
fusionbb message board php hacks