|
Joined: Jun 2006
Posts: 9,242 Likes: 1
Former Developer
|
Former Developer
Joined: Jun 2006
Posts: 9,242 Likes: 1 |
We've just posted the changelog for 7.5.1 and you can use this thread to discuss anything concerning this version.
|
|
|
|
Joined: Feb 2007
Posts: 1,294 Likes: 2
Veteran
|
Veteran
Joined: Feb 2007
Posts: 1,294 Likes: 2 |
BUGFIX: If a user canceled their subscription through paypal it would immediately remove their access from the group. This has been changed so the user will still have access to the group until the original expiration date, since they've already paid for that time. Can you modify the subscriptions from the control panel.
|
|
|
|
Joined: Dec 2003
Posts: 1,796
Pooh-Bah
|
Pooh-Bah
Joined: Dec 2003
Posts: 1,796 |
Merci Buckets Rick 
|
|
|
|
Joined: Jun 2006
Posts: 9,242 Likes: 1
Former Developer
|
Former Developer
Joined: Jun 2006
Posts: 9,242 Likes: 1 |
Can you modify the subscriptions from the control panel. You can do that in 7.5.
|
|
|
|
Joined: Aug 2006
Posts: 583
old hand
|
old hand
Joined: Aug 2006
Posts: 583 |
Whoo Hoo:
BUGFIX: The Who's Online Island will now properly sort by last activity instead of alphabetical. BUGFIX: Fixed a javascript bug with the Use/Execute links on the Database Command page in the Control Panel.
|
|
|
|
Joined: Jul 2006
Posts: 4,057
|
Joined: Jul 2006
Posts: 4,057 |
any idea's when its available (This weekend ) ?
Good stuff Rick
BOOM !! Version v7.6.1.1 People who inspire me Isaac ME Gizmo
|
|
|
|
Joined: Jun 2006
Posts: 16,378 Likes: 129
|
Joined: Jun 2006
Posts: 16,378 Likes: 129 |
We haven't gotten a beta yet, so I wouldn't hold your breath (since Groupee is closed on Weekends and Dave puts things in there i wouldn't count on it after tonight)
|
|
|
|
Joined: Jul 2006
Posts: 4,057
|
Joined: Jul 2006
Posts: 4,057 |
okay 
BOOM !! Version v7.6.1.1 People who inspire me Isaac ME Gizmo
|
|
|
|
Joined: Jan 2008
Posts: 222
enthusiast
|
enthusiast
Joined: Jan 2008
Posts: 222 |
BUGFIX: The Who's Online Island will now properly sort by last activity instead of alphabetical. I'm looking for that one as well, but i can't seem to find it anywhere in my sources. Could please someone give me a tiny little hint? Rob
|
|
|
|
Joined: Aug 2006
Posts: 1,360 Likes: 1
Veteran
|
Veteran
Joined: Aug 2006
Posts: 1,360 Likes: 1 |
I'm looking for that one as well, but i can't seem to find it anywhere in my sources. Could please someone give me a tiny little hint? In /cache_builders is the code that builds the islands.
|
|
|
|
Joined: Jan 2008
Posts: 222
enthusiast
|
enthusiast
Joined: Jan 2008
Posts: 222 |
That's a tiny little hint  Unfortunately not big enough... Thanks anyway
|
|
|
|
Joined: Apr 2007
Posts: 3,940 Likes: 1
Former Developer
|
Former Developer
Joined: Apr 2007
Posts: 3,940 Likes: 1 |
cache_builders/online_now.php
line 111 (approx)
|
|
|
|
Joined: Jan 2008
Posts: 222
enthusiast
|
enthusiast
Joined: Jan 2008
Posts: 222 |
That's what i found too, but i expected to find a ORDER BY line. This line takes a query from another (script)file. I keep banging my head against the wall about it.
Rob
|
|
|
|
Joined: Aug 2006
Posts: 1,360 Likes: 1
Veteran
|
Veteran
Joined: Aug 2006
Posts: 1,360 Likes: 1 |
doesn't it say order by t1.USER_DISPLAY_NAME asc right there?
I replaced it with ORDER BY RAND() quite a while back to get a random selection, instead of just the first few of the alphabet.
|
|
|
|
Joined: Jun 2006
Posts: 9,242 Likes: 1
Former Developer
|
Former Developer
Joined: Jun 2006
Posts: 9,242 Likes: 1 |
It's a bit more complicated fix. Since we grab everyone and then put them into groups (users, guests, search engines). Once we have all the actual users then we have to resort the list. So nothing in the SQL query will fix it, otherwise I would have just posted the fix 
|
|
|
|
Joined: Jan 2008
Posts: 222
enthusiast
|
enthusiast
Joined: Jan 2008
Posts: 222 |
Ah thanks Rick, but the RAND option (from Yarp™) will do for me. Otherwise only the users 111 and 114 and 538listener and others will be shown with only showing 6 online users. At least we have every 2 minutes other users in the list.
Rob
Last edited by Robje01; 03/15/2009 11:18 AM.
|
|
|
|
Joined: Jun 2006
Posts: 9,242 Likes: 1
Former Developer
|
Former Developer
Joined: Jun 2006
Posts: 9,242 Likes: 1 |
I see a bug in Who's Online that I'm fixing now 
|
|
|
|
Joined: Oct 2006
Posts: 46
newbie
|
newbie
Joined: Oct 2006
Posts: 46 |
Hey there, Just wondering if 5.1 fixes the bug where multiple moderators are listed in the forums?
I badly need to change some mod permissions but am scared that it'll just add more names.
Fack, it's driving us nuts and looks terrible!
If 5.1 doesn't fix it, can someone please, please, please tell me how to fix it.
I will forever be grateful!
Thx
Will
|
|
|
|
Joined: Jan 2008
Posts: 222
enthusiast
|
enthusiast
Joined: Jan 2008
Posts: 222 |
Hi Will,
I'm not sure what you mean, would like to help you but i don't realy get what you are meaning...
Rob
|
|
|
|
Joined: Jul 2006
Posts: 4,057
|
Joined: Jul 2006
Posts: 4,057 |
Just don't do any amendments in the moderators list in the cp they multiply at submit.
I'm awaiting 7.5.1 Apparently its been fixed looking at the thread.
BOOM !! Version v7.6.1.1 People who inspire me Isaac ME Gizmo
|
|
|
|
Joined: Jan 2008
Posts: 222
enthusiast
|
enthusiast
Joined: Jan 2008
Posts: 222 |
That's an easy one.
Open /scripts/postlist.inc.php Search for the line SELECT t1.USER_ID,t2USER_DISPLAY_NAME (Line 229 ?) and replace it with: SELECT DISTINCT t1.USER_ID,t2.USER_DISPLAY_NAME
Do the same with showflat.inc.php
Solved within 2 minutes.
Rob
|
|
|
|
Joined: Oct 2006
Posts: 46
newbie
|
newbie
Joined: Oct 2006
Posts: 46 |
Maybe Rick could advise if it's been sorted in 7.5.1? I couldn't see it mentioned in the release notes.
Robje, thanks for that. Did you do that fix yourself? Has anyone else used it?
Thx!
|
|
|
|
Joined: Jan 2008
Posts: 222
enthusiast
|
enthusiast
Joined: Jan 2008
Posts: 222 |
Yes, fixed it myself. I've been exploring the sources for a couple of months and i'm getting used to the structure  Rob
|
|
|
|
Joined: Oct 2006
Posts: 46
newbie
|
newbie
Joined: Oct 2006
Posts: 46 |
Thanks Robje, that seems to have fixed it. I notice they are all still multiply listed in the control panel though :-( Still, at least the front end looks good ! LOL
|
|
|
|
Joined: Apr 2007
Posts: 3,940 Likes: 1
Former Developer
|
Former Developer
Joined: Apr 2007
Posts: 3,940 Likes: 1 |
That's an easy one.
Open /scripts/postlist.inc.php Search for the line SELECT t1.USER_ID,t2USER_DISPLAY_NAME (Line 229 ?) and replace it with: SELECT DISTINCT t1.USER_ID,t2.USER_DISPLAY_NAME
Do the same with showflat.inc.php
Solved within 2 minutes.
Rob that just masks the problem as a bandaid.. the better solution is to ensure no dupes in the actual DB in the 1st place.. i wouldn't use that as a permanent 'fix' ie: fix it in the admin world / DB .. that ripples outward with correct results..
|
|
|
|
Joined: Oct 2006
Posts: 46
newbie
|
newbie
Joined: Oct 2006
Posts: 46 |
Thanks Sirdude, do you know if the fix is in 5.1?
|
|
|
|
Joined: Apr 2007
Posts: 3,940 Likes: 1
Former Developer
|
Former Developer
Joined: Apr 2007
Posts: 3,940 Likes: 1 |
that's really Rick's call.. i don't know if he addressed it or not.. my niggling suspicion is yes.. but don't quote me 
|
|
|
|
Joined: Jan 2008
Posts: 222
enthusiast
|
enthusiast
Joined: Jan 2008
Posts: 222 |
Ho ho, i never said it's a permanent fix, it's just to mask it front-end and the fix will be in 7.5.1 i guess.
Rob
|
|
|
|
Joined: Jul 2006
Posts: 4,057
|
Joined: Jul 2006
Posts: 4,057 |
Any idea's on 7.5.1 for download ?
BOOM !! Version v7.6.1.1 People who inspire me Isaac ME Gizmo
|
|
|
|
Joined: Aug 2006
Posts: 1,360 Likes: 1
Veteran
|
Veteran
Joined: Aug 2006
Posts: 1,360 Likes: 1 |
Any idea's on 7.5.1 for download ? Yep, go to members area, and download 
|
|
|
|
Joined: Feb 2009
Posts: 53
journeyman
|
journeyman
Joined: Feb 2009
Posts: 53 |
Hallo,
is it enough to copy the files: UPGRADE_CHANGES.txt VERSION-7.5.1:CHANGED: .............
into the directory, to update from 7.5 to 7.5.1? Language is up to date.
Is there any change in the database?
Thanks Stephan
|
|
|
|
Joined: Jan 2008
Posts: 222
enthusiast
|
enthusiast
Joined: Jan 2008
Posts: 222 |
I sure hope that we only have to replace the upgrade_changes.txt included files. I modified too much to upgrade the whole board source...
|
|
|
|
Joined: Aug 2006
Posts: 1,360 Likes: 1
Veteran
|
Veteran
Joined: Aug 2006
Posts: 1,360 Likes: 1 |
I sure hope that we only have to replace the upgrade_changes.txt included files. I modified too much to upgrade the whole board source... Yep, that is all that is needed.
|
|
|
|
Joined: Jan 2008
Posts: 222
enthusiast
|
enthusiast
Joined: Jan 2008
Posts: 222 |
And a little mod to the database ubbt_FORUMS where the FORUM_SORT_DIR key is 4 chars now.
Thanks..,
Rob
|
|
|
|
Joined: Nov 2006
Posts: 3,095 Likes: 1
Carpal Tunnel
|
Carpal Tunnel
Joined: Nov 2006
Posts: 3,095 Likes: 1 |
Is it just me, or is it not possible to logon as the DB admin #1 that setup the DB? I don't recall setting up an account inside the actual DB of UBBT but assumed it was already created. I can logon with another Admin account but can't seem to logon with the one that created the DB in the first place and is there in the Control Panel. I've confirmed the password is correct. SELECT COUNT( * ) AS `Rows` , `USER_LOGIN_NAME`
FROM `ubbt_USERS`
GROUP BY `USER_LOGIN_NAME`
ORDER BY `USER_LOGIN_NAME`
LIMIT 0 , 30 Shows #1 logon as: **DONOTDELETE**
Last edited by ntdoc; 03/20/2009 8:05 PM. Reason: code snippet posted
|
|
|
|
Joined: Feb 2009
Posts: 53
journeyman
|
journeyman
Joined: Feb 2009
Posts: 53 |
and in ubbt_VERSION change per hand to 7.5.1?
|
|
|
|
Joined: Jan 2008
Posts: 222
enthusiast
|
enthusiast
Joined: Jan 2008
Posts: 222 |
@ntdoc I think it always was **DONOTDELETE**
@Stephan When you replace the files as described in the update_changes you'll have an updated version (shown below your pages) and in the board statistics. But i still have 7.5 in my database...
Rob
|
|
|
|
Joined: Apr 2007
Posts: 3,940 Likes: 1
Former Developer
|
Former Developer
Joined: Apr 2007
Posts: 3,940 Likes: 1 |
member #2 is the 1st real member.. #1 is NOT..
|
|
|
|
Joined: Mar 2008
Posts: 327
Enthusiast
|
Enthusiast
Joined: Mar 2008
Posts: 327 |
DONOTDELETE is the placeholder for anonymous posters if you allow this on your board.
|
|
|
0 members (),
80
guests, and
88
robots. |
Key:
Admin,
Global Mod,
Mod
|
|
|
|