i got two sites on the same server siteA and siteB
and they both use cross remote includes:
like this:
include("http://siteA.com/banners.php?banner1")
include("http://siteB.com/banners.php?banner2")
and suddenly out of the blue these includes started
to slow down PHP pages only, all was working totally
fast for the last 10 month and no changes were made
to the code. It takes now about 10 seconds
for the PHP page with remote "includes" to finally load.
If I change those "includes" to local calls then
pages load fast again:
include("banners.php");LoadBanner("banner2");
I suspect my host made some bad changes
to DNS servers or something like that but they deny it.
if anybody have an idea what the problem is please
reply.
(i am on Linux/Apache/PHP4)