| Author |
Topic Search Topic Options
|
WebWiz-Bruce
Admin Group
Web Wiz Developer
Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
|
Topic: Web Wiz Forums 7.5 FULL released Posted: 03 October 2003 at 6:36am |
Web Wiz Forums version 7.5 FULL has now been released.
You can download this new version from:-
http://www.webwiz.net/web_wiz_forums/forum_download.as p
The new version includes improved security, new multi-browser WYSIWYG
post editor, bug fixes, and many other features including:-
- New improved look
- Lots of bug fixes
- Extra security
- New forum codes such as [Quote], [Code], and also the use of hex colours ie [color=#000000]
- Simpler to set group permisisons over multiple forums
- Shorter registration form
- Image security code on registration and login pages
- Next and previous links on posts over multiple pages
- WYSIWYG Editor now supported under multiple platforms and browsers including IE5+, Mozilla 1.3+, Netscape 7.1+
- Post spell checker for IE
- Improved browser and OS detection for Active Topics page
- Login test to see if the user has cookies enabled and display a message if not
- Long text strings in messages now wrap at the 60th character to
keep the formatting of tables correct to prevent left and right
scrolling in a browser window
- Uploaded files now placed in a folder in the uploads director named after the users username
- View topics that you have subscribed to email notification on from the page you edit your profile on
- Only once users are registered may they upload avatars
- Flash files in signatures
- Compact and repair access database from the admin area (Access only)
- SQL server stats from admin area (SQL Server only)
- View the first 100 characters of a post by placing the mouse over
the topic title in the topic page, also shows date started by placing
the mouse over the topic starter name
- Forward PM to your email address so you can have a copy of the PM locally
- PM percentage bar in your inbox indicating how many more PM's you can receive
- PM inbox, delete all button
- Support fro Flash files in PM's
- Resend activation email function
- More options when deleting or locking topics from the admin area
- Choose if you wish to display a moved icon in old forum when moving topic between forums
- Topic admin can be bought up from active topics page
- Buddy list now indicates if a buddy is online in the forum at that time
- and loads of other changes
You can download this new version from:-
http://www.webwiz.net/web_wiz_forums/forum_download.as p
|
|
|
 |
michael
Senior Member
Joined: 08 April 2002
Location: United States
Status: Offline
Points: 4670
|
Posted: 03 October 2003 at 7:11am |
Greta job Bruce
|
|
|
 |
ctscott
Senior Member
Joined: 27 May 2003
Location: United States
Status: Offline
Points: 246
|
Posted: 03 October 2003 at 7:22am |
|
super job.
|
 |
groovyjason
Newbie
Joined: 29 September 2003
Status: Offline
Points: 3
|
Posted: 03 October 2003 at 7:54am |
Is this a direct upgrade for version 7.5 beta 1? Or are there any special steps to upgrade to the released version?
Groovy
|
 |
dave132
Newbie
Joined: 24 July 2003
Status: Offline
Points: 8
|
Posted: 03 October 2003 at 7:55am |
|
How do I upgrade from 7.01?
|
 |
pam b
Groupie
Joined: 10 April 2003
Location: United Kingdom
Status: Offline
Points: 117
|
Posted: 03 October 2003 at 7:56am |
|
Mega cool Borg,
Will look forward to useing that soon.
|
|
regards,pam
|
 |
Paul Lush
Mod Builder Group
Joined: 24 September 2003
Status: Offline
Points: 59
|
Posted: 03 October 2003 at 8:45am |
NO!!!!!!!!!! I just spent over a week putting Windows authenication code into 7.01 !!!
ARGH! 
|
 |
WebWiz-Bruce
Admin Group
Web Wiz Developer
Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
|
Posted: 03 October 2003 at 9:02am |
The only difference between 7.5 beta 1 and 7.5 full is a few files have
been changed to iron out bugs, the changed files are mentioned in the
version history file.
Upgarding Access Version
Upgrading from version 7.01 to 7.5 Access version is straight forward.
Just replace the old files with the new ones keeping the same database
file. In the Acces database you will have to increase the size of the
field Browser to 20 in the table tblActiveUsers.
Upgrading SQL Server Version
Upgrading from version 7.01 to 7.5 SQL server version is a
little more complcated. You need to replace all the old files with the
new ones. You then also need to change the stored procedure
wwfSpLastAndFirstThreadAuthor, in the SQL Enterprise Manager to
the following:-
CREATE PROCEDURE [dbo].[wwfSpLastAndFirstThreadAuthor] (
@lngTopicID int
)
AS
SELECT tblThread.Thread_ID, tblThread.Author_ID, tblThread.Message, tblThread.Message_date, tblAuthor.Username
FROM tblAuthor, tblThread
WHERE tblAuthor.Author_ID = tblThread.Author_ID AND tblThread.Topic_ID = @lngTopicID
ORDER BY tblThread.Message_date ASC;
GO |
You will also need to add the following new stored procedure if you
wish to use the SQL Server Stats page in the admin section. The new SP
is:-
CREATE PROCEDURE [dbo].[wwfSpDBinfo] As
Declare @low int
Declare @dbsize dec(10,2)
Declare @dbpath nvarchar(100)
Declare @logpath nvarchar(100)
Declare @dbfilesize dec(10,2)
Declare @logfilesize dec(10,2)
Declare @maxdbfilesize dec(10,2)
Declare @maxlogfilesize dec(10,2)
--Minimum Database Size
select @low = low from master.dbo.spt_values
where type = N'E' and number = 1
--Calculation of current Database Size in MB
select @dbsize = (convert(dec(15),sum(size)) * @low / 1048576)
from [sysfiles]
--Actual File Size of Log and Data File
Select TOP 1 @dbpath = [filename] from [sysfiles] where groupid = 1
Select TOP 1 @logpath = [filename] from [sysfiles] where groupid = 0
Select @dbfilesize = convert(dec(10,2),sum([size]))/128 from
[sysfiles] where [filename] = @dbpath --in MB
Select @logfilesize = convert(dec(10,2),sum([size]))/128 from [sysfiles] where [filename] = @logpath --in MB
Select TOP 1 @maxdbfilesize = convert(dec(10,2),[maxsize])/128 from [sysfiles] where [filename] = @dbpath
Select TOP 1 @maxlogfilesize = convert(dec(10,2),[maxsize])/128 from [sysfiles] where [filename] = @logpath
If @maxdbfilesize = (-.01) Set @maxdbfilesize = -1
If @maxlogfilesize = (-.01) Set @maxlogfilesize = -1
---Creating Output Table
select @dbsize Databasesize, @dbpath DataLocation , @logpath LogLocation,
@dbfilesize DatabaseFileSize, @logfilesize Logfilesize,
@maxdbfilesize MaxDBSize, @maxlogfilesize MazLogSize,
ServerProperty('edition') Edition,
CASE ServerProperty('IsCluster')
WHEN 0 THEN 'No Cluster'
WHEN 1 THEN 'Cluster'
ELSE 'No Cluster/Unknown'
END Cluster,
CASE ServerProperty('License_Type')
WHEN 'PER_SEAT' THEN 'Seat Licensing (' + Convert(nvarchar(5),ServerProperty('NumLicenses')) + ')'
WHEN 'Per_Processor' THEN 'Processor Licensing
(' + Convert(nvarchar(5),ServerProperty('NumLicenses')) + ')'
ELSE 'Licensing Disabled / Unknown'
END Licensing,
ServerProperty('ProductLevel') PLevel
GO
|
You will also need to increase the size of the field Browser in the table tblActiveUsers to 20.
All Users
Skins and Language files for version 7.01 will NOT work with version 7.5
|
|
|
 |