How to copy/paste iWeb site

Hi!
3 questions...
1) How do I copy and paste my existing iWeb websites pix and text and links and so forth into a newly created iWeb website?
2) How do I create new iWeb site name
3) How do I delete the old site?

The only inane question is the one not asked. The best way to backup your web site is to make a backup copy of your Domain.sites2 file that is in the User/Library/Application Support/iWeb folder. Varkgirl has an Automator work flow that will copy it to another location of your choice. I believe you can find it on  Varkgirl's iWeb Tips and Tricks site or use this link to directly download it: Click Here. I believe it makes a zipped copy of the domain file and moves it to the location of your choice. It can take a while depending on the size of your site.
Since I have over 45 individual sites I use a backup application to backup it up after each time I edit and/or publish. After the initial backup the application, Synk Standard,it only backs up those new or changed files in the domain file(s). Much quicker that backing up the entire file(s).
If you have an external hard drive you can just drag the domain file to it after each use, replacing the previous one - if you don't have a backup program.
It's all one big learning curve here in the discussions. Some of us are just on a different part of the curve than others. Good luck.
OT

Similar Messages

  • How to copy paste a new page with thumbnails view in Pages 5?

    How to copy paste a new page with thumbnails view in Pages 5?

    Feature removed along with over 90 others:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=b14426a2c5af2 65f2213d98ee45f08d7&mforum=iworktipsntrick
    Pages '09 should still be in your Applications/iWork folder.
    Export your Pages 5 files to Pages '09 or Word .docx and trash/archive Pages 5.
    Then rate/review Pages 5 in the App Store.
    Peter

  • How do I publish iWeb site with Cyberduck??

    Hi there,
    I am trying and trying, but I can't figure it out. Can anybody help me and tell me how to publish an iWeb site with Cyberduck??
    Thank you so much!
    Marc

    Okay, this is not complicated at all.
    When you want to publish an iWeb site to some place other than MobileMe, then you publish to a folder of your choice on your hard drive and iWeb will create all the files needed. It will create one folder that has the same name that you called your website inside iWeb plus an index.html page. So if you called your site Site in iWeb, then when you publish to a folder, your folder will be called Site, plus the index.html page.
    You then need to open Cyberduck and enter your ftp info, plus your username and password and then you click on open connection. Once you click on open connection you will be connected to your hosting service and there will be a folder there called Public_html. You then need to upload your folder plus index.html file from your hard drive and once these have been uploaded, you just drag and drop them into the Public_html folder on your web space. To upload in Cyberduck, just click on Action at the top and click on Upload. Once you click here you will be shown all the files on your hard drive and all you need do is go to the folder where you site is stored and then click on index.html and it will be uploaded and then click on Site or whatever your site is called and upload this and it will be uploaded.
    It is not difficult at all, but you do need to know what you are doing.

  • How to export an iweb site to another mac

    How to export an iweb site to another mac?

    Choose Go to Folder from the Finder's Go menu, enter ~/Library/Application Support/iWeb/ as the path, and move iWeb's domain package as desired.
    (41573)

  • How to import old iWeb sites

    I recently did a clean install of Lion and setup a new User for myself, rather than migrate my old user data. I copied my Sites folder from my Snow Leopard User folder into my User folder in Lion, but when I open iWeb, I can't see any of my iWeb sites. How can I import the sites that I've already built in SL into iWeb running under Lion?

    The website data is stored in a Domain.sites2 file whose default location is Home Folder/Library/Application Support/iWeb. This is the file you need to transfer.
    In Lion the Library is hidden and there is a slight problem with opening Domain files. See this page under "iWeb and Lion" for info...
    http://www.iwebformusicians.com/iWeb/iWeb-Tips.html

  • How do I upload iWeb-site without using 'Flie Publish' feature?

    Due to corporate firewall restrictions I cannot use iDisk, Sync or iWeb to connect to .mac, which presented a problem when I wanted to Publish my iWeb site.
    I have uploaded the site [via webdav, with Transmit] to the Sites folder of my iDisk, but I can't find my site when I enter my .mac URL into my browser (http://web.mac.com/myusername or http://homepage.mac.com/myusername).
    Theoretically, is this the right way to upload to iDisk without using iWeb? Is there anything else I need to do to link my URL to the files in iDisk/Sites?
    Thanks in advance, Lee.

    Ok, my member name is leepaulvickers.
    I've tried
    http://web.mac.com/leepaulvickers
    http://web.mac.com/leepaulvickers/iweb
    http://web.mac.com/leepaulvickers/leepaulvickers
    http://homepage.mac.com/leepaulvickers
    but just get the 'we can't find the HomePage you've requested' 404 error.
    BTW I've used Transmit to upload to my iDisk in the past, such as files and photos with no problems. I assumed there would be no trouble with iWeb's files...

  • How to copy/paste anchor text box to its anchor point in text and delete all empty anchors?

    hi all
    i have a document of few pages but one story. The right column is the main text box and on many places anchored text boxes are placed which appeared on the left column as shown below.
    i want text of each anchor-text-box to be cut from its place and paste at its insertion/anchor point and delete all empty anchored boxes.
    I am trying since morning but i unable to reach anchor object reference. Any help on how to start with will be helpful.
    virender

    Ok, let's say you have one main text box (not anchored) and three text boxes that are anchored to text within it. The first one is anchored with text, the second one is unanchored, and the third one is empty (I'm not going to get into inline anchoring vs. custom anchoring since you didn't bring it up in your post).
    We cycle through the items on the page:
    function main(){
      var myDoc = app.activeDocument;
      var myPages = myDoc.pages.everyItem().getElements();
      for (var i = 0; i < myPages.length; i++){
        var myPage = myPages[i];
        //Checks that the page is valid, and that it is not a master page. If either is true, skips to the next page.
        if (myPage.isValid == false) continue;
        if (myPage.parent instanceof MasterSpread) continue;
        var myItems = myPage.allPageItems;
        for (var j = 0; j < myItems.length; j++){
          //Current item.
          var myItem = myItems[j];
          //If myItem doesn't have a Character parent, it is not anchored.
          //The first and third text frames would fail this test.
          if (!(myItem.parent instanceof Character)) continue;
          //We only care about text frames.
          if (!(myItem instanceof TextFrame)) continue;
          //I think the only way this would happen would be if you had an image or
          //something else unexpected within the frame. I check for it so no content
          //is inadvertently lost.
          else if (myItem.texts.length > 1) continue;
          //If we're still in this iteration of the loop, all qualifications are met.
          //Flatten the text frame.
          //I don't use layers that often so, to me, flatten makes sense. You may want
          //to use a different term if there's a chance for confusion.
          flattenItem(myItem);
    function flattenItem(funcItem)
         //Hold onto the anchor character.
        var myParent = funcItem.parent;
         //Duplicate the text from within the frame so that it appears right after the anchor.
         //There may be other methods, but this works for me. I try to avoid copy/paste
         //so as not to deal with any clipboard mishaps. I added a check in case of empties.
         if (funcItem.texts.length > 0){funcItem.texts[0].duplicate(LocationOptions.AFTER, myParent.insertionPoints[0]);}
         //Replace the anchor character itself with a space (or whatever) which also
         //deletes the text frame it was anchoring.
        myParent.contents = " ";
    I guess the takeaway might be that you're not looking at the main text frame and then checking to see if anything is anchored to it. You're looking at each text frame and figuring out if it is anchored. That's my approach, anyway.

  • How to copy & paste effects

    Hello,
    First off sorry I'm not to familier with Audition. What I am trying to do is export a bunch of clips from Premier Pro to Audition to take out background noise. I know how to do that, but is there a way I can fix one of the clips in Audition and simply "copy & paste" the grouped effects to all the other clips? This way I don't have to go into each clip and make the adjustments. Thank you

    If you can record a 'favourite' which will do all of the processing you want, then you can apply it to a group of files using Batch Process, which you'll find in the Edit menu.

  • How to copy/paste texts/images from webpages in iBooks Author?

    Hi,
    I want to copy/paste text/image contents from webpages with iBooks Author, somehow images can't be copied, only texts can be copied with copy/paste editing. Wonder if there are any ways to include images with simple copy/paste?
    Tried to search iBooks Author help, could not find answers. Please help.
    Thanks

    Perhaps the people who spent a lot of time and money to produce the websites.....and who own copyright ...don't want anybody using their work without payment or credits. Have you contacted the websites owners to ask permission? 
    IF any person(s)  use anything from websites without permission apart from being to lazy to email to request permission....could face a legal action if and when the sites owners fins out. 
    There is another her misconception that "free" websites and content on "social media" such as the dreaded FaceBook....can be used without consequence. Almost all "free" websites are common licence material - which requires permission and those who give permission do so only for personal or none profit reproduction.
    i Use a blocking script on my websites which apart from preventing a right click...those who try are whisked off  my website to the the UK copyright website page which explains my rights! 
    You may wish to check out your iBooks contract with Apple and read their warnings on use of others copyright material. 
    You could ..and should contact the websites...explain what you want to use and why....and ask them if they can supply media.

  • How to transfer an iWeb site from one MobileMe account to another.

    I am creating an iWeb site for a friend. I am doing this using my mac and my MobileMe account. I understand that the iWeb site assets are all stored in my MobileMe iDisk. I want to take the finished site and transfer it to my friends computer and his MobileMe iDisk so he can manage it from there. How do I do this.

    If you have your friends MobileMe login details, then you can publish the site to his MMe account directly from your Mac. Go to System Preferences and log out of your MMe account and then into his and then go back to iWeb and then publish the site directly to his MMe account.
    As far as giving him the ability to manage the sites, just give him the relevant domain file for the site. Go to User/Library/Application Support/iWeb/domain.sites and find the domain file and then you can e-mail it to his Mac and he can then put the domain file in the same place on his Mac.
    Whatever you do, don't publish the site to your desktop - you won't be able to do anything with it. It is the domain file that you need if your friend wants to manage and alter the site in any way.

  • Does anyone know how to save an iweb site to dvd so that a Windows user...

    can put it in their computer and view it? This would be a hard copy of the site with all files. Have created a very media rich iweb site and am hoping to enable several people to view the site without accessing the internet.
    Thanks in advance for your suggestions. You all are always so helpful.
    Best,
    Kim

    Publish your Site to a folder and burn it to disk.
    The disk doesn't know it's a website.
    Your webpages have to be viewed in a Browser.
    And as long they do not contain outside links, there's no need for an Internet connection.
    Practice with a RW disk. Then you can erase the disk and start over.
    All kind of tricks such as autostart can be found on the internet.
    PS. Scan for virusses too, otherwise Windows and/or its users get hysterical.

  • Exactly how to copy/paste audio?

    I see in the manuals and lessons that you can copy audio from a video clip and use it elsewhere.
    What I'm stuck on is EXACTLY how you copy audio (without the video it is with). I have "extracted" the audio in the clip from which I want to take the audio and identified which bit of it I want.
    I see from the manual how to copy video, by placing cursor just under the play head and dragging. But this brings with it the video, so when I paste I get the audio I want together with the unwanted video which barges out of the way the clip into whcih I want to drop the audio only.
    I am sure I'm missing something simple, but I can ony find guidance on copy video, not audio, althought he lessons lightly say you can do it, they don't say how.
    Anyone can help?
    TIA
    Martin
    Mac OS X Intel Mac OS X (10.4)

    Answered my own question.
    You select by positioning the "audio playhead" in the audio clip in question, dragging it and pressing Coomand-C to copy the audio clip. (I'm guessing this is obvious to Mac users but it's not clear to this pc refugee how to "select" - in fact it's taken days to get to the bottom of this.
    Then position the playhead where you want the audio clip and Edit-Paste, then trim teh excess to get the bits you don't want.
    Actually less intuitive and user friendly than I would have expected, but well, there is it.
    Martin

  • Nokia Asha 501: How to copy & paste??

    Hey there
    does anybody know how to copy and paste a text (i.e. from a sms or whatsapp) with Nokia Asha 501?
    For example I am able to copy a text from whatsapp but i wasn't able find a way to copy this text into another whatsapp or sms text..
    any help would be appreciated..
    Ed.

    so it's a whatsapp problem that it allows to copy but no to paste?

  • Can I copy my iweb site to a DVD

    Can I copy a published iweb site to a  DVD

    Publish to a folder and burn that folder to a DVD.
    The burn command is in the Finder's File menu.
    Or right-click the folder and choose the command from the menu.
    Or create a burn folder and drag the files there. Then click the burn button.

  • How to copy & Paste plus take a screen shot or download pic

    On the bold to copy & paste you held down the alt & use the track pad to highlight then pressed the bb key to copy & paste.. How do you do the same function on my new Q10???? Also when I was on FB or the net I could download a picture by pressing BB key & scroll to download & it would save to my memory card.. How do I do this on the q10???
    Anyone have an idea on these functions?? Thanks
    Solved!
    Go to Solution.

    For screen shots you press the Volume Up and Volume Down together until you hear the shutter sound. 
    For copy/paste, tap and hold on text and you see the word highlighted. At both ends of the highlight are little slider balls you can drag to highlight more text. Then tap the  symbol that looks like document pages to copy. To paste the text, touch and hold where you want to paste the text. Tap the pages icon again. 

Maybe you are looking for

  • Can't restart to iMac 21.5" desktop after deleted Windows XP Partition...

    Ok fellow Mac heads. If you could help me out here I would deeply appreciate it. I bought a brand spanking-new iMac 21.5" 3.06 GHz Intel Core 2 Duo about a month ago. I completely love it, but a week ago a friend of mine gave me a copy of Windows XP

  • I have a WRT54G wireless router.   The issue I have is th...

    I have a WRT54G wireless router. The issue I have is that the "wireless network connection" icon light on my laptop stays on continuously and is constantly sending and receiving data even when nothing is open...no Outlook, no browser, no programs. I

  • Does a long running process survive a server crash

    Hi, I assume the bpel dehydration means that a long running process can survive a server crash, but I'd like some expert to confirm this. Suppose I have a long running process which is in an infinite loop to keep invoking a web service. In the middle

  • Setup different printer as default in different location in SAP via  Citrix

    hi all,           i have two location, where the user of SAP B1 uses B1 via Citrix,they have different printer at their respective location, i need to do the setup for two printer one for normal print anather for barcode printer. Both have two printe

  • How to install ias_linux_x86_101340

    I have to test a perl script for which requiremts are : Required Software 1* Oracle Server( version 8.1.5 or higher) =>I have installed 10.2.0 on fedora 2* Oracle iAS => ????? 3* Please ensure that the DBI version is compatible with the perl version