NeatUpload File Not Found

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.
5/24/2007 9:55:18 AM
Gravatar
Total Posts 11

NeatUpload File Not Found

OS:  Windows XP SP 2

DB:  MS-SQL Server 2005

Environment:  MS Visual Studio 2005 (.net 2.0)

Code Base:  Obtained from SVN as of 2007-05-23, built locally

Error File:  NeatUpload module, UploadHttpModule.cs, Line 314

Issue:

When running MojoPortal in debug mode, I receive an error in the NeatUpload module.  The error comes from subWorker.Exception, and the message is "File does not exist".  This error pops up on every page load.  Any clue as to what file it might be looking for?  I have tried stepping through the code but I have not found anything yet.

If I comment out the HttpUploadModule line in web.config (line 525) the portal seems to run correctly.

5/24/2007 11:31:41 AM
Gravatar
Total Posts 18439

Re: NeatUpload File Not Found

Hi,

Apparently my recent work in css caused this. I was using the import syntax to include a printer stylesheet inside the main style.css like this:

@import url('styleprinter.css')print;

It seemed fine in testing under IIS but apparently in the VS web server the "print" was causing a 404 file not found. Under IIS requests for css files is not handled by the .NET runtime but directly by IIS whereas under the VS web server requests for every file type are handled by .NET directly.

I've  changed the implementation to use a separate link with media=print instead of the import, so if you do svn update then rebuild, this issue is fixed.

Thanks,

Joe

5/24/2007 1:08:31 PM
Gravatar
Total Posts 11

Re: NeatUpload File Not Found

I have grabbed the latest code from SVN, but I am now running into a problem involving "mojoMembershipException".  Specifically, the class does not seem to exist.  It is referenced in

mojoPortal.Web/Components/mojoMembershipProvider.cs on line 925

mojoPortal.Web/Secure/RecoverPassword.aspx.cs on line 134

I have looked at older versions of the code, and the reference is not present.

5/24/2007 1:27:18 PM
Gravatar
Total Posts 18439

Re: NeatUpload File Not Found

Doh! My bad I forgot to add that file to svn. I'll have it in there shortly.

Sorry about that.

Joe

5/24/2007 1:52:54 PM
Gravatar
Total Posts 18439

Re: NeatUpload File Not Found

Its in there now.

Thanks,

Joe

5/25/2007 6:23:53 AM
Gravatar
Total Posts 11

Re: NeatUpload File Not Found

Everything works now.  I just had to add the new files to my solution, re-compile, and it is fixed.  Thanks for being so responsive about this.

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