Hi All,
I am new to DNN, I just installed 4.9.0....after the usual connectivity problems I was able to complete the install.
Total time about 3 hours.
On my first attempt to bring up DNN I got the following message
"Microsoft JScript runtime error: Automation server can't create object"
with the debugger indicating the code below, subject line is noted.
I am now also getting this error on the DNN web site as well.
I have reloaded MSXML and the latest .NET 3.5.
Obviously something got buggered up, but I sure don't know what.
Any help would be appreciated.
Thx,
--> I added this line
<!-- I added this line
//dnn.xml Namespace ---------------------------------------------------------------------------------------------------------
function dnn_xml()
{
this.pns = 'dnn';
this.ns = 'xml';
this.dependencies = 'dnn,dnn.dom'.split(',');
this.isLoaded = false;
this.parserName = null;
}
dnn_xml.prototype.init = function ()
{
this.parserName = __dnn_getParser();
if (this.parserName == 'MSXML')
{
dnn_xml.prototype.createDocument = function()
{
var o = new ActiveXObject('MSXML.DOMDocument'); <---This is the line that is indocated
o.async = false;
return new dnn.xml.documentObject(o);
}