Previous Thread
Next Thread
Print Thread
Hop To
Anonymous
Unregistered
Anonymous
Unregistered
UBB.threads version 6.2.1 has been released to the Member Area.

UBB.threadsâ„¢ 6.2.1 is a minor maintenance release that contains the following fixes for problems reported since version 6.2 was released.

Fixed a typo in cron/php/subscriptions.php
Fixed a bug with showing the registration date when timeformat is set to short5.
Fixed a bug with user titles and apostrophes.
Fixed a bug with the showstats screen not showing reply privileges for groups.
Fixed a bug with the search engine and moved topics when a stub has been left.
Fixed a small bug with read receipts on private messages.
Fixed a bug with the search engine and searching by Display name.
Added the Signature seperation line to the preview post screen.
Fixed a bug with the mess_handler.php not using the html class at the proper point.
Fixed a regular expression bug with the jumper.php script.
Fixed a bug with sticky posts not showing under certain settings.
Fixed a bug that keeping old accounts with unverified emails from being deleted.
Went back to a simple regex for email addresses since we now have the new email verification option.
Fixed a couple cosmetic template bugs.
Fixed an intermittent bug with the showmembers.php script.
Fixed a bug with the image markup tag and editing.
Fixed a bug with favorite forums not always showing properly.
Fixed a problem that was allowing blank posts.
Broke the altertable-6.1-6.2.php script into more steps to help prevent timeouts on large boards.
Removed a css class that was causing some browsers to render the quote tag incorectly.

To upgrade from version 6.2:
Overwrite your existing files with the files listed in CHANGEDFILES.txt or you can do a full upgrade by overwriting all files except for main.inc.php, config.inc.php and theme.inc.php.
Running the config editor in the admin section will update your version number.
There are no altertables to run.

If you are upgrading from a version older than version 6.2, please read the UPGRADING.html. Scroll down until you see your current version listed, then follow the instructions from that version and up.

If you have any custom stylesheets, you can remove the following CSS class from them, which will make the quote function look better:

blockquote br { font-size:1px }

Honor The Victims

Anonymous
Unregistered
Anonymous
Unregistered
Yeah! <img border="0" title="" alt="[Big Grin]" src="images/icons/grin.gif" />

Josh
Measurection.com Admin | ThreadsDev.com Moderator
Register to see my How To/Site Help Library Forum at ThreadsDev.com.
My threads 'tweaking' abilities are for hire.

Anonymous
Unregistered
Anonymous
Unregistered
Thanks! <img border="0" title="" alt="[Cool]" src="images/icons/cool.gif" />

Da LAN Tech

Anonymous
Unregistered
Anonymous
Unregistered
Thx, really appreciaeted! <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />

Just to make sure: All Bugs marked as "FIXED" or "FIXED IN NEXT RELEASE" has been fixed, all others are not?

Anonymous
Unregistered
Anonymous
Unregistered
Correct. Anything marked as FIXED or FIXED IN NEXT RELEASE is in 6.2.1. There were enough bugs fixed at this point that we needed to get an update out to at least fix the majority of the problems reported at this point.

-------------------
Rick Baker
UBBThreads developer

Anonymous
Unregistered
Anonymous
Unregistered
Rick Rocks =D

Anonymous
Unregistered
Anonymous
Unregistered
I think there is a bug in the altertable-6.1-6.2.php script. On line 116-120 and 155-159, they read
$query = "DELETE FROM AddressBook
WHERE Add_Owner='0'
";
$sth = $dbh -> do_query($query);

when I think they should read
$query = "DELETE FROM {$config['tbprefix']}AddressBook
WHERE Add_Owner='0'
";
$dbh -> do_query($query);

First the table prefix isn't being used which is the obvious mistake. However, when the table prefix is added the resource being returned to $sth is not needed and will instead cause the while loop above to now have a different resource and thus give you another new error.

Anonymous
Unregistered
Anonymous
Unregistered
I closed the board, copied all the files as show in the changed files text, run edit config settings, updated config.inc.php but the system still shows v6.2 What did I do wrong?

addfavforum.php
addpost.php
adduser.php
changebasic.php
dosearch.php
jumper.php
mess_handler.php
mess_reply.php
newuser.php
postlist.php
showflat.php
showmembers.php
showthreaded.php
start_page.php
ubbt.inc.php
ubbthreads.php
viewmessage.php

admin/dodbrestore.php
admin/dodeleteuser.php
admin/doedittitles.php
admin/editconfig.php
admin/showoneuser.php
admin/showstats.php

cron/perl/subscriptions.pl
cron/php/subscriptions.php

languages/all/mess_handler.php
languages/all/markallread.php

templates/default/myhome.tmpl
templates/default/ubbthreads.tmpl

-----------
Hostboard.com
Doing what NO other UBB in the world is doing.
The first & only production UBB powered by MySQL.

Anonymous
Unregistered
Anonymous
Unregistered
What version does it say in the editconfig.php file?

Are you sure you uploaded and then edited your config settings?

Is your config.inc.php file writable?

The editconfig.php file is what updates the version number.

Josh
Measurection.com Admin | ThreadsDev.com Moderator
Register to see my How To/Site Help Library Forum at ThreadsDev.com.
My threads 'tweaking' abilities are for hire.

Anonymous
Unregistered
Anonymous
Unregistered
Alot of people are having this problem... it's in the bugs forum. But I'll put it here so everyone knows to do it.

You need to make a slight change in adduser.php or else some people won't be able to register:

In adduser.php

Line 173 is this:

if (!eregi("(.*?)@(.*?)\.(.*?)", $Email)) {


It should be this:

if (!preg_match('/(.*?)@(.*?)\.(.*?)/', $Email)) {


(Kudos goes to Dave_L for that fix <img border="0" title="" alt="[Wink]" src="images/icons/wink.gif" /> )

Josh
Measurection.com Admin | ThreadsDev.com Moderator
Register to see my How To/Site Help Library Forum at ThreadsDev.com.
My threads 'tweaking' abilities are for hire.

Anonymous
Unregistered
Anonymous
Unregistered
Hi,
I do have a new Portuguese-Brazil language set of files for this new 6.2.1 version.
If I want to send it in order to be on the next release, who are the person/email I should do it?
Thank you
Elton

Anonymous
Unregistered
Anonymous
Unregistered
Hi Elton <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />

dave@infopop.com is the person to contact.

Honor The Victims

Anonymous
Unregistered
Anonymous
Unregistered
</font><blockquote><font size="1" face="">quote:</font><hr /><font size="" face="">Originally posted by JoshPet:
What version does it say in the editconfig.php file?

Are you sure you uploaded and then edited your config settings?

Is your config.inc.php file writable?

The editconfig.php file is what updates the version number.

</font><hr /></blockquote><font size="" face="">he may have done what I did and replaced the doeditconfig.php. All this reading has strained my eyes. Make sure you replace the "editconfig.php" and not "doeditconfig.php"

ChAoS
http://EmeraldForestSeattle.com

Anonymous
Unregistered
Anonymous
Unregistered
Thanx Josh, editconfig.php was missed in favor of doeditconfig.php. Ooppss...

I also changed the code in adduser.php

After reading through the boards I think I can see 6.2.2 coming down the road shortly <img border="0" title="" alt="[Wink]" src="images/icons/wink.gif" />

-----------
Hostboard.com
Doing what NO other UBB in the world is doing.
The first & only production UBB powered by MySQL.

Anonymous
Unregistered
Anonymous
Unregistered
Josh?? That guy gets all the credit <img border="0" title="" alt="[Razz]" src="images/icons/tongue.gif" />

ChAoS
http://EmeraldForestSeattle.com
<img src="http://emeraldforestseattle.com/attachments/EFSlogo.jpg" alt=" - " />
Me


Link Copied to Clipboard
ShoutChat
Comment Guidelines: Do post respectful and insightful comments. Don't flame, hate, spam.
Recent Topics
Version 7.7.5 Images suddenly not displaying
by Stovebolt - 05/04/2024 11:19 AM
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
Who's Online Now
2 members (Gizmo, 1 invisible), 783 guests, and 178 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 20240505)