Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeUsing DNN Platf...Using DNN Platf...Administration ...Administration ...File Manager error when expanding the treeFile Manager error when expanding the tree
Previous
 
Next
New Post
5/17/2006 9:46 AM
 

Hello to everybody,

I've recently installed DotNetNuke 3.2.2 and I'm having some problems with the File Manager. When I try to expand the tree I get a javascript error "null - null". I don't know what's the problem because I can upload files without problem (it seems that it's not a privilages problem).

Any suggestions?

Thanks a lot!

Germán

 
New Post
5/17/2006 1:31 PM
 
Hi Germán,

I'm experiencing this too, are you using Scott McCulloch's friendly name rewriter (from www.ventrian,com)?

Barry
 
New Post
5/18/2006 4:06 AM
 

Hi Barry,

I'm not using this component, it's a fresh dotnetnuke installation. I installed it on my desktop computer, configure it and edit content pages. Then, I uploaded it on my hosting and all worked successfuly except the File Manager.

The File Manager is working well in my local machine, but not with my hosting... and it's the same code!!

Germán

 
New Post
5/29/2006 3:31 PM
 

I have the same problem.

 
New Post
5/30/2006 3:34 AM
 

I solved the problem!!! The problem was in the js\dnn.xmlhttp.js file. When you expand the tree there's an unsynchronous call to the server. The server should return an HTTP header with a statusCode of 200 if the server succesfuly response.

The funcion is:

dnn_xmlhttp.prototype.XmlHttpRequest.prototype.complete = function (sRes)

{

var sStatusCode = this.getResponseHeader('__DNNCAPISCSI');

if (sStatusCode == '200')

this.successFunc(sRes, this.context);

else

{

var sStatusDesc = this.getResponseHeader('__DNNCAPISCSDI');

if (this.failureFunc != null)

this.failureFunc(sStatusCode + ' - ' + sStatusDesc, this.context);

else

alert(sStatusCode + ' - ' + sStatusDesc);

}

}

The problem was the server succesfuly response the request but it never sent the status code. I changed the function adding a new line:

dnn_xmlhttp.prototype.XmlHttpRequest.prototype.complete = function (sRes)

{

var sStatusCode = this.getResponseHeader('__DNNCAPISCSI');

if (sStatusCode == '') sStatusCode = '200';

if (sStatusCode == '200')

this.successFunc(sRes, this.context);

else

{

var sStatusDesc = this.getResponseHeader('__DNNCAPISCSDI');

if (this.failureFunc != null)

this.failureFunc(sStatusCode + ' - ' + sStatusDesc, this.context);

else

alert(sStatusCode + ' - ' + sStatusDesc);

}

}

And it worked!!!

Sorry for my english, it's not very good. I hope you found this post useful!

Germán

 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Administration ...Administration ...File Manager error when expanding the treeFile Manager error when expanding the tree


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out