admin
Admin
| Posts: 1568 |  |

|
No Upgrade Icon or Internet Features... - 2006/09/16 06:04
The SwissCenter main menu should have the following options on it:

If you are missing options 3 (Internet Radio) and 5 (Weather Forecasts) and you have an active internet connection, then you have most likely discovered a bug that was introduced in version 1.14. The nature of this bug is that SwissCenter can no longer contact a hardcoded IP address (yes, it was stupid of me to hardcode it) and therefore believes that no internet connection is available for use.
Until you perform the following changes, you will not be able to upgrade to version 1.15.
1. Locate the "server.php" file (for Simese users, this will be "C:\Program Files\Simese\Data\base\server.php", whereas for linux users this will be in the "base" subdirectory of wherever you installed the SwissCenter source code):
2. Search for the line containing the word "google". It should look like this:
| Code: |
if ( $sock = @fsockopen('66.249.87.99', 80, $temp, $temp, 0.5)) // www.google.com
|
3. Change it to read as follows:
| Code: |
if ( $sock = @fsockopen('www.google.com', 80, $temp, $temp, 0.5)) // www.google.com
|
4. Turn your showcenter off and back on again.
Rob
Player : Pinnacle Showcenter 200 (wired ethernet) Server : HP MediaSmart EX470 NAS (Windows Home Server / Sempron CPU / 2Gb RAM / 2.0 Tb Storage).
|