No space!?

Discussion in 'ASP.NET / ASP.NET Core' started by jpopesku, Feb 21, 2007.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. Hey all,
    I ran into this ASP.NET error:

    Server Error in '/Community' Application.


    There is not enough space on the disk. Description: An unhandled exception occurred during compilation using the CodeDomProvider 'Microsoft.CSharp.CSharpCodeProvider'. Please review the stack trace for more information about the error and where it originated in the code.

    Exception Details: System.IO.IOException: There is not enough space on the disk.

    Source Error:





    Code:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace:





    Code:
    [IOException: There is not enough space on the disk.
    ]
       System.IO.__Error.WinIOError(Int32 errorCode, String str) +723
       System.IO.FileStream.WriteCore(Byte[] buffer, Int32 offset, Int32 count) +134
       System.IO.FileStream.FlushWrite() +55
       System.IO.FileStream.Flush() +39
       System.IO.FileStream.Dispose(Boolean disposing) +55
       System.IO.FileStream.Close() +17
       System.CodeDom.Compiler.CodeCompiler.FromDomBatch(CompilerParameters options, CodeCompileUnit[] ea) +383
       System.CodeDom.Compiler.CodeCompiler.FromDom(CompilerParameters options, CodeCompileUnit e) +90
       System.CodeDom.Compiler.CodeCompiler.System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromDom(CompilerParameters options, CodeCompileUnit e) +37
       System.Web.Compilation.BaseCompiler.GetCompiledType() +227
    

    I'm not quite sure why. I have only used 4% of my disk space, and 27% of my database space.


    Anyone know why this happened? And how I can fix it!?


    Thanks!
    JP
     
  2. Oops -- I should've mentioned that I haven't changed any code...
    I've only added records to the datbase (which now has ~850 records). If this is the cause, it stumps me, because I have some tables with 18,000+ records and that doesn't give me a problem...

    JP

    Edit (update):
    I'm getting other errors on my site:

    Server Error in '/Community' Application.


    Compilation Error
    Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

    Compiler Error Message: CS0016: Could not write to output file 'c:\WINDOWS\microsoft.net\Framework\v1.1.4322\Temporary ASP.NET Files\community\9caf6ebc\f30b87a0\cgdn3xla.dll' -- 'There is not enough space on the disk. '

    Source Error:








    Code:
    [No relevant source lines]
    Source File: Line: 0

    Was something changed on the DASP servers and I'm out of space!??
    I think it's time for a support ticket....
    JP

    Post Edited (jpopesku) : 2/21/2007 5:07:43 PM GMT
     
  3. OK: weird. I just checked my site, and all systems are go. The problem has "disappeared".
    Don't know why this happened, but it seems fine now. The only speculation I can offer to others who run into this problem is that perhaps a site that is co-hosted with yours is running a massive query and is temporarily chewing up free space.

    JP
     
  4. Bruce

    Bruce DiscountASP.NET Staff

    There was a server problem earlier today; something created a huge temp file in the system directory. Not sure if this is the server hosting your site.


    I would also check the quota usage in the user/quota manager in the control panel to make sure those are not close to limit.


    Bruce

    DiscountASP.NET
    www.DiscountASP.NET
     
  5. Hey bruce,
    Thanks for the info. I must've been on that server.
    JP
     
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