Hm, many many errors 
http://www.meteokav.gr/cloud-base.php
Maybe my server can't give permission for the clientraw files ?
Hi John,
Look like it's a PHP configuration problem.
The errors that you should be concerned with are these 2 on line
537:
Warning: file(): URL file-access is disabled in the server configuration in /var/www/vhosts/meteokav.gr/httpdocs/cloud-base.php on line 537
Warning: file(http://www.meteokav.gr/wdlive/clientraw.txt): failed to open stream:
no suitable wrapper could be found in /var/www/vhosts/meteokav.gr/httpdocs/cloud-base.php on line 537
This one is the culprit:
URL file-access is disabled in the server configurationAccording to the PHP manual: allow_url_fopen boolean This option enables the URL-aware fopen wrappers that enable accessing URL object like files.
Default wrappers are provided for the access of remote files using the ftp or http protocol, some extensions like zlib may register additional wrappers.
Note:
This setting can only be set in php.ini due to security reasons.
But then again you're not specifying a URL to open the clientraw.txt file.
Best is you upgrade to PHP 5 or replace the
file() function with code using
fopen(), fread() and fclose().