Burton i just tested the new release of today ntop-2.1.exe from http://luca.ntop.org/ntop-win32/ it has the same problem. Jac
-----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jac Engel Sent: Thursday, July 11, 2002 5:52 PM To: [EMAIL PROTECTED] Subject: RE: [Ntop-dev] undefined reference to rrdPluginEntryFctn Burton, Think I found the problem. 1) Starting ntop as console cd \NTOPNEW ntop /c the DB files are created in the directory NTOPNEW 2) Starting ntop as service ( the props of this service item "PAth to executable" = C:\NTOPNEW\ntop.exe) cd \NTOPNEW ntop /i the DB files are created in \WINNT\SYSTEM32 if I copy the HTML dir to \WINNT\SYSTEM32 then the domainflags are shown !! Even if I start ntop as service : ntop /i -PC:\NTOPNEW Then the DB files are in \NTOPNEW But the domainflags are only shown if \WINNT\SYSTEM32\HTML dir is available 3) HTML dir NOT available in \WINNT\SYSTEM32 part of source view of host 213.51.184.1 : <TR ><TH ALIGN=LEFT NOWRAP><A HREF="/213.51.184.1.html">r1-fe1-0-sec.venra1.lb.home.nl</A></TH><TD ALIGN=CENTER> </TD><TD ALIGN=RIGHT>213.51.184.1</TD><TD ALIGN=RIGHT> </TD><TD ALIGN=RIGHT NOWRAP> </TD><TD ALIGN=LEFT><IMG ALIGN=ABSMIDDLE SRC=/gauge.jpg ALT="55%" WIDTH=165 HEIGHT=12> </TD> <TD ALIGN=RIGHT> </TD><TD ALIGN=RIGHT> </TD></TR> HTML dir available in \WINNT\SYSTEM32 part of source view of host 213.51.184.1: <TR ><TH ALIGN=LEFT NOWRAP><A HREF="/213.51.184.1.html">r1-fe1-0-sec.venra1.lb.home.nl</A></TH><TD ALIGN=CENTER><IMG ALT="Flag for domain nl" ALIGN=MIDDLE SRC="/statsicons/flags/nl.gif" BORDER=0></TD><TD ALIGN=RIGHT>213.51.184.1</TD><TD ALIGN=RIGHT> </TD><TD ALIGN=RIGHT NOWRAP> </TD><TD ALIGN=LEFT><IMG ALIGN=ABSMIDDLE SRC=/gauge.jpg ALT="86%" WIDTH=258 HEIGHT=12> </TD> <TD ALIGN=RIGHT> </TD><TD ALIGN=RIGHT> </TD></TR> rgds Jac -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Burton M. Strauss III Sent: Thursday, July 11, 2002 5:15 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: [Ntop-dev] undefined reference to rrdPluginEntryFctn Are you sure they are in the directory? Just have to check... Are you getting blank or the little Xs that mean unable to retrieve? Which domain flags, exactly? Post the html source (mouse in the correct frame, right click, view source) What browser? -----Burton -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jac Engel Sent: Thursday, July 11, 2002 9:56 AM To: [EMAIL PROTECTED] Subject: RE: [Ntop-dev] undefined reference to rrdPluginEntryFctn Burton, The hosts pictures like DNS etc are shown so it finds the html dir, only the domain flags are not shown. Jac -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Burton Strauss Sent: Wednesday, July 10, 2002 11:45 PM To: [EMAIL PROTECTED] Subject: RE: [Ntop-dev] undefined reference to rrdPluginEntryFctn Under *nix, ntop looks for stuff in ./html and then whatever directory(ies) are in the list. Could it be that when you run with -c, you are in the ntop directory, so ./html has the gifs? And when it runs as -i it's running probably at c:\ so c:\html doesn't?? Try doing: >cd c:\ >c:\whatever\ntop -c .... Bet it doesn't have domain flags either... -----Burton ---------- Original Message ---------------------------------- From: "Jac Engel" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date: Wed, 10 Jul 2002 20:58:45 +0200 >When compiling (Mingw) version 02-07-10 (applied patch of JDR) >Seeing following: >Started as console : ntop /c -i1 domain flags are shown >Started as service : ntop /i -i1 domain flags are NOT shown. >Note: JDR started as service first parameter ignored is fixed. >Jac > >-----Original Message----- >From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf >Of Burton M. Strauss III >Sent: Wednesday, July 10, 2002 5:28 PM >To: [EMAIL PROTECTED] >Cc: [EMAIL PROTECTED] >Subject: RE: [Ntop-dev] undefined reference to rrdPluginEntryFctn > > >This is Win32, right? Because that's the only place that defines > >ntop_win32.h:#define STATIC_PLUGIN > >Okay, it's fixed in the cvs... > >-----Burton > > > >-----Original Message----- >From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf >Of Juan Ramon Duarte >Sent: Wednesday, July 10, 2002 7:14 AM >To: Ntop-Dev >Subject: [Ntop-dev] undefined reference to rrdPluginEntryFctn > > > >This is a minor bug: > >When compiling I get the follwing error message: > > plugin.o(.text+0x264):plugin.c: > undefined reference to `rrdPluginEntryFctn' > make: *** [ntop] Error 1 > >To fix this I have commented out the references to the experimental plugin >in 'plugin.c'. The diff follows: > > >--- plugin.c Fri Jun 21 16:31:04 2002 >+++ plugin.c.jrd Wed Jul 10 13:11:34 2002 >@@ -31,7 +31,7 @@ > extern PluginInfo* nfsPluginEntryFctn(void); > /* extern PluginInfo* wapPluginEntryFctn(void); */ > extern PluginInfo* sflowPluginEntryFctn(void); >-extern PluginInfo* rrdPluginEntryFctn(void); >+/* extern PluginInfo* rrdPluginEntryFctn(void); */ > #ifdef RMON_SUPPORT > extern PluginInfo* rmonPluginEntryFctn(void); > #endif >@@ -226,8 +226,11 @@ > */ > else if(strcmp(pluginName, "sflowPlugin") == 0) > pluginInfo = sflowPluginEntryFctn(); >+/* > else if(strcmp(pluginName, "rrdPlugin") == 0) > pluginInfo = rrdPluginEntryFctn(); >+*/ >+ > #ifdef RMON_SUPPORT > else if(strcmp(pluginName, "ntopRmon") == 0) > pluginInfo = rmonPluginEntryFctn(); >@@ -362,7 +365,7 @@ > loadPlugin(NULL, "nfsPlugin"); > /* loadPlugin(NULL, "wapPlugin"); */ > loadPlugin(NULL, "sflowPlugin"); >- loadPlugin(NULL, "rrdPlugin"); >+ /* loadPlugin(NULL, "rrdPlugin"); */ > #ifdef RMON_SUPPORT > loadPlugin(NULL, "rmonPlugin"); > #endif > > > > > > > >_______________________________________________ >Ntop-dev mailing list >[EMAIL PROTECTED] >http://lists.ntop.org/mailman/listinfo/ntop-dev > >_______________________________________________ >Ntop-dev mailing list >[EMAIL PROTECTED] >http://lists.ntop.org/mailman/listinfo/ntop-dev >_______________________________________________ >Ntop-dev mailing list >[EMAIL PROTECTED] >http://lists.ntop.org/mailman/listinfo/ntop-dev > __________________________________________________ D O T E A S Y - "Join the web hosting revolution!" http://www.doteasy.com _______________________________________________ Ntop-dev mailing list [EMAIL PROTECTED] http://lists.ntop.org/mailman/listinfo/ntop-dev _______________________________________________ Ntop-dev mailing list [EMAIL PROTECTED] http://lists.ntop.org/mailman/listinfo/ntop-dev _______________________________________________ Ntop-dev mailing list [EMAIL PROTECTED] http://lists.ntop.org/mailman/listinfo/ntop-dev _______________________________________________ Ntop-dev mailing list [EMAIL PROTECTED] http://lists.ntop.org/mailman/listinfo/ntop-dev _______________________________________________ Ntop-dev mailing list [EMAIL PROTECTED] http://lists.ntop.org/mailman/listinfo/ntop-dev
