On Friday, March 24, 2006 1:28 PM [EDT], Robert D. <[EMAIL PROTECTED]> wrote:
> Hi Analog-Help: > > I have links set to on for Requests. I will see one of my pages but > where I had a space, there now exists a + sign. For example > /denstar+web/bailey11.html > > where I usually call it /denstar%20web/bailey11.html > > so now the link, in the report, is not useable in that it points to a > non-existent place. Are you using IIS? It would appear to be a bug in IIS, because it will log both spaces and plus signs as a plus. (If you're not using IIS, it's probably still a bug, but you might want to test what happens if you create a file name with a plus in it). If you only have a space in that one subdirectory name, then you can use a FILEALIAS to fix the problem - FILEALIAS /denstar+web/* /denstar%20web/* If spaces crop up in other file names, then you might need something more general, like this: FILEALIAS REGEXP:(.*)\+(.*)\+(.*)\+(.*)\+(.*) "$1%20$2%20$3%20$4%20$5" (This will cope with multiple spaces. Unfortunately, it will turn any "real" plus sign into a space too). Aengus +------------------------------------------------------------------------ | TO UNSUBSCRIBE from this list: | http://lists.meer.net/mailman/listinfo/analog-help | | Analog Documentation: http://analog.cx/docs/Readme.html | List archives: http://www.analog.cx/docs/mailing.html#listarchives | Usenet version: news://news.gmane.org/gmane.comp.web.analog.general +------------------------------------------------------------------------

