| Author |
Topic Search Topic Options
|
DanVet
Newbie
Joined: 23 July 2003
Location: United Kingdom
Status: Offline
Points: 12
|
Posted: 07 November 2003 at 11:37am |
Hi,
Is there a difference between versions 7.51 and 7.51a?
Thanks,
Dan.
|
 |
KyleL
Newbie
Joined: 04 October 2003
Location: United States
Status: Offline
Points: 19
|
Posted: 07 November 2003 at 5:58pm |
-boRg- wrote:
The new version includes improved security, bug fixes, including:-
- Security bug fixes
- Improved security
- Improved browser detection
- New version of Web Wiz Rich Text Editor 1.2a has been intergrated
- Bug fixes
|
There is your answer. 
|
 |
DanVet
Newbie
Joined: 23 July 2003
Location: United Kingdom
Status: Offline
Points: 12
|
Posted: 08 November 2003 at 10:19am |
Thanks KyleL - but that isn't my answer.
I'm wondering what the difference between 7.51 and 7.51a is. (not between 7.50 and 7.51a).
I think 7.51 was available for download for a matter of hours before becoming 7.51a.
I've upgraded 7.01 to 7.50 to 7.51 and I'd like to know if I now need to upgrade to 7.51a.
Cheers,
Dan.
|
 |
Maverick
Newbie
Joined: 12 July 2002
Location: Canada
Status: Offline
Points: 19
|
Posted: 08 November 2003 at 10:23am |
Yes you should, v7.51 's polling option does not work. I think 3 or 4 files were changed in 7.51a.
Try to make a poll and you'll get an error with version 7.51, fixed in 7.51a
Cheers
|
 |
WebWiz-Bruce
Admin Group
Web Wiz Developer
Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
|
Posted: 08 November 2003 at 11:58am |
|
This is taken from the Version Hiostory file that comes with the forum listing the changed files:-
Changes from version 7.51 to version 7.51a
------------------------------------------
1. poll_create_form.asp - fixed bug whereby new polls could not be created
2. email_messager.asp - fixed by wherby if you selected to have a copy sent to yourself they both went to the Recipient
3. forum_password_form.asp - fixed javascript focus bug
4. printer_friendly_posts.asp - fixed replace null bug if signature is null value
|
|
|
 |
DanVet
Newbie
Joined: 23 July 2003
Location: United Kingdom
Status: Offline
Points: 12
|
Posted: 08 November 2003 at 12:31pm |
Thanks.
So are these the only 4 files I need upload to my server? Or should I replace the whole lot?
By the way - you're not any relation to Alan Corkhill from Salisbury are you?
|
 |
WebWiz-Bruce
Admin Group
Web Wiz Developer
Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
|
Posted: 08 November 2003 at 12:50pm |
|
If you are running version 7.51 then only upload the 4 files listed.
No, I don't know anyone called Alan Corkhill.
|
|
|
 |
wistex
Mod Builder Group
Joined: 30 August 2003
Location: United States
Status: Offline
Points: 877
|
Posted: 13 November 2003 at 12:17am |
-boRg- wrote:
Upgrading MS SQL Server Version 7.5 to 7.51a Upgrading from version 7.5 to 7.51a 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 create the new stored procedure, wwfSpActiveTopics, in the SQL Enterprise Manager to the following:-
CREATE PROCEDURE [dbo].[wwfSpActiveTopics] ( @AuthorID int, @GroupID int, @GroupPerm int, @dblActiveFrom datetime
) AS SELECT tblForum.Forum_name, tblForum.Password, tblForum.Forum_code, tblTopic.* FROM tblCategory, tblForum, tblTopic WHERE ((tblCategory.Cat_ID = tblForum.Cat_ID AND tblForum.Forum_ID = tblTopic.Forum_ID) AND (tblTopic.Last_entry_date > GetDate() - @dblActiveFrom)) AND (tblForum.[Read] <= @GroupPerm OR (tblTopic.Forum_ID IN ( SELECT tblPermissions.Forum_ID FROM tblPermissions WHERE tblPermissions.Author_ID = @AuthorID OR tblPermissions.Group_ID = @GroupID AND tblPermissions.[Read]=1)) ) ORDER BY tblCategory.Cat_order ASC, tblForum.Forum_Order ASC, tblTopic.Last_entry_date DESC; GO |
|
Note: If you have changed the following lines in common.asp and admin/common.asp:
'Set up the database table name prefix and stored procedure prefix '(This is useful if you are running multiple forums from one database) ' - make sure you also change this in the msSQL_server_setup.asp file if setting up an ms SQL server database) Const strDbTable = "wwf_tbl" Const strDbProc = "wwf_Sp"
you will need to modify the above stored procedure to match.
You will get an error on the Active Topics page otherwise.
|
|
|
 |