I am using Weblog for blog functionality. Now I am facing one problem. I have created one Entry with name like 'sitecore-mvc', now when I am going to submit a comments it is giving me error 'End of string expected at position 39' if I changed Entry name like 'sitecoremvc' it works fine. There is some problem when I use '-' in Entry name. Any how I want to use '-' in url. Please give me solution.
Asked
Active
Viewed 87 times
1
-
Post the stack trace, please – Mark Cassidy Aug 07 '15 at 13:13
1 Answers
1
If you look at the issues in GitHub for Weblog this is a known issue.
See this link for a solution:
https://github.com/WeTeam/WeBlog/issues/52
You should be able to swap out the DuplicateSubmissionGuard
pipeline processor to a custom implementation that escapes hyphen characters in the path.

Ian Graham
- 3,206
- 1
- 15
- 23
-
-
You should create your own pipeline processor to replace the current one so it shouldn't matter. – Ian Graham Sep 08 '15 at 06:25