iTunes for Windows Vista: iTunes cannot contact the iPod or iPhone software update se


 
Thread Tools Search this Thread
Operating Systems OS X (Apple) OS X Support RSS iTunes for Windows Vista: iTunes cannot contact the iPod or iPhone software update se
# 1  
Old 12-12-2008
iTunes for Windows Vista: iTunes cannot contact the iPod or iPhone software update se

For help with contacting the iPod software update server or iPhone software update server for Windows XP or Windows 2000, see this article. Some customers may notice the following alert message when trying to update or restore an iPod in iTunes 7 or later: "iTunes could not contact the iPod software update server because you are not connected to the Internet. Make sure your Internet connection is active and try again." If restoring an iPhone, you may notice this alert message: "iTunes could not contact the iPhone software update server because you are not connected to the Internet. Make sure your Internet connection is active and try again." Internet access is required to download iPod and iPhone software updates. However, if you are able to connect to the Internet with Internet Explorer and can also access the iTunes Store, see the solution below to resolve this issue.

More from Apple OS X Support ...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
SYMLINK(3)								 1								SYMLINK(3)

symlink - Creates a symbolic link

SYNOPSIS
bool symlink (string $target, string $link) DESCRIPTION
symlink(3) creates a symbolic link to the existing $target with the specified name $link. PARAMETERS
o $target - Target of the link. o $link - The link name. RETURN VALUES
Returns TRUE on success or FALSE on failure. CHANGELOG
+--------+---------------------------------------------------+ |Version | | | | | | | Description | | | | +--------+---------------------------------------------------+ | 5.3.0 | | | | | | | This function is now available on Windows plat- | | | forms (Vista, Server 2008 or greater). | | | | +--------+---------------------------------------------------+ EXAMPLES
Example #1 Create a symbolic link <?php $target = 'uploads.php'; $link = 'uploads'; symlink($target, $link); echo readlink($link); ?> NOTES
Note Windows users should note that this function will only work if the system you run PHP from is Windows Vista/Windows Server 2008 or newer. Windows versions prior to that do not support symbolic links. SEE ALSO
link(3), readlink(3), linkinfo(3). PHP Documentation Group SYMLINK(3)