Something on my server updated this morning, around 8:30am EST. After that, I'm having major errors all throughout the server.
Specifically, I know that:
1. The Perl module LWP::Simple is no longer getting any files from the server. It tries, and after about 45 seconds will time out and proceed with getting, but doesn't write an error to the error_log.
2. PHP function getimagesize() is returning errors on images that definitely exist without errors. The error it's giving is:
***
Warning: getimagesize() [function.getimagesize]:
php_network_getaddresses: getaddrinfo failed: Temporary failure in
name resolution in /home/USERID/public_html/view.php on line 349
Warning: getimagesize(IANA — Example domains)
[function.getimagesize]: failed to open stream:
php_network_getaddresses: getaddrinfo failed: Temporary failure in
name resolution in /home/USERID/public_html/view.php on line 349
***
I'm also getting numerous PHP warnings in the error_log that didn't exist before.
Here's the weird thing. I have another server that has the same version of cPanel and Apache on it. I uploaded a Perl script to it that "gets" a file from my main server, and it gets it just fine. But the same script on my main server, getting a file from itself, fails!
Here's the Perl script:
#!/usr/bin/perl
use LWP::Simple qw(!head);
$get_file = get("http://www.gowilkes.com/test.txt");
# If I uncomment this next line, I do get the "die" error
# die "Couldn't get it!" unless defined $get_file;
print "Content-type: text/html\n\n";
print $get_file;
exit;
I CAN, however, get "http://www.google.com" from either server.
Both servers are running WHM 11.28.83. I did have the server with errors set to "STABLE (Auto)" updates, but just changed it to "RELEASE (Auto)" and updated it (which had no impact on the error).
Any advice?



LinkBack URL
About LinkBacks
Reply With Quote





