Previous Thread
Next Thread
Print Thread
Hop To
#138461 04/23/2001 2:09 AM
Anonymous
Unregistered
Anonymous
Unregistered
1. I would like to request that a new option be added to the admin list for the Edit User page. I noticed that in the newer version there is an option to reset titles for ALL users included in the new “Edit Titles” option. That is great when you are creating all new titles for use by everyone. We definitely needed tat. However, we also need the ability to reset INDIVIDUAL user titles as well. Sure, an Admin can simply type in the title for a user, but once he or she does that once for an account, it never updates again. So even if you change a users title for only a few days, then switch them back tot heir normal title, the system does not update the title when they reach that next title range. So an option to simply “reset” a users title to the default would be great. It would compare the number of posts the user has with the title list and then assign them the right title would be great.
2. There seems to be a problem with Markup code. It is an issue with using CAPS vs. lower case.
Test:
Stratics <font color=red><-- Using UPPER case</font color=red>
<a target="_blank" href=http://www.stratics.com>Stratics</a> <font color=red><-- Using lower case</font color=red>
Can that be fixed by chance?
3. I’ve asked for this numerous times, but I’ll harp on it again – it would be great if the Dateslip option was a user selectable option. We added a Hack that allows for us to toggle it on or off on a forum by forum basis, but it would be FAR better if the user could choose in his or her profile whether or not they prefer dateslip on or off. You see, for folks who use Expanded/Threaded views exclusively, they generally prefer Dateslip OFF. However, folks in Flat generally like it on.
4. Scream, we also found that the “Check All”, “Uncheck All” mod was in the code, but not fully added. We added it and it works great. Just letting you know that you might want to finish adding that.
Thanks!

Jhariden (aka Strategist)
<a target="_blank" href=http://boards.stratics.com>Stratics Forums</a>

#138462 04/23/2001 2:19 PM
Anonymous
Unregistered
Anonymous
Unregistered
Scratch the request for the individual reset option. While I think it would be cool to have, we found a way to fix the problem. Scream, you may wish to add this to your code. In addusers.php:

<pre> // -------------------------------------------------------

// Now we check and see if they get a new title but only if

// they don't have a custom title

$NewTitle = $CurrTitle;

$UserTitle_q = addslashes($CurrTitle);
$titles = file("$config[phpurl]/filters/usertitles");

while (list($linenum,$line) = each($titles) ) {

list ($posts,$title) = split("\t",$line);

$title = chop ($title);

$CurrTitle = chop ($CurrTitle);

if ($CurrTitle == $title) {

$okay = 1;

}

elseif ($Totalposts >= $posts) {

$NewTitle = $title;

break;

}

}

if ( ($okay) && ($NewTitle != $CurrTitle) ){

$UserTitle_q = addslashes($NewTitle);

}</pre>
Change this line:<pre> elseif ($Totalposts == $posts) {</pre>To read:<pre> elseif ($Totalposts >= $posts) {</pre>Then as long as the Admin changes a user title back to one that matches one in the current Titles list/file it will automatically fix the title if the persons post count is equal to or higher than the required post level.
Jhariden (aka Strategist)

<a target="_blank" href=http://boards.stratics.com>Stratics Forums</a>

#138463 04/23/2001 4:00 PM
Anonymous
Unregistered
Anonymous
Unregistered
so how do you like the php version? is it running as good as the perl version? i noticed on my side that the whos online page loaded alot faster. do your users notice any difference? i like the grey on grey that you have going. last time i looked the whos online page was 180k in size and you had some 600 people doing misc things on your boards. that is amazing, i know that vb would fold at about 90 people. looks awesome..

<font color=red>--------------</font color=red>

<a target="_blank" href=http://extremeforums.org>http://extremeforums.org</a>

#138464 04/23/2001 7:24 PM
Anonymous
Unregistered
Anonymous
Unregistered
I would also like to hear opinions from someone who converted from the perl version ; )...trying to decide what to use myself..

#138465 04/24/2001 2:53 AM
Anonymous
Unregistered
Anonymous
Unregistered
Everyone loves the PHP version except for a few things. One major issue now is the problem with the script jumping automatically to the "new" posts within a thread. You're all likely used to it now it was introduced in 5.2. Well, we just launched that for the first time with our PHP version (we had been running 5.1.6 of Perl before which does not have this behavior built in) and it's become obvious there is an issue in this "jump to new" option. I am getting a lot of flak about it. It seems that this option does not really look at the post time/date stamps but instead works off the time/date stamp of the last time you visited the forum.
So for example, if you visit a forum, there are ten new threads, you read five of them but not the other five. You exit the forums; browse the web or what have you. Then you return and decide to go and read those five threads you skipped previously. New posts have been added since your last visit, it JUMPS to those new messages, even though you never read the initial posts in that thread previously. We’re getting huge amount of angry users because that one. Aside from that, the rest of the issues seem minor. We’re still having the trouble with the titles – the option above is not working as expected. So don’t bother using it!
There are many smaller issues as well like people being able to login using different variations of their names. Example: I can login as Jhariden, or JhArIdEn or JHARIDEN and it allows it. However, if you try to use certain features while logged in as something other than your original name (i.e. Jhariden) certain areas of he script fail to execute and deny you access. So we’ve been battling a lot of little things like this. If you try to send a PM for example using one of these alternate variations, it fails.
All done and said, I think the PHP version is a big hit. We spent a LOT of time preparing the script prior to migrating to it though and we’re still encountering several issues. This was to be expected however. It is much easier to root out issues when you have the volume we have. I always joke about how a small change can fill my in-box. We can always count on people sending us feedback (either good, constructive and/or hostile) as issues arise.
Final thought… definitely worth the speed increase! I’ll take the PHP over Perl any day now. But there are a lot of relatively MINOR issues that become annoying that do need to be addressed. Scream: I’ll try to collect my thoughts on these as time permits and compile them into a specific list for you.
Jhariden (aka Strategist)

<a target="_blank" href=http://boards.stratics.com>Stratics Forums</a>

#138466 04/24/2001 7:16 AM
Anonymous
Unregistered
Anonymous
Unregistered
Just for note that Perl 5.3 with mod_perl is lightning fast <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" /> Ofcourse PHP mightbe bit faster than it but i dont know how much since i dont run PHP version myself. I just hope you will email list of issues soon to Scream so he can get then fixed (some maybe exist in perl version too).

#138467 04/25/2001 12:03 AM
Anonymous
Unregistered
Anonymous
Unregistered
About jumping to the newest message: I also have problems with this (as a user) here witht the perl version..So I guess this is something not related to perl/php, but a somewhat confusing "feature"...I would love it if it was a link on top, jump to new messages, or something like that...

Most of the times I want to browse the messages that I have already read (to refresh my memory about the context of new posts). I always wanted to "complain" <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" /> about this feature, but I guess I kind of got used to it...I understand however your users...

#138468 05/01/2001 8:12 PM
Anonymous
Unregistered
Anonymous
Unregistered
I agree with your #3 so I just did my own <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" /> People with threaded view hate it and flat view seem to like it. I edited the extra fields to incorporate it and then just changed the postlist.php and showprofile.php (no one needs to know if they have the option set). Works good and people are happy again!

#138469 05/01/2001 10:34 PM
Anonymous
Unregistered
Anonymous
Unregistered
Which is #3?

<img src="http://www.wopr.com/w3tuserpics/Eileen-sig.gif" alt=" - " />

#138470 05/02/2001 8:36 AM
Anonymous
Unregistered
Anonymous
Unregistered
Allowing the user to have the dateslip feature on or off in their profile.

#138471 05/03/2001 3:00 AM
Anonymous
Unregistered
Anonymous
Unregistered
Gotcha. Good idea. I'll think I'll copy that. <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />

<img src="http://www.wopr.com/w3tuserpics/Eileen-sig.gif" alt=" - " />

#138472 05/02/2001 5:48 PM
Anonymous
Unregistered
Anonymous
Unregistered
It has been hugely popular for us. I had a real heated division of opinions and now everyone (hopefully) is happy [img] /w3timages/icons/images/icons/tongue.gif [/img]

#138473 05/06/2001 11:53 AM
Anonymous
Unregistered
Anonymous
Unregistered
This sounds great... we really do need something like this. <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" /> Can you send us a copy of how you did it? I'd love to see!

Jhariden (aka Strategist)
<A target="_blank" HREF=http://boards.stratics.com>Stratics Forums</A>

#138474 05/06/2001 7:18 PM
Anonymous
Unregistered
Anonymous
Unregistered
>>Can you send us a copy of how you did it?

Yes please! Save us reinventing the wheel...

<img src="http://www.wopr.com/w3tuserpics/Eileen-sig.gif" alt=" - " />

#138475 05/07/2001 1:11 PM
Anonymous
Unregistered
Anonymous
Unregistered
OK, now that it isn't fresh in my memory I might get something wrong. Basically I had the dateslip feature turned on and had people screaming at me so I went in and did everything very quickly.
What I did was edit the postlist.php program and added a variable in the "Get the user info" area. In the config script if you have an extra field available just call it something relating to this like "Move posts to top?" or something to that effect.
Whatever that extra variable name is, add it to the end of that "Get the user info" query. Mine is like this:
<pre>$user = $userob -> authenticate("$Username","$Password","U_Username, U_Password, U_Display, U_Groups, U_Sort, U_View, U_PostsPer, U_TempRead, U_FlatPosts, U_TimeOffset,U_ActiveThread,U_Extra3");</pre>
As you can see, mine is the U_Extra3 field in the config script.
Then down below in the postlist.php script look for this:
// If dateslip is on, we sort by Last_Post, otherwise we sort by Posted
I changed my code to this from what was there:
<pre> $DateSlip = $user[U_Extra3];

if (!$DateSlip) {

$sort_opt = array(

1 => 'B_Subject DESC',

2 => 'B_Subject ASC',

3 => 'B_Username DESC',

4 => 'B_Username ASC',

5 => 'B_Last_Post DESC',

6 => 'B_Last_Post ASC',

7 => 'B_Counter DESC',

8 => 'B_Counter ASC',

9 => 'B_Replies DESC',

10 => 'B_Replies ASC'

);

$sort_by = $sort_opt[$sb];

}

else {

$sort_opt = array(

1 => 'B_Subject DESC',

2 => 'B_Subject ASC',

3 => 'B_Username DESC',

4 => 'B_Username ASC',

5 => 'B_Posted DESC',

6 => 'B_Posted ASC',

7 => 'B_Counter DESC',

8 => 'B_Counter ASC',

9 => 'B_Replies DESC',

10 => 'B_Replies ASC'

);

$sort_by = $sort_opt[$sb];

}</pre>
Now people can go to their profile and enter 'No' or whatever in the field to turn it off. Actually they can type in 'Yes' and it will still turn it off because anything in the text box will make the dataslip feature turn off but in the config script I have it worded as follows:
<pre> $config['extra3'] = "Move Posts To Top? (Enter 'No' or they will)";</pre>
I might not be explaining everything the best but that is the quick and dirty fix until it is a full feature in 5.4 or whatever future version.

#138476 05/07/2001 2:37 PM
Anonymous
Unregistered
Anonymous
Unregistered
Scream, will you be adding this feature to a future version of the script? It'd be very handy!
Jhariden (aka Strategist)

<a target="_blank" href=http://boards.stratics.com>Stratics Forums</a>

#138477 05/07/2001 4:03 PM
Anonymous
Unregistered
Anonymous
Unregistered
fdgdfgdfgdfgdf

#138478 05/07/2001 5:22 PM
Anonymous
Unregistered
Anonymous
Unregistered
Excellent. Thank you for that. It'll be a godsend.

<img src="http://www.wopr.com/w3tuserpics/Eileen-sig.gif" alt=" - " />

#138479 05/08/2001 12:57 PM
Anonymous
Unregistered
Anonymous
Unregistered
No problem. Like I said it was done very quickly to get some of the visitors off my back but it works and they are happy <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />

#138480 05/10/2001 3:31 AM
Anonymous
Unregistered
Anonymous
Unregistered
Just checking things out

#138481 05/13/2001 3:25 AM
Anonymous
Unregistered
Anonymous
Unregistered
It's in 'addpost.php' and not in 'adduser.php' <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />

Carl
----------

<a target="_blank" href=http://www.colour-ize.de/forum>http://www.colour-ize.de/forum</a> (test entry: user: 'test' pw: 'test')


Link Copied to Clipboard
ShoutChat
Comment Guidelines: Do post respectful and insightful comments. Don't flame, hate, spam.
Recent Topics
Bots
by Outdoorking - 04/13/2024 5:08 PM
Can you add html to language files?
by Baldeagle - 04/07/2024 2:41 PM
Do I need to rebuild my database?
by Baldeagle - 04/07/2024 2:58 AM
This is not a bug, but a suggestion
by Baldeagle - 04/05/2024 11:25 PM
Is UBB.threads still going?
by Aaron101 - 04/01/2022 8:18 AM
Who's Online Now
0 members (), 359 guests, and 92 robots.
Key: Admin, Global Mod, Mod
Random Gallery Image
Latest Gallery Images
Los Angeles
Los Angeles
by isaac, August 6
3D Creations
3D Creations
by JAISP, December 30
Artistic structures
Artistic structures
by isaac, August 29
Stones
Stones
by isaac, August 19
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20230217)