Feedback after 2 weeks
Printed From: Web Wiz Forums
Category: Web Wiz Web App Support Forums
Forum Name: Web Wiz Forums
Forum Description: Support forum for Web Wiz Forums application.
URL: https://forums.webwiz.net/forum_posts.asp?TID=19685
Printed Date: 12 April 2026 at 12:27am Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com
Topic: Feedback after 2 weeks
Posted By: kiklop
Subject: Feedback after 2 weeks
Date Posted: 03 May 2006 at 1:26pm
After more than two weeks since we have upgraded to v.8 i wish to share our experiences.
In overall most users are more than satisfied with new forum version. The forum is running faster, search options is much more better and subforum option is just great.
Here is what we have found as "problematic" so far:
- Type mismatch: 'UBound' on search_results_posts.asp is the most common problem. The problem is described at http://forums.webwiz.net/forum_posts.asp?TID=19553
- Subscript out of range: '42' described at http://forums.webwiz.net/forum_posts.asp?TID=19435&PID=105948#105948
- 0x800A0BB9
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another. functions_date_time_format.asp (line 78)
This is so far caused only by YahooFeedSeeker/2.0 and Feedreader resported as user agent.
- problems using quick reply and post preview options. Some users have reported that this isn't working (they don't have this problem in regular reply form). I can't reproduce this error myself.
- drop down menu/link for navigate to next or previous page isn't working on some firefox insances. Javascrip enabled, and most other options are working just fine except this one (and post preview for quick reply)
I hope that future updates will fix most of these issues.
Once again, my sincere gratitude to Borg for such a great form application.
------------- http://www.dyxum.com" rel="nofollow - dyxum.com
|
Replies:
Posted By: WebWiz-Bruce
Date Posted: 04 May 2006 at 12:53pm
Most of these issues are already reported and have or are being fixed for the next version.
However, the following has not, could you please give more details on this so it can be looked at?
0x800A0BB9
Arguments are of the wrong type, are out of acceptable range, or
are in conflict with one another. functions_date_time_format.asp (line
78)
This is so far caused only by YahooFeedSeeker/2.0 and Feedreader resported as user agent. |
------------- https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting
|
Posted By: kiklop
Date Posted: 04 May 2006 at 4:32pm
-boRg- wrote:
Most of these issues are already reported and have or are being fixed for the next version.However, the following has not, could you please give more details on this so it can be looked at? |
Borg here are some details (sorry for not posting this in another, dedicated thread thread.
0x800A0BB9
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another
/functions/functions_date_time_format.asp
Line 78
Since i have an error reporting script i do receive periodically this error. So far itr has been reported only for following user agents:
- Feedreader
- Feedster Crawler/1.0; Feedster, Inc.
- Mozilla/4.0 (compatible; Google Desktop)
- YahooFeedSeeker/2.0
The error is caused in both RSS_post_feed.asp and RSS_topic_feed.asp.
Please let me know if i can be of any help in resolving this
p.s.
Borg, if you have found a way to avoid UBound error for the search i would really like to implement this since this error is getting pretty annoying :(
Thank you!!
------------- http://www.dyxum.com" rel="nofollow - dyxum.com
|
Posted By: WebWiz-Bruce
Date Posted: 04 May 2006 at 5:13pm
OK, I found the problem, it's not to do with the user agent.
If the date and time data is not in the web servers memory it needs to be got from the database.
This means that this error will only occur if the web server has been inactive for awhile or if the app pool has recycled, therefore a database hit is required to get the data from the database and store it in the web servers memory.
By place the call to the include file after the database is opened later in the RSS files prevents this occasional error from happening.
To fix the other issue you mention with posts that have been deleted change line 474 of forum_posts.asp to the following:-
For intLoop = 0 to (intTotalRecords - 1)
The part -1 is added incase the record is deleted so that the UBound error doesn't occur as an array starts from 0 and not 1, so the total record count needs to have 1 subtracted to prevent a UBound error.
------------- https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting
|
|