Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

After installing CaptchaMVC I navigated to the page where I want to test the functionality - ~/about.

For the image localhost:51860/DefaultCaptcha/Generate?t=6d9ab0cefbb8496582b1db592eff66f, I see a broken link.

I added routes.IgnoreRoute("DefaultCaptcha/{*pathInfo}"); and also tried routes.IgnoreRoute("DefaultCaptcha/Generate"); to the top of my routes, but the image still does not appear, and navigating to the image url returns with a 404 not found error.

When I remove all my routes from Global.asax, this works fine.

The issue I think is that this pattern matches this route:

routes.MapRoute(name: "WholeCountryCategoryResults1", url: "{categoryName}/{searchTerm}/", defaults: new { controller = "Results", action = "SearchWholeCountryCategory" });

The rest of the routes shouldn't matter, as the rules are executed in order, so what's the issue here?

Thanks.

share|improve this question

1 Answer

up vote 1 down vote accepted

For those that may experience the same issue, simply setup a route to the captcha provider's controller and action:

routes.MapRoute(name: "DefaultCaptchaRoute", url: "DefaultCaptcha/Generate", defaults: new { controller = "DefaultCaptcha", action = "Generate" });
share|improve this answer
Thanks, this worked for MVC4 as well – Eric Herlitz Apr 18 at 8:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.