php warnings

donald22

Member
Hi, I just moved to a new server with php 5.4 (previous php 5.3.3) and now I am getting these php warnings in tha admin cp.
Code:
Warning: file_get_contents(http://visiolist.com/version.txt): failed to open stream: Connection timed out in /home/topsite/public_html/sources/admin.php on line 213

Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/topsite/public_html/sources/admin.php:213) in /home/topsite/public_html/sources/misc/skin.php(357) : eval()'d code on line 52
I can suppress them but am wondering what is causing them? Main site not affected, just admin cp. Also if I click "main" in admin cp the page hangs for a while before working, everything else works as normal. (version 1.2)
 

Mark

Administrator
Staff member
Your server is having trouble resolving visiolist.com via filegetcontents function, this is most likely a problem with your server config.
 

Mark

Administrator
Staff member
You can comment out the version checking line admin.php line 213 to workaround until you get your server issue resolved.
 
Top