News Feed UserProfile Picture pointing to old url

Originally when the site was setup the my site was setup with an incorrect URL.  So I created another site collection using the mysite host template and then when into the mysite settings and changed the url.  This fixed the links to mysites but
the images in the site feeds are still referencing the old URL and not displaying the image.
Any idea on how to update the reference?

Hi Phillip,
I recommend to check if the image in user’s my site is pointing to the old URL.
If yes, We should update the PictureUrl of each user profile to update the photo location.
For your reference, you can use the following PowerShell script to update the user profiles' photo location:
Add-Type -Path "c:\program files\common files\microsoft shared\web server extensions\14\isapi\microsoft.office.server.dll"
$PSSnapIn = Get-PSSnapin | where {$_.Name -like "*sharepoint*"}
if(!($PSSnapIn.Name -like "*sharepoint*"))
Add-PSSnapin Microsoft.SharePoint.PowerShell
Function GetFileNameFromAccountName{
param($accountName);
$charsToReplace = "\/:*?""<>|";
$result = $accountName;
$charsToReplace.ToCharArray() | Foreach-Object{$result=$result.replace($_, "_");}
return $result;
Function UpdatePhoto{
param($photoFolder);
$Site = Get-SPSite -Limit 1 #Get Site for Service context
$ServiceContext = Get-SPServiceContext($Site)
$ProfileManager = new-object Microsoft.Office.Server.UserProfiles.UserProfileManager($ServiceContext)
$Profiles = $ProfileManager.GetEnumerator() #Load all profiles into array
Foreach($profile in $Profiles){
if($profile["PictureUrl"].Value.Contains("old url here")){
$accountName = GetFileNameFromAccountName($profile["AccountName"].Value)
$img = $photoFolder + $accountName + "_MThumb.jpg";
$profile["PictureUrl"].Value = $img;
UpatePhoto http://my:80/User Photos/Profile Pictures/
The UpdatePhoto needs a parameter. It is the folder that stores the user photos, it is generally http://<mysitehost>/User Photos/Profile Pictures/
We must migrate all photos from the old Profile Pictures folder to the new Profile Pictures, then execute the PowerShell script.
Best regards.
Thanks
Victoria Xia
TechNet Community Support

Similar Messages

  • New URL, how do I get iTunes to point to my new feed

    We are in the process of redesigning our webpage. We purchased a new domain name and changed our webhost. Our new website is www.calvarybible.com. I am wondering how to get iTunes to point to my new feed. It is all the same content just at a new URL. I have sent a few messages via "report a concern", but have not seen any response.
    Any ideas would be greatly appreciated.
    Thanks,
    Mike
    Dell PC   Windows XP  

    Geek,
    Thanks, I set up the <itunes:new-feed-url> tag. When I updated my podcast in iTunes it found the new feed. I should have read the specifications better.
    We will be sending the old domain name to the new URL soon, so I am glad I got this done as it says to keep the old feed for at least 48 hours. Thanks for pointing me in the right direction.
    Thanks,
    Mike

  • I'm moving my podcast and I don't know where to put the itunes:new-feed-url into the code. I'd love to just have somebody point to the right spot. Please advise.

    Where does it go?
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=<?charset/?>" />
    <link rel="alternate" type="application/rss+xml" title="RSS" href="<?root_url/?>rss.xml">
        <meta name="keywords" content="mypodcast" />
        <meta name="robots" content="all" />
    <style type="text/css">
    /*DIV ID'S*/
    #maincontainer {
        border:0px solid #C1B1B1;
        width: 698px;
        text-align: left;
        background: #FFF;
    #header {
        border-bottom: 1px solid #B4B4B4;
        width: 698px;
        text-align: left;
        background: #FFF;
    #posts {
        border-top:0px solid #C1B1B1;
        border-right:0px solid #C1B1B1;
        background: #FFF;
        width: 447px;
        text-align: left;
        float: left;
        padding-top: 20px;
    #columnright {
        border-top:0px solid #C1B1B1;
        background: #FFF;
        width: 210px;
        text-align: left;
        float: right;
        padding: 20px;
    #profilepic {
        float: left;
        padding: 5px 5px 0px 0px;
    #footer {
        border-top: 0px solid #C1B1B1;
        padding: 10px 20px 10px 0px;
        background-color: #FFF;
    /*MAIN CLASSES*/
    body {
        font-family: "Verdana", Arial, Helvetica, sans-serif;
        background-color: #FFF;
        text-align: left;
        padding: 20px;
        color: #000;
        font-size: 12px;
        margin: 0px;
    h1.podcast-title {
        color: #555555;
        font-size: 26px;
        font-weight: bold;
        padding: 20px 20px 0px 0px;
        margin: 0px;
    h1.podcast-title a {
        color: #555555;
        font-size: 26px;
        font-weight: bold;
        text-decoration: none;
    h2 {
        color: #676767;
        font-size: 21px;
        font-weight: 600;
        padding: 0px 20px 0px 0px;
        margin:0px;
    h3 {
        color: #676767;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0px;
        padding: 0px 0px 5px 20px;
        border-bottom: 1px dotted #C1B1B1;
        background:url(<?template_url/?>images/icon_subtitles3.gif) no-repeat;
    p {
        color: #737373;
        font-size: 11px;
        line-height: 15px;
        padding: 10px 20px 10px 0px;
        margin:0px;
    p.righttext {
        color: #737373;
        font-size: 11px;
        padding: 5px 0px 10px 0px;
        margin:0px;
    img {
        border:1px solid #007B9F;
        text-align: left;
        margin: 3px;
        padding: 2px;
    a {
        color: #007B9F;
        font-size: 11px;
    a:hover {
        color: #72AABA;
        font-size: 11px;
    a.posttitle {
        color: #676767;
        font-size: 21px;
        font-weight: bold;
        margin:0px;
        text-decoration: none;
    a.posttitle:hover {
        color: #676767;
        font-size: 21px;
        font-weight: bold;
        margin:0px;
        text-decoration: underline;
    a.listenpodcast {
        font-weight: bold;
        background:url(<?template_url/?>images/icon_podcast3.gif) no-repeat;
        padding-left: 15px;
    a.listenpodcast:hover {
        font-weight: bold;
        background:url(<?template_url/?>images/icon_podcast3.gif) no-repeat;
        padding-left: 15px;
        color: #72AABA;
        text-decoration: underline;
    a.comments {
        background:url(<?template_url/?>images/icon_comments3.gif) no-repeat;
        padding-left: 15px;
    a.comments:hover {
        background:url(<?template_url/?>images/icon_comments3.gif) no-repeat;
        padding-left: 15px;
        color: #72AABA;
        text-decoration: underline;
    a.profile {
        background:url(<?template_url/?>images/icon_profile3.gif) no-repeat;
        padding-left: 15px;
    a.profile:hover {
        background:url(<?template_url/?>images/icon_profile3.gif) no-repeat;
        padding-left: 15px;
        color: #72AABA;
        text-decoration: underline;
    a.posts, p.posts {
        background:url(<?template_url/?>images/icon_posts3.gif) no-repeat;
        padding-left: 15px;
        padding-bottom: 5px;
        padding-top: 5px;
        margin-left: 5px;
        margin-right: 5px;
        display: block;
        border-bottom: 1px solid #B4B4B4;
    a.posts:hover {
        background:url(<?template_url/?>images/icon_posts3.gif) no-repeat;
        padding-left: 15px;
        padding-bottom: 5px;
        padding-top: 5px;
        color: #72AABA;
        text-decoration: underline;
        display: block;
        border-bottom: 1px solid #B4B4B4;
    .date {
        color: #858585;
        font-size: 12px;
        font-weight: bold;
        padding: 20px 20px 0px 0px;
        margin: 20px 0px 0px 0px;
    p.endpost {
        border-top:0px dotted #C1B1B1;
        border-bottom:1px dotted #A0A0A0;
        margin-bottom: 20px;
    </style>
    <style type="text/css">
    .item-control {
       display:none;
    .item-control a, .item-action a {
       text-decoration:none !important;
    .quick-edit-icon {
       background: url("<?system_url/?>/images/icon18_edit_allbkg.gif") no-repeat left;
       /* makes an 18x18 box */
       padding:9px;
       margin:0 0 0 .5em;
    .delete-comment-icon {
       background: url("<?system_url/?>/images/icon_delete.gif") no-repeat left;
       /* makes a 14x14 box */
       padding:7px;
    .email-post-icon {
       background: url("<?system_url/?>/images/icon18_email.gif") no-repeat left;
       /* makes an 18x18 box */
       padding:9px;
       margin:0 0 0 .5em;
    <?AllowEditingStyle?>
    .item-control { display:inline; }
    <?/AllowEditingStyle?>
    <?EmailPostLinksStyle?>
    .item-action { display:none;}
    <?/EmailPostLinksStyle?>
    </style>
        <script language="JavaScript" src="<?system_url/?>/scripts/popup.js"></script>
    <title><?PodcastTitle/?></title>
    <script language="JavaScript" type="text/javascript" src="/scripts/flashvars.js">>
    </script>
    <script language="VBScript" type="text/vbscript" src="/scripts/flashdetect.vb">
    </script>
    <script language="JavaScript1.1" type="text/javascript" src="/scripts/flashdetect.js">
    </script>
    <script language="JavaScript" type="text/javascript" src="/scripts/insertflash.js">
    </script>
    </head>
    <body>
    <center>
    <div id="maincontainer">
        <div id="header">
        <h1 class="podcast-title"><a href="<?PodcastHome/?>"><?PodcastTitle/?></a></h1>
        <p><?PodcastDescription/?></p>
        </div>
        <div id="posts">
        <?PodcastCurrentRecords?>
        <?PodcastCurrentRecord?>
        <span class="date"><?DateHeader/?></span>
        <h2><a href="<?PermanentLink/?>" class="posttitle"><?Title/?></a></h2><?Downloads?> (<?DownloadsCount/?> downloads)<?/Downloads?>
        <p><a href="<?FileUrl/?>" class="listenpodcast">Download this episode (<?AudioFileSize/?>)</a>
    <script>
    <!--
    JSputPlayer('<?FileUrl/?>', 'FFFFFF', 'E0E0E0', '000000', '000000', '676767');
    // -->
    </script>
    <noscript>
    <b>Flash player error: JavaScript must be enabled!</b>
    </noscript>
             <br />
            <?RecordBody?>
                <?PodcastNotFloatAlign?>
                    <?RecordWithImage?>
                    <div style="width=100%; text-align: <?ImageAlign/?>;">
                    <img src="<?ImageUrl/?>">
                    </div>
                    <p>
                    <?Description/?>
                    </p>
                    <?/RecordWithImage?>
                    <?RecordWithoutImage?>
                        <?Description/?>
                    <?/RecordWithoutImage?>
                <?/PodcastNotFloatAlign?>
                <?PodcastFloatAlign?>
                    <?RecordWithImage?>
                    <img src="<?ImageUrl/?>" style="margin:10px; float:<?ImageAlign/?>;">
                    <?Description/?>
                    <br clear="all" />
                    <?/RecordWithImage?>
                    <?RecordWithoutImage?>
                        <?Description/?>
                    <?/RecordWithoutImage?>
                <?/PodcastFloatAlign?>
            <?/RecordBody?>   
        </p>   
        <p class="endpost">Posted by <?UserName/?> at <?PostTime/?> | 
                    <?CommentsLinkPlace?>
                        <a href="<?PostCommentLink/?>"  class="comments" <?CommentsInPopupTag/?>><?CommentsLinkText/?></a>
                    <?/CommentsLinkPlace?>
                    <span class="item-action">
                        <a href="<?EmailPostLink/?>" <?EmailPostPopupTag/?> title="Email Post">
                          <span class="email-post-icon"> </span>
                      </a>
                    </span>
                  <span class="item-control">
                      <a style="border:none;" href="<?EditLink/?>" title="Edit Post">
                          <span class="quick-edit-icon"> </span>
                      </a>
                  </span>
        </p>
        <?/PodcastCurrentRecord?>
        <?/PodcastCurrentRecords?>
      <?AfterOnePostOnPage?>
        <p class="comment-timestamp" style="margin-top: -1.5em;">
            <a href="<?PodcastHome/?>">&lt;&lt; Home</a>
        </p>
      <?/AfterOnePostOnPage?>
       <?CommentsPlace?> <!-- Begin #comments -->
       <div style="margin: 2em;">
        <h4><strong><?CommentsCnt/?></strong> Comments:</h4>
        <dl id="comments-block">
          <?CommentsRows?>
          <?CommentsRow?>
          <dt class="comment-poster">
            <?CommentSender/?> said...
          </dt>
          <dd class="comment-body">
            <p><?Body/?></p>
          </dd>
          <dd class="comment-timestamp"><?PostTime/?>
          <?DeleteCommentLink/?>
          </dd>
          <?/CommentsRow?>
          <?/CommentsRows?>
        </dl>
        <?PostNewCommentLink?>
            <p class="comment-timestamp">
            <a class="comment-link" href="<?PostCommentLink/?>" <?CommentsInPopupTag/?>>Post a Comment</a>
            </p>
        <?/PostNewCommentLink?>
        </div>
        <?/CommentsPlace?> <!-- End #comments -->
        <?WelcomeMessage?>
            <p class="welcome_title">Congratulations on creating your new podcast!</p>
            <p class="welcome_message">Please log into your account to add/create an episode and then publish your podcast so that the rest of the world can enjoy your work.</p>
        <?/WelcomeMessage?>           
          </div>
        <div id="columnright">
        <h3>My Profile</h3>
        <?PodcastAuthorPhotoUrlPlace?>
        <div id="profilepic"><img src="<?PodcastAuthorPhotoUrl/?>" /></div>
        <?/PodcastAuthorPhotoUrlPlace?>
        <p class="righttext"><strong><?PodcastAuthorName/?></strong><br />
          <strong><?PodcastAuthorLocation/?></strong><br />
          <?PodcastAuthorAbout/?>
        <br />
        <a href="<?PodcastAuthorUrl/?>" class="profile">View my complete profile</a></p><br clear="all"/>
        <!-- LINKS, you can change or delete list here if necessary -->
        <h3>Links</h3>
        <div style="padding: 1ex 0 1em 2em;">
        <a href="http://www.mypodcast.com/" target="_blank">Free Podcast Hosting</a><br>
        </div>
        <!-- END of LINKS block -->
        <?PrevPosts?>
        <h3>Recent Posts</h3>
        <?PrevPostsRows?>
        <?PrevPostsRow?>
        <a href="<?PermanentLink/?>" class="posts"><?Title/?></a>
        <?/PrevPostsRow?>
        <?/PrevPostsRows?>
        <?/PrevPosts?>
        <?ArchiveLinks?>
        <h3>Archives</h3>
        <?ArchiveLinksRows?>
        <?ArchiveLinksRow?>
               <?CurrentRow?>
                   <p class="posts"><?DisplayString/?></p>
               <?/CurrentRow?>
               <?NotCurrentRow?>   
                <a href="<?Link/?>" class="posts"><?DisplayString/?></a>
            <?/NotCurrentRow?>
        <?/ArchiveLinksRow?>
        <?/ArchiveLinksRows?>
        <?/ArchiveLinks?>
          <!-- Links to podcast subscriptions -->
      <div style="text-align: center;">
        <a href="<?itunes_link/?>" title="Subscribe to podcast with iTunes"><img src="<?system_url/?>/images/itunes2.png" alt="Subscribe to podcast with iTunes" style="border:0;"></a><br>
        <a href="<?google_link/?>" title="Subscribe to podcast with Google"><img src="<?system_url/?>/images/google2.png" alt="Subscribe to podcast with Google" style="border:0;"></a><br>
        <a href="<?yahoo_link/?>" title="Subscribe to podcast with Yahoo"><img src="<?system_url/?>/images/yahoo2.png" alt="Subscribe to podcast with Yahoo" style="border:0;"></a><br>
        <a href="<?rss_link/?>" title="Podcast RSS-channel"><img src="<?system_url/?>/images/podcast.png" alt="Podcast RSS-channel" style="border:0;"></a><br>
        <br>
        <a href="<?advertise_link/?>" title="If you would like to advertise in this podcast, click here for more information."><img src="<?system_url/?>/images/advertise.png" alt="If you would like to advertise in this podcast, click here for more information." style="border:0;"></a>
      </div>
        </div>
        <br clear="all" />
        <div id="footer">Powered by <a href="http://www.mypodcast.com/" target="_blank">MyPodcast.com</a></div>
    </div>
    </center>
    </body>
    </html>

    It doesn't go anywhere in that: that isn't a feed, it's a web page. A feed is a text file in XML format.
    Would you like to post the URL of your iTunes Store page?
    This page about podcasting includes a basic sample feed so you can see what one should look like, and at the bottom of the page is the method for redirecting iTunes to a new feed.
    http://rfwilmut.net/pc

  • Pointing iTunes to a new feed?

    Hi Folks,
    How do I get iTunes to point to a new URL for my feed when the old URL is no longer valid?
    It used to be hosted at Switchpod but I moved it. I placed the NewFeed tag in the xml file and assumed it had updated since it picked up a new episode. At that point I killed the account at switchpod. Now after pinging it with the iTunes ID I can see that it is still looking for it at switchpod.
    In case it is helpfull here is the new feed url...
    www.funinyourcity.com/feed.xml
    Thanks in advance,
    Mike
      Windows XP Pro  

    Hey Cat Lake,
    First off thanks for the reply…To answer your question, no I don't have access to the old feed anymore as I killed that account. However that old feed was redirecting to the new location for a good week prior to me killing it. During that time the new feed had the NewFeed tag in it and did update the addition of an episode. I guess it just never updated the iTunes feed URL.
    So, with that said... is there anyway to now update the feed url since the old url is dead? Or do I need to kill the podcast from iTunes and then resubmit?
    Thanks,
    Mike
      Windows XP Pro  

  • How long does itunes:new-feed-url take to completely change my podcast page?

    I've used the itunes:new-feed-url to change my podcast page, but I'm curious how long it takes. I have a new episode up, but the podcast page located here doesn't show that third episode, even though the new feed as well as 301 redirect is in place.

    The Store won't redirect to the new feed at http://www.tripodbroadcasting.com/givethatsomethought/feed/ until the next time it checks the old feed. You posted the latest episode only today: it usually takes 1-2 days for new episode to appear in the Store as it caches feeds and visits them in rotation to check for changes. When this happens it will transfer to the new feed. Subscribers are already redirected to the new feed and see the third episode.

  • How to move to new feed when old feed is dissapeared

    Hello, unfrotunately my last webpage with podcast feed was deleted by some ugly admin
    however despite feed being lost it still appeared on iTunes however there was no wy to download episodes.
    So I put new site under new domain, recreated all of it by hand, installed powerpress plugin etc.
    I put in configuration link to the new feed waiting several days but it didn't help.
    So I submitted new link for my podcast to iTunes. It was accepted,but the old one still exists.
    Here it is:
    https://itunes.apple.com/pl/podcast/co-ja-pacze/id806451148?mt=2 new one
    https://itunes.apple.com/pl/podcast/co-ja-pacze/id668434333?mt=2 old one
    So I am a bit confused - how to "merge these two podcasts into one" with popularity ratings etc or at least I want my new feed remains and old one deleted.
    Any suggestions?
    I have no access to old adress of feed - it simply not exists anymore.

    You can't exactly merge them. It's a pity you submitted the new feed as a new podcast - by emailing them you might have been able to transfer the Store to using the new feed. (The usual practice is to put the itunes:new-feed-url' in the old feed - you've put it in the new feed but it doesn't do a bit of good there.)
    What I suggest you do is email podcasts 'at' apple.com. Explain clearly that the original feed has gone dead and you cannot add the redirection tag to it; that you submitted a new feed as a new podcast without realising this wasn't the best thing to do; and ask them if they can delete id806451148 and change id668434333 over to using its feed (give them the feed URL of course).
    They have a variable reputation for helpfulness so I can't promise they will do this, but you have nothing to lose by trying. The only other alternative is to ask them to delete the original podcast, losing subscribers and ratings in the process. The process for doing that is described here, though some people have reported being told that they won't do it and the poster must add the 'block' tag to the feed, despite the fact that the feed is unavailable.

  • I backed up my new iphone and only got the pictures from the old phone i lost the ones on the new one. is there a way to get them back ?

    i have an old iphone and than i got a new one but never backed the new one up because i was waiting for a computer charger i just got the charger today i backed the old phone up than the new one i transfered the pictures from the old one to the new one with no problem but lost any pictures i had on the new one can i get them back

    It sounds like you restored the backup of your old phone to your new phone.
    Unless you backed up the new phone first or manually copied the pictures off prior to restoring the backup, the pictures are gone.

  • Can you transfer pictures from an old ipod touch to a new ipod touch without having the old ipod touch or the photos in Iphoto?

    I somewhat recently got a new ipod touch after my screen cracked and the people at an Apple store said it would be cheaper to buy a new device completely.  I followed everything they said about backing up my old device and when I went to pick up the new one, the store took the old one away.
    Up until just a few days ago I did not realize Iphoto could hold pictures from your ipods.  Mine never did it automatically, nor did anything ever seem to have the option to do.  It just so happened that two days ago I was browsing the web when I noticed a website gave instructions on how to transfer photos.  So I tried it and it worked for my new ipod while all the new photos.
    But I was wondering if I could somehow get the old photos back from Itunes or my computer somewhere and transfer them into Iphoto or my new device.  I was hoping that maybe if I could "back up" my old stuff onto my new ipod for a few moments it would show I have the old photos and I could transfer them into Iphoto and then restore the ipod touch back to what I have it currently.
    If it helps, I'm pretty sure the old ipod touch I had was a 3gen as my new one I noticed was skinnier.  As I said, I do not have the old touch anymore but I have the data in Devices on my Itunes if that makes a difference.  Both my data for my old one and new one are in the Devices section of Itunes.
    Thanks,
    Dragonhatchling

    Restore the new iPod from the backup of the old iPod:
    How to restore from a backup
    To restore information from a backup, use one of the following methods after connecting your iOS device to the computer with which you normally sync:
    Right-click (or Control-click) the device and choose Restore from Backup
    If you have a new phone, you can connect to iTunes and it will prompt to restore from your backup

  • HT204053 My husband and I share music in one itunes account for  both of our iphones. We just got the new iphone 5s's and iin  ttryinngto back up our old phones I have realized we SHARE one icloud as well. Can I create him a new icloud for  pictures, cont

    My husband and I share music in one itunes account for  both of our iphones. We just got the new iphone 5s's and iin  ttryinngto back up our old phones I have realized we SHARE one icloud as well. Can I create him a new icloud for  pictures, contacts etc

    You can have one icloud account and a different itunes account on the phone. I have my icloud account and a shared itunes account. He does not have to use the new icloud account as is ID in itunes and app store. He can keep using the old one.

  • My husband bought a new ipad and he created a new apple id and new password etc, now he wants to have all his pictures from his old Ipad that it was created on a different ID or Icloud id. How can i get the pictures?

    My husband bought a new Ipad Mini and he created a new Apple ID and new password for him, but his old Ipad was under my Apple ID and Icloud too. Now he wants to get his pictures from Icloud to his new Ipad, What do i need to do?

    You can use a wireless flash drive.
    Copy from old iPad > wireless flash drive > copy to new iPad
    http://www.sandisk.sg/products/wireless/flash-drive/

  • How do I snyc the pictures from my old apple ID/icloud on to my new one????

    My apple account was hacked into so I had to change my email on my account. I had tons of pictures saved on that account with icloud, but now that I have a new email address on that account the pictures did not automaticly transfer over. How do I get my pictures from my old account on to the new one please help!!!

    You would have to delete the new account from your phone, sign back into the old account, turn on photo stream, save the photo stream photos to your camera roll (tap Edit, tap all the photos, tap Share, tap Save to Camera Roll), then delete to old account and sign back into the new one again.  (When you delete the account it only deletes it from your phone, not from iCloud.  Your data will be synced back to your phone when you sign back in.  Also, you will only get back photo stream photos added in the last 30 days.  After 30 days photos are deleted from your camera roll even though they remain on any device that already has them.)

  • I have a new iPhone and have kept my old one to play music in another room, when i recently updated my new iPhone it has backed up to my old iPhone and I have therefore lost pictures, messages etc from my new phone how can I get it all back?

    I have a new iPhone and have kept my old one to play music in another room.  I have recently updated my software on the new iPhone and when it backed up it backed up to the old iPhone, I have therefore lost pictures, messages and apps from my new iPhone as it has backed up to the last session of the old phone, how can I get all my new stuff back and stop it from happening again?

    BarnsleyMif wrote:
    I have recently updated my software on the new iPhone and when it backed up it backed up to the old iPhone
    No such thing has occurred.  iPhones do not backup to one another.
    It is not possible to backup a different iPhone from the one being updated.
    If the iPhone was restored with a backup from a different device, restore it again from the correct backup.
    BarnsleyMif wrote:
    how can I get all my new stuff back and stop it from happening again?
    Pay attention when restoring the iPhone and select the correct backup to restore from.

  • My system crashed several months ago -- had to go back to start, when i bought computer -i have reloaded firefox - and now i can not get pictures on Facebook -mine or any one else in the news feed

    When I first downloaded Firefox- everything was normal -- then my computer had to be taken back to the way it was from the factory. I had Trojans. Now I have reloaded Firefox, and I get no pictures on Facebook. I get all of the graphics when I go to a game site, and it is fast--Thank you!!, but when I am on my Homepage or News feed, all I get are the names, but no pictures of my friends or what they have posted --pictures. In my profile, I have no picture of myself that I have posted, or in my albums.
    I have uninstalled and reinstalled Firefox 4 times now, and still the same thing. PLEASE HELP ME-- I DO NOT LIKE WINDOWS EXPLORER-- IT IS SLOWER THAN MOLASSES IN A BLIZZARD-- IT TAKES MINUTES TO LOAD SOME OF MY GAMES-- AND SOME WON'T LOAD AT ALL.

    With Facebook on display, click on the site identity button (for details on what that is see the [[site identity button]] article) and then on More Information. This will open up the page info dialog.
    First select the Permissions panel, make sure that "Load Images" is set to allow (selecting Use Default should also work)
    Next select the Media panel, then click on the first item in the list. Use the down arrow key to scroll through the list. If any item has the option "Block images from (domain name)" selected, de-select the option.
    This should hopefully resolve your issue, but also see [[Images or animations do not show]].
    Some add-ons can also block images, for example if you have AdBlock Plus installed, make sure that you have not accidentally created a filter to block the images.

  • I lost my iphone in the woods and it is not connected to the internet. how can i trace it? and if i cant, can i take all the data, such as pictures from my old phone onto a new one?

    so i was walkin in the woods and somehow i droped it. its not conected to the internet. i know because i checked icloud. when i walked around to look for it i used a friends phone to call it so it would ring, but it went straight to voice mail.
    So, how can i trace it? and if i cant, can i take all the data, such as pictures from my old phone onto a new one?

    if you installed find my iphone app on it you can do these things from icloud if it's online
    if not you can't do anything

  • How do I remove old web site when publishing new site with same URL in iweb? Hit replace when publishing new iweb site (so we could have control over changes) but new site name is attached to old via a / after our www address we want to keep.

    I hit the replace when publishing the new iweb site (so we could have control over changes - last one was not an apple based site) but new site name is attached to old via a forward slash and underscore after our www address. Makes it very messy with a very long web address.  Original address now followed by iweb site name followed by name of first page? Went for iweb as not that computer literate - all going so well?! Cheers for help in anticipation. Have to get off to work now but be great end to week if we could be sorted tonight. Rupes

    Well yes of course, if you try and publish through iWeb there won't be an option to publish without your site folder which is exactly why I told you to download Cyberduck and use Cyberduck to upload your site to your server having published your site from iWeb to a local folder.  That is what you need to do if you don't want your site name to be included in yoru url.
    It would have been easier also if you had used Cyberduck initially to connect to your server and delete your old site yourself - at least that way you would have deleted the correct files rather than relying on your hosting service to do it and doing it incorrectly.
    Download Cyberduck and then select the publish to a local folder option from iWeb and then use Cyberduck to upload your site to your server, but rather than uploading the whole site folder and separate index file, upload ONLY the contents of your site folder and then your url will be http://www.domain.com/page_name.html.
    It really isn't rocket science!

Maybe you are looking for

  • Why can't I download Free iPod Touch Apps from Apps Store w/Shopping Cart?

    I have an 8GB iPod Touch (original model) with the current 2.1 software. I also have iTunes v. 8.0. The behavior I am seeing started about 3 weeks ago and continues with these updates - it was not like this when I first downloaded the 2.0 software an

  • Make voodoo 3 go 1680x1050

    I want 1680x1050 Card 3dfx voodoo 3 3000 AGP Monitor Teac T2005S12 LCD 8:5 (Identified as KTC2002) connected wth VGA I played with xorgconfig and xorg.conf manually and tried res 1680x1050 1400x1050 1280x1024 1152x864 1024x768 color depths 16 24 vsyn

  • Keynote '08 won't play MPG movie

    I'm preparing a presentation. Bought a video clip to include, which turned out to be in MPG format. It plays fine on my computer in QuickTime, but won't play within the presentation. When I insert it the icon of a sound file appears, but it doesn't e

  • CallStudio: reset Value of Count element

    Hi all! Im developing a script in Callstudio 8.5. There is a Sub-Menu in the flow where the user has to enter TPIN. User gets 3 tries, if unsuccessful, it goes back to Main menu. NOW I have used a count element (Initial=0, step=1) to do this. The the

  • Time formatet string in thtmlb dropdownlistbox after enter key or tab key

    Dear Collegues, In our BSP-Application we use the thtmlb:dropdownlistbox. It's configured as you can see below in the code cutout: DATA: wa_result type ZZPRBRS_PRSRG.                   %>                   <td>                   <thtmlb:dropdownListB