PHP Warnings all over my site

Status
Not open for further replies.

taketsu

New Member
Messages
5
Reaction score
0
Points
0
Ok, this started happening only recently (like 1 hour recent). I tried logging into my Wordpress admin but it kept showing these errors and tells me my pass is incorrect though it is (10x checked it).

Code:
Warning: file(http://upgrade.starscapetheme.com/check.php?v=1.5.6&b=http%3A%2F%2Fwww.roflotaku.co.cc) [function.file]: failed to open stream: Connection timed out in /home/taketsu/public_html/wp-content/themes/starscape/code/starscape.php on line 419

Warning: Cannot modify header information - headers already sent by (output started at /home/taketsu/public_html/wp-content/themes/starscape/code/starscape.php:419) in /home/taketsu/public_html/wp-login.php on line 302

Warning: Cannot modify header information - headers already sent by (output started at /home/taketsu/public_html/wp-content/themes/starscape/code/starscape.php:419) in /home/taketsu/public_html/wp-login.php on line 314
Any idea how to fix this?

Yes, I did post this in the Wordpress support forum, but I figured posting in the webhost forums should hasten the resolution.

EDIT: Wow, the CPanel is also loading slow...
 
Last edited:

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
co.cc domains have been acting up today. Not just ones hosted at x10hosting.


Code:
 file(http://upgrade.starscapetheme.com/check.php?v=1.5.6&b=http%3A%2F%2Fwww.roflotaku.co.cc)

seems to call starscapetheme.com, which might in turn check your site (since your URL is included in the query string). If the co.cc slowness affects them, that might cause the time out. Which throws a warning. Which goes out before a line in the scripts tries to add heading/cookie. Which causes the other Warnings.

You might just have to wait until the co.cc problem on the net settles.
 

galaxyAbstractor

Community Advocate
Community Support
Messages
5,508
Reaction score
35
Points
48
it seems like the site "starscapetheme.com" is down at the moment. You'd have to wait for them to come back online
 

adrenlinerush

New Member
Messages
379
Reaction score
1
Points
0
if you don't want errors to show on your website you can turn them off in your php so that the end user doesn't see them... matter of opinion but I like to turn it off on production stuff after all the trouble shooting is done... sometimes a blank page is better than a bunch of error codes to the end user...

<?php
// Turn off all error reporting
error_reporting(0);
 

Twinkie

Banned
Messages
1,389
Reaction score
12
Points
0
if you don't want errors to show on your website you can turn them off in your php so that the end user doesn't see them... matter of opinion but I like to turn it off on production stuff after all the trouble shooting is done... sometimes a blank page is better than a bunch of error codes to the end user...

<?php
// Turn off all error reporting
error_reporting(0);
Just to be clear, your page will still have errors but they will just not be shown on the page. Other options include error logging (which x10 already does), custom errors handlers, ect.
 
Status
Not open for further replies.
Top