Hello, I saw Juan E. Aguilar's message about "/ntop//ntop/<![CDATA[" at the beginning of the PNG script thing. Since I just worked out a way around it, I thought I'd share.
This probably happens because whoever set up your system has read this page... http://kill.devc.at/node/6 ...which describes how to set up your httpd.conf file in order to fix ntop's html output. Whoever set up your system has substituted '/ntop/' for '/admin/network/'. So, this line... ProxyHTMLURLMap / /admin/network/ ...is this on your system... ProxyHTMLURLMap / /ntop/ Now, the bit of script that ntop is sending actually looks like this... //<![CDATA[ ...but that ProxyHTMLURLMap thing is translating the two slashes into /ntop//ntop/, where you really want to leave it alone. The way I got around it was to add another line after the bit above, which maps it back to two slashes. ProxyHTMLURLMap /ntop//ntop/ // Yes, this is horrible, but so is the whole way that this is working. Enjoy. _______________________________________________ Ntop mailing list [email protected] http://listgateway.unipi.it/mailman/listinfo/ntop
