dnn 4.0.2 & siteurls.config

Discussion in 'Third-party applications' started by grisarcobe0, Dec 29, 2005.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. Hi,

    I uploaded dnn on my website (www.grisarco.be/dnn)

    I get an error saying Could not find file 'E:\web\grisarcobe0\htdocs\DNN\SiteUrls.config'.

    So, I copied siteurls.config from the config folder to dnn.

    Still no luck, but the error message tells me another story
    Object reference not set to an instance of an object.

    Any help on that pls ?

    Thanks,
    Charles
     
  2. 'Object reference not set to an instance of an object.' is probably the most common error in the book. It just means you're trying to use an object that is set to null. For example:

    string test = null;
    test.Replace('hi', 'bye');

    That would cause an error because test is null when you try to call the Replace method.

    Basically, your problem could be anything and isn't necessarily related to SiteUrls.config. You'll have to do some debugging to figure out where your code is crashing.
     
  3. You might also want to check your site's ASPNET user disk quota. During DNN installation it creates files, so make sure that the ASPNET user has enough disk space to work with. Use the User/Quota Manager tool in the control panel to check your user quotas. I've seen this type of problem before where the error is very generic and not indicative of a disk quota issue but ends up as the cause of the problem.

    DiscountASP.NET
    www.DiscountASP.NET
     
  4. Debugging DNN ?


    I hope not :)
    I was hoping DNN would run out of the box.


    I did adapt the user quote and see what it does.
     
  5. Still no luck (did allocate him 200Mb, which should be enough ?)
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page