Hi Storm,
Can you give me the version number of the plugin?
It looks like there is a time-out happening when reading online status from the Skype server. I have no idea how to fix this for Windows machines but you might settle for disabling the online status check ? If you choose a theme with online status depicted by the image, you are still show your status (except to visually impaired visitors) on your blog.
You can set the option "Use
Status text for the {status} tag?" to "No" on the Skype Status options page. But if the error is causing the options page to break, you can do the following.
Open the file plugins/skype-online-status/skype-status.php in a simple text editor like Notepad (avoid the use of Wordpad, never use MS Word !) and scroll down to the lines (depending on version, for version 2.6.2.9 around line 120) that look like this:
// Checks wether fopen_wrappers are enabled on your server so the remote Skype status file can be read
// Comment-out (with //) the if..else statements if you want to force this setting in spite of server settings
if (ini_get('allow_url_fopen'))
define('SOSALLOWURLFOPEN', TRUE);
else
define('SOSALLOWURLFOPEN', FALSE);
Now put // marks in front of the 3rd, 4th and 5th line, leaving only the last one without // so it looks like this:
// Checks wether fopen_wrappers are enabled on your server so the remote Skype status file can be read
// Comment-out (with //) the if..else statements if you want to force this setting in spite of server settings
//if (ini_get('allow_url_fopen'))
// define('SOSALLOWURLFOPEN', TRUE);
//else
define('SOSALLOWURLFOPEN', FALSE);
Save the file and re-upload to the server. Now the call to the Skype server will be skipped and hopefully, the fatal error too...
--ravan
Op woensdag 06-08-2008 om 06:03 uur [tijdzone -0700], schreef Storm: