This is a brilliant idea. Take a look:
Logging Client Side JavaScript Errors to the Server – The Code Project – AJAX / Atlas
This is a brilliant idea. Take a look:
Logging Client Side JavaScript Errors to the Server – The Code Project – AJAX / Atlas
by Tom
As I mentioned in a previous post, WordPress installed on IIS can be somewhat aggravating because it doesn’t have permalink functionality out of the box. You have to jump through several hoops to get it to work. Mine works for the most part now, but it doesn’t work when you click the “next” link on pages that have large numbers of posts.
I’ve been thinking about a possible solution to this. Would it be possible to use a custom 404 page on IIS to act as a intermediary page that does what mod_rewrite would normally. Here’s how it would work:
1. Set IIS to redirect all 404 errors to a custom page that would handle all interpretation of the permalinks. In IIS, you have the option of specifying whether it i s a file, or a url. It must be set to “url” to work. Here’s a page that goes into this theory. http://evolvedcode.net/content/code_smart404/guide-rewrites.asp
2. All that would be left to do then would be to write a page that interpreted the rules that wordpress gives you and redirects accordingly.
Sorry if this was a little confusing, I’ll be trying this out in a week or so and I’ll let you know the results in a clearer format.
Related Threads from WordPress.org
IIS URL Rewrite Rules?
Enabling Search engine Friendly (Optimized ) URLs in IIS Without Mod_rewrite
This also looks to be promising: IIS Mod’s Free URL ReWrite
by Tom 12 Comments
Apparently there is no direct method to determine the length of an array in VBScript. The best way I could find is to use UBound(ArrayName). This will return the upper limit of the array. Unfortunately, it doesn’t account for empty items in the array. In the example below Length will be equal to 10, not 1.
Dim NewArray(10)
NewArray(0) = "Apple"
Length = UBound(NewArray) 'Length is equal to 10, not 1
Here is a good link to VBScript Array functions.
http://www.shocknet.org.uk/defpage.asp?pageID=30
If you know of a better way to determine the length, please let me know.