This entry is useless to almost everyone but me. I’m documenting this though in case anyone else has a problem with it. Myllissann had some freaky errors on her site this morning looking like this:
Warning: php_network_getaddresses: getaddrinfo failed: Name or service not known
There were SEVERAL variations of that same error, but they all traced back to that one first.
It seems that somehow her PHP stopped recognizing the URLs called in her skins and I had to change the PHP calling her skins from
php include(”http://www.myllissann.com/cookiecheck.php”);
$headervar = “http://www.myllissann.com/header”;
$footervar = “http://www.myllissann.com/footer”;
$extension = ‘.php’;
include(”$headervar$skin$extension”);
to
php include(”/home/mylliss/public_html/cookiecheck.php”);
$headervar = “/home/mylliss/public_html/header”;
$footervar = “/home/mylliss/public_html/footer”;
$extension = ‘.php’;
include(”$headervar$skin$extension”);
(keep in mind I deleted the ”
Whenever I get bizzarro errors on my site, I Google the error to see if anyone else got the same one, and 9 times out of 10 I find the fix for it. That’s why I’m posting this ridiculously geeky entry - in case anyone else has that same problem.
Whatever you do, don’t ask me WHY it happened. That? I have no clue about.











excellent idea… to google errors… I’ll remember this tip.
Um. I have no idea what you just said, so I will therefore pretend I didn’t see it and go on and read the posts my little, tiny mind CAN understand.
On we go.