Installation of 8.6.1.25
Download Files DefaultEmptyData871SQL.zip
http://developer.dynamicweb.com/downloads/dynamicweb-8.aspx
I have a problem with a new installation on my local machine of this version. Im developing a CustomModule with this so i have also copied the new .dlls to the application root
When I sign in and try to create a new paragraph and apply a template from the dropdown list I get a javascript error and the paragraph cannot the saved:
Richselect.js line 58
if (p) {
id = p.id.toString();
value = p.getAttribute('value').toString(); // Uncaught TypeError: Cannot read property 'toString' of null
}
Checking the attibutes this should be:
if (p) {
id = p.id.toString();
value = p.getAttribute('data-value').toString();
}
If I add a paragraph using sql script directly into the database, then try to update this paragraph in admin I get
HTTPRequestValidationExection (0x80004005) A potentially dangerous Request.Form value was requested from the client (ParagraphText=<p>Para text here</p...").}
as per screenshot
I have also seen a Server 500 error from Request path: /Admin/Content/ParagraphEdit.aspx
can someone tell me whats going on here?