quote:Originally posted by MithrilhallAnyway you could post some screenshots?This is what our main network map looks like:
quote:Originally posted by Grabowski[But if you can suggest a way for me to record it, I will be happy to do so and email a to you directly.
quote:Originally posted by GrabowskiI'd love to post some screenshots, but I can't see how I do that in this forum. I'm sure it's pretty straight-forward but I just can't find out how and the forum help says that files cannot be attached.
quote:Originally posted by martek01We have been using Google Earth for some time now.
quote:Originally posted by lavelanetGrabowski,Hi Alain/lavelanetI can't seem to get google earth to accept and overlay images from one of my maps. What kind of sintax are you pasting in the image location?Are you by any chance not using any authentication on your orion webserver? How are you getting by that as well?Thanks.Alain
<?php $dest = fopen("E:\Program Files\SolarWinds\Network Performance Monitor V7\Maps\NetObjects\Imported\weather.wmf","w+") or die ("Local open failed"); $source = fopen('image.weather.com/.../5L.jpg','r'); while (!feof($source)) { fwrite($dest,fread($source,1024)); } fclose($source); fclose($dest); ?>
So I added some code to enable http get through a proxy with user authentication.<?phpfunction proxy_url($proxy_url){ $proxy_name = '127.0.0.1'; $proxy_port = 4001; $proxy_user = "user"; // added $proxy_pass = "password"; // added $proxy_cont = ''; $proxy_fp = fsockopen($proxy_name, $proxy_port); if (!$proxy_fp) {return false;} fputs($proxy_fp, "GET $proxy_url HTTP/1.0\r\nHost: $proxy_name\r\n"); fputs($proxy_fp, "Proxy-Authorization: Basic " . base64_encode ("$proxy_user:$proxy_pass") . "\r\n\r\n"); // added while(!feof($proxy_fp)) {$proxy_cont .= fread($proxy_fp,4096);} fclose($proxy_fp); $proxy_cont = substr($proxy_cont, strpos($proxy_cont,"\r\n\r\n")+4); return $proxy_cont;}?>