Home AMX User Forum AMXForums Archive Threads AMX Hardware
Options

Ni-3000 Web Error

When I tried to login to a Ni-3000 that i am working on I get the following error from the web interface:


Server Error in '/' Application.
Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".

<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>


Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.

<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>



I when i tried to login using Netlinx studio the connection will just timeout and nothing happens. I think that the master is locked up but I am not sure, and because this master is on the other side of the country from me I can't get to it to do a manual reboot. Has anybody else ever seen this message before?

Comments

  • Options
    vincenvincen Posts: 526
    It would look that you exhausted all avalaible space on flash of master !! Are you still able to telnet to it and check free space with command disk space ?

    Vinc
  • Options
    pauldpauld Posts: 106
    I was unable to connect for about an hour then everything just came back to life. Nobody was onsite so I don't know what happened. I am still looking into it, but i am not using any disk space and i still have plenty of memory left, so i dont know what happened or why.
Sign In or Register to comment.