PrimalSavage Posted May 6, 2016 Share Posted May 6, 2016 The section sign ( § ) in HTML is § https://en.wikipedia.org/wiki/Section_sign Issue may have something to do w/ the URL being translated to HTML. As suggested if you follow the link below, use § instead of § ? http://www.htmlhelp.com/tools/validator/problems.html#amp Ampersands (&'s) in URLs Another common error occurs when including a URL which contains an ampersand ("&"): <!-- This is invalid! --> <a href="foo.cgi?chapter=1§ion=2©=3&lang=en">...</a> This example generates an error for "unknown entity section" because the "&" is assumed to begin an entity reference. Browsers often recover safely from this kind of error, but real problems do occur in some cases (...) And one old browser even finds the entity §, converting §ion=2 to §ion=2." To avoid problems with both validators and browsers, always use & in place of & when writing URLs in HTML: <a href="foo.cgi?chapter=1§ion=2©=3&lang=en">...</a> (...) Link to comment Share on other sites More sharing options...
smaxy3 Posted November 18, 2016 Share Posted November 18, 2016 (edited) After like two hours of ****** and rage I finally managed to create/validate/whatever my new account thanks to this thread (because my old account was closed or something because of 'inactivity' and I can't really remember e-mail for that account anymore). So again- thanks OP ! Edited November 18, 2016 by smaxy3 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now