I need to find out what my host has done, they are not being open.
My host server recently did a re-install OS.
using Linux // Apache version 1.3.33 (Unix) ...
PHP version 4.3.11
During this time had I was just starting to upgrade a hosting account with many addon domains to a reseller account. After the server finally was online, I had several issues with PHP code in my webpages.
Basically php includes that use a domain were taking at 5 seconds extra to parse.
ex. include 'http://domain.com/coin.txt'
while using paths was the answer and now works great
ex. include '/home/yupp/public_html/ddd123/coin.txt'
BUT
this issue has started with another function
file_get_contents
$data = file_get_contents("http://domain.com/coin.txt");
echo "$data";
For this function the file is on another server. Im not able to use paths just http://
Any help, or ideas why this could be such a issue and any reason for my host to maybe place a limit on such functions???