This is quite possibly a REALLY odd sounding question and since it seems people have FUrls working fine with FarCry i think it might just be my mind playing tricks on me again but when I look at "go.cfm" and then at "fu.cfc" (in packages/farcry)
That this is happening, which backs up the error that i am getting: 1. I create a friendly URL entry for a navigation item in the admin, the db shows: refObjectId = 0F9693E3-476C-9E6B-A2412BF0EB1E4F84 friendlyURL = /go/forums/ All good there. 2. I check "go.cfm" to see if it maybe not finding the database entry for "/go/forums/". It does, but says that the allowed times of redirecting have been exceeded, which makes me have a close look at "farcry/packages/farcry/fu.cfc" 3. I find the method that is being called to retrieve the redirection URL (fGetFUData). - The method checks if a corresponding id to "0F9693E3-476C-9E6B-A2412BF0EB1E4F84" exists in the DB. - if it does it fetches the friendlyURL for the corresponding "refObjectId" it found and constructs the redirection link from it, that is passed back. In my case this is "http://www.sitename.tld/go/forums/" 4. Passing this back to the conditional in "go.cfm" that handles the actual redirecting leads to an infinite loop, which is what was causing the problem earlier. I'm really sorry if this is obviously wrong or i have mistunderstood the whole concept but shouldn't i be redirected to "http://www.sitename.tld/index.cfm?objectId=0F9693E3-476C-9E6B-A2412BF0EB1E4F84" when i try to go to "http://www.sitename.tld/go/forums/" and not lead in circles? This seems really odd to me and I think should have caused issues for other people using this feature before. Again if i mistunderstand i apologize, but i'd really like to know how this would ever work for anyone, seeing as it returns the original friendlyUrl instead of the "real" one. Kind regards, Benjamin
