False disk full error.

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
2/12/2010 9:40:42 PM
Gravatar
Total Posts 30

False disk full error.

I posted this in another "general" thread, but the more I play with it the more I think it is an error.

 

I won't re-post all the details in this thread, so here are the details of the issue I am getting:

http://www.mojoportal.com/Forums/Thread.aspx?pageid=5&mid=34&ItemID=7&thread=4841

 

Thank you

2/13/2010 6:01:40 AM
Gravatar
Total Posts 18439

Re: False disk full error.

Hi,

There are some settings for file system quotas in Web.config, you can copy these into your user.config to override them:

<add key="UserFolderDiskQuotaInMegaBytes" value="300" />
    <add key="MediaFolderDiskQuotaInMegaBytes" value="6000" />
    <add key="AdminDiskQuotaInMegaBytes" value="12000" />
    <add key="UserFolderMaxSizePerFileInMegaBytes" value="10" />
    <add key="MediaFolderMaxSizePerFileInMegaBytes" value="30" />
    <add key="AdminMaxSizePerFileInMegaBytes" value="2000" />
    <add key="UserFolderMaxNumberOfFiles" value="1000" />
    <add key="MediaFolderMaxNumberOfFiles" value="10000" />
    <add key="AdminMaxNumberOfFiles" value="100000" />
    <add key="UserFolderMaxNumberOfFolders" value="50" />
    <add key="MediaFolderMaxNumberOfFolders" value="500" />
    <add key="AdminMaxNumberOfFolders" value="1000" />

However, another common cause of this is that many hosting control panels require you to allocate your disk space to the site. They give you a certain amount of space but they don't allocate all of it to your site, so your site can still run out of space if you don't allocate more of the free disk space to the site. You might look around for settings to allocate the free space in your web hosting panel.

Hope it helps,

Joe

2/13/2010 7:05:24 AM
Gravatar
Total Posts 30

Re: False disk full error.

You hit the nail on the head with the second part.  It was a user limmit.  I went into the control pannel (discountasp.net) and found the appropriate limmitation (User Manager / User Quota Manager section).

 

Fantastic and thanks again.

You must sign in to post in the forums. This thread is closed to new posts.