I have used the Sitemap Generator for 2 years now with no problems at all. It just works!
I was generating a sitemap for the site [ External links are visible to forum administrators only ] without error until recently. We are in the process of locking down our web servers, and now I am getting the common error when trying to build a sitemap:
There was an error while retrieving the URL specified: [ External links are visible to forum administrators only ]
HTTP Code:
HTTP headers:
x_csize: 0
HTTP output:
I can still run the generator from a web server on my desktop, but not from the web server (MV01) I was using before. I have run the test script:
$initurl = '[ External links are visible to forum administrators only ]';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $initurl);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
$fdata = curl_exec($ch);
curl_close($ch);
print_r($fdata);
On my local machine the script runs correctly, but when I run it from the other (MV01) server, I get a blank screen. I have tested a sitemap of a clear text web, and the Generator (and test page) work correctly. What do I need to do next?
The sitemap generator is internal only, and the website I am mapping is in the DMZ accessible externally.