Ok... in WUG v7.00 the Web Templates feature was introduced, which allows anyone to completely customize the look, feel, and operation of the web interface.
Here is a link to a past forum post that I've submitted on the forum... http://www.mail-archive.com/[email protected]/msg02396.html As for a rudimentary Device Down list... Create a new text file (notepad should suffice) and then copy the following code into that file. Save the file to something like "downlist.asp" and place it in HTML files directory. Now every time you go to http://yourwugbox.com/downlist.asp this file will be processed.... Here is the code that downlist.asp should contain. Remember, this is just to give you an idea of what you can do. Also, it just checks for Device down, not monitor down. To completely understand this, it requires you to have a good grasp of HTML. One more thing, the Web Template Reference is at this location: ftp://ftp.ipswitch.com/Ipswitch/Product_Support/WhatsUp/WebTemplateReference .zip <!-- Begin Code Block --> <html> <body> <B> Down Device List </b> <br><br> <%START_LOADED_MAP_LIST%> <%START_DEVICE_LIST%> <%IFNOT% IS_DEVICE_UP> <a href=map.asp?map=<%MAP% FILENAME>> <%MAP% NAME> /a> - <a href=device.asp?map=<%MAP% FILENAME>&device=<%DEVICE% UNIQUE_ID>> <%DEVICE% DISPLAY_NAME></a> <BR> <%ENDIF%> <%END_DEVICE_LIST%> <BR> <%END_LOADED_MAP_LIST%> </body> </html> <!--- End code block ---> Happy templating ~Brian ----- Original Message ----- From: "Shmuel Weitzner" <[EMAIL PROTECTED]> To: "WhatsUp_Forum" <[EMAIL PROTECTED]> Sent: Friday, March 22, 2002 8:52 AM Subject: RE: [WhatsUp Forum] Show only down items in web interface > > Robert, > > I would like to know more. > > Shmuel. > > > > "Glatt, Robert" <[EMAIL PROTECTED]>@list.ipswitch.com > Friday March 22, 2002 08:48 AM > > Please respond to [EMAIL PROTECTED] > > Sent by: [EMAIL PROTECTED] > > To: "'[EMAIL PROTECTED]'" > <[EMAIL PROTECTED]> > cc: > Subject: RE: [WhatsUp Forum] Show only down items in web interface > > > i created a batch job that gets all the down ip addresses to a txt file. I > then manipulate that file to format it for HTML and then I created a page > for it. I use it as a hyperlink at the bottom of the first web page in > 7.02. > If you would like more info just let me know. > > -----Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Thursday, March 21, 2002 6:46 PM > To: [EMAIL PROTECTED] > Subject: [WhatsUp Forum] Show only down items in web interface > > > > Does anyone know how to show only the down items in the web interface, or > show the maps at the top and the down > items underneath? I have had no luck at all and would appreciate some help! > > Thanks all > Marty > > > > This transmission may contain information that is privileged, confidential > and/or exempt from disclosure under applicable law. If you are not the > intended recipient, you are hereby notified that any disclosure, copying, > distribution, or use of the information contained herein (including any > reliance thereon) is STRICTLY PROHIBITED. If you received this transmission > in error, please immediately contact the sender and destroy the material in > its entirety, whether in electronic or hard copy format. Thank you. > > > Please visit http://www.ipswitch.com/support/mailing-lists.html > to be removed from this list. > > An Archive of this list is available at: > http://www.mail-archive.com/whatsup_forum%40list.ipswitch.com/ > > Please visit http://www.ipswitch.com/support/mailing-lists.html > to be removed from this list. > > An Archive of this list is available at: > http://www.mail-archive.com/whatsup_forum%40list.ipswitch.com/ > > > > > > > > > Please visit http://www.ipswitch.com/support/mailing-lists.html > to be removed from this list. > > An Archive of this list is available at: > http://www.mail-archive.com/whatsup_forum%40list.ipswitch.com/ > Please visit http://www.ipswitch.com/support/mailing-lists.html to be removed from this list. An Archive of this list is available at: http://www.mail-archive.com/whatsup_forum%40list.ipswitch.com/
