Move Web Pages from one mac to another

Hey
I have a website created and published on my MB Pro uisng Iweb'08. I want to continue all my website work going forward on my Mac Pro. Is there a procedure one needs to follow to make the transfer smooth?
Thanks
Rpk

Hi Rpk,
have a look at the following page:
http://alyeska.altervista.org/en/iWebTransferSite.html
Also read Note1 of that page.
Regards,
Cédric

Similar Messages

  • Move a site from one Mac to another without losing sites already there

    I would like to move a site from one Mac to another without losing the websites that I have already built on the other Mac. Transfering the Domain file is not helping. Is there away to open the new domain file and adding those sites to the domain file associated with this copy of iWeb? I have searched the discussions but am not seeing any clear answers. They all seam to invilve new users or losing the sites already on that mac.

    I seem to have solved my own problem. This may help other users. I found a tip and a web page that suggested moving the Domain File from the application support folder to another on the desktop on one of the computers and then putting the 2nd Domain File from the other computer in a separate folder on the desktop. This is because you can not change the name of the Domain File . Then by double clicking the Domain File with the site wanted, iWeb opens with that set of sites.
    I started with what was to be the new master Domain File and stated a new site with a blank page. saved, did not publish and closed iWeb. Opened from the other Domain File and then clicked and opened the site and page I wanted, then selected all, copied all and closed iweb. Went back to the master Domain File , opened iWeb using that, went to the blank page and pasted in the page from the other Domain File from the other computer. Saved, closed iWeb and repeated till I had all pages. Changed the names to match the sites and Pages. I did not allow iWeb to publish during this process. Took all of 10 minutes and I now have a Domain File with all the sites in one place. I then copied this file back into its original location in Library/application support/iWeb on both computers. I now have all sites in iWeb on both computers.

  • Cannot move the pages from one document to another

    Hi,
    I cannot move the pages from one document to another, abobe gets crashed. I am not sure but I think this was happening when I try to copy or move the threaded content. How to resolve this, this is happening in both CS4 and CS5. Can anyone help me?

    Thanks for ur reply.
    1. Open two documents, for ex doc1 and doc2, doc1 contais 4 pages, doc2 contains 2 pages
    2. Using Move Pages from the Pages panel menu in doc1, moving 1st two pages to doc2
    Move Pages  : 1-2
    Destination   : After page 1
    Move to        : doc2
    Actually I was not able to copy the textframe which is linked with another, immediately it crashes.

  • Web pages from one computer to another

    Hi,
    While in Italy for two months I made a large number of web pages on .mac from over 1000 pictures. These pages are on my MacBook.
    When I returned I successfully transferred the pictures from my MacBook to my iMac.
    HOWEVER, neither the smart albums or web pages (not smart) transferred.
    Is it possible to export web pages from Aperture from one computer to another? How?
    But how do I move the web pages from my portable to my desktop machine? -- And for that matter can you move smart albums from one machine to another?
    Thank you.

    Scott Grabinger wrote:
    Is it possible to export web pages from Aperture from one computer to another?
    yes. aperture is very flexible working with web sites and projects/albums
    How?
    what I do is build the web site, example, web journal and then "Export Web Pages." aperture will make a folder of your site with all the css, indexes, photos etc. you can then drag and drop this folder anywhere you'd like.
    I export that folder into my local_site root folder in Dreamweaver and tweak the css from there
    you can also use iweb
    But how do I move the web pages from my portable to my desktop machine?
    see above
    -- And for that matter can you move smart albums from one machine to another?
    yes. select the project in the project pane and export the project
    in the other computer, open aperture and File>Import>Project... or Folders into Project (depending how you exported in the first place)
    victor

  • Move stickie file from one mac to another, move stickie file from one mac to another, How do I move stickie file from one mac to another

    How do you transfer the stickie data file from one mac to another?

    I think this is the file -
    In (hard drive) > Users > yourhomefolder (the one with the house icon) > Library, look for a loose file named StickiesDatabase
    Copying that file to the same location on the new machine (and replacing the file there now) should move the notes. It is probably a good idea that both machines be running the same OS X version.

  • Move mail folders from one mac to another

    How to move my mail folders from one mac to another.
    The foldera re on my mac. See below the attached image.

    Some possible options in no particular order:
    (1) Copy the folders to a SUB Thumb Drive.
    (2) Use Dropbox
    (3) If your Macs are compatible with AirDrop see list:
    MacBook Pro (Late 2008 or newer)
    MacBook Air (Late 2010 or newer)
    MacBook (Late 2008 or newer)
    iMac (Early 2009 or newer)
    Mac Mini (Mid 2010 or newer)
    Mac Pro (Early 2009 with AirPort Extreme card, or Mid 2010)
    Activate AirDrop on both Macs to Move/Copy your Mail Folders.

  • Move iphoto program from one mac to another

    I would like to move iPhoto '09 version 8.1.2 from one mac with OS 10.6.8 to another mac with OS 10.5.8.  Can you tell me how to do this?  Thank you in advance.
    Joy

    To move an iPhoto Library to a new machine:
    Link the two Macs together: there are several ways to do this: Wireless Network,Firewire Target Disk Mode, Ethernet, or even just copy the Library to an external HD and then on to the new machine...
    But however you do choose to link the two machines...
    Simply copy the iPhoto Library from the Pictures Folder on the old Machine to the Pictures Folder on the new Machine.
    Then launch iPhoto. That's it.
    This moves photos, events, albums, books, keywords, slideshows and everything else.

  • Move Web service from one server to another

    Hi
            i am calling a web service from R3 which i have moved from one server to another what i need to do in my web dynpro application as it will call the web service from new location?
    do i need to rebuild the whole application or need to change some settings here and there?
    NOTE: webservice and function module of the web service is not changed just moved from one server to another.
    THANKS
    Ninad

    Hi,
      Try with this code. Dynamically Server will get change.
    Create a HTTP Destination in visual administrator which stores the server name and port.
    String prefixURL = "http://";     
    // your Service Address...remove the first part from service url.
    String serviceURL = "/TestService/Config1?style=document";
    DestinationService dstService = (DestinationService) obj;          
    Destination destination = dstService.getDestination("HTTP","ApplicationServer");
    Properties destprop = destination.getDestinationProperties();
    HTTPDestination httpDestination = (HTTPDestination) destination;
    String serverName = httpDestination.getUrl();
    prefixURL = prefixURL + serverName;
    String testURL = prefixURL + serviceURL;
    Request<Obj> testReq = new Request<Obj>();
    testReq._setEndPoint(testURL);
    You need to import below files into your project.
    import com.sap.security.core.server.destinations.api.Destination;
    import com.sap.security.core.server.destinations.api.DestinationService;
    import com.sap.security.core.server.destinations.api.HTTPDestination;
    import java.net.HttpURLConnection;
    import java.util.Properties;

  • How do you move apple configurator from one mac to another mac?

    I want to move the configuraton of apple configurator to a new computer. How?

    Thanks for the reply.
    burgback wrote:
    [...] Are you able to wipe a device manually and then plug it in to the laptop to re-configure without giving you to much of a hassle?
    I guess you mean whether I would be able to add one of the iPads to the new AC Mac by putting it in Restore mode and supervising it from that Mac? That will probably work. My problem is, that I've done that with the whole batch (60+ as I said earlier) when moving to a dedicated account within my own PowerBook some time ago. That takes an awfull lot of time, because it involves doing manual tweaking per iPad and adding the purchased apps again (in the Netherlands we don't have VPP so that is a manual process).
    I would really rather have the settings transfered and continue working on the Mac Mini than starting all over again.
    Regards, Eerk

  • Move photoshop elements from one mac to another

    I purchased Adobe Photoshop Elements 10 Editor, v10.0 (4+)  from itunes and now want to move it from my mac to my macbook. No idea how to do this. Chat support @ adobe dont have any help for me.
    Has anybody any clue?
    Many thanks,

    Hi Joanne,
    Please download Photoshop elements 10 on the new mac machine using the below link.
    https://helpx.adobe.com/photoshop-elements/kb/photoshop-elements-10-11-downloads.html
    Use the serial number (24 digit code) to activate Elements 10.
    Thank you for posting on Adobe Forums.

  • Move unfinished imovie from one mac to another?

    i have an unfinished imovie on a friends mac. can i save the unfinished imovie on a usb drive, then open it on another mac (exactly the same version as the current one) and continue editing/adding to my imovie?

    I would revise Bengt's remarks just a little bit.
    A USB External Hard Drive is fine for both editing and moving. However, the drive must be formatted is MAC OS Extened (journaled) as Bengt says.
    Then in iMovie, click VIEW/EVENTS BY VOLUME.
    Hold down the Command Key while dragging the small icon in the iMovie Event Library List to the small icon for your external USB drive in the same iMovie Event Library List. Then do the same command-drag with your project in the Project Library List. Finally, point to the project in the Project library List, and click File/Consolidate to make sure that all project assets (photos, music, etc.) are on the external disk.
    When you get to the new Mac, plug in the USB drive, and imovie should recognize your projects and events and you can continue editing from the external drive.
    If you prefer, you can command drag the projects and events to the internal drive in the new mac as before.

  • How can I move redeemed software from one mac to another

    I work in a Higher Education establisment in the uk.  We have purchased multiuser licenses for various apps including Final Cut Pro X.  Past experience has led me to ask this question......  How do I uninstall software software redeemed from the App Store on one lab of macs and re-install it on another lab of macs  ? 

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    That is a question that you should probably be asking of the folks at Apple from whom you received the licenses, since they are the folks in the know about the legal remifications involved.

  • How to move purchased music from one mac to another

    Hi Everybody
    How do I move my purchased music (purchased in Itunes on my Powerbook) to my Mac Mini so that I can enjoy the music on both computers?
    I would very much like two answers:
    1. One answer that gives me the solution of how to move only the purchased music?
    2. An answer thats give me a solution to move/sync. the entity Itunes library/folder?
    Thanks in advance :o)
    Best
    /Kudsk

    1. How to copy purchases between computers
    2. Moving your iTunes Music folder

  • How to move a project from one Mac to another

    Hi,
    I started an iMovie project on my MBP but want to finish it on my more powerful iMac. I copied the project file from my MBP to my iMac, but when I start iMove, the project does not appear in my project pane.
    Any idea what's wrong here?

    Hello P-Pod,
    Thanks for using Apple Support Communities.
    You can follow this article to share any document with other user profiles.
    OS X Mountain Lion: Share files with others who use your computer
    http://support.apple.com/kb/PH10636
    Share a file with one other user on your Mac
    Click the desktop to make sure you’re in the Finder, and then choose Go > Computer.
    Double-click the icon for your computer’s internal disk (usually named Macintosh HD) to open it.
    Open the Users folder, and then open the folder for the person to whom you’re giving a file.
    Open the user’s Public folder, and then drag the file to the Drop Box. To keep a copy of the file for your own use, hold down the Option key while you drag.
    Have a nice day,
    Mario

  • Move outlook folders from one mac to another

    I have two macbook pros and have imported all inbox & sent emails to my new mac, but somehow managed not to get the folders I created in my Inbox migrated. Any advice from those who've been through this? Thanks in advance.

    Some possible options in no particular order:
    (1) Copy the folders to a SUB Thumb Drive.
    (2) Use Dropbox
    (3) If your Macs are compatible with AirDrop see list:
    MacBook Pro (Late 2008 or newer)
    MacBook Air (Late 2010 or newer)
    MacBook (Late 2008 or newer)
    iMac (Early 2009 or newer)
    Mac Mini (Mid 2010 or newer)
    Mac Pro (Early 2009 with AirPort Extreme card, or Mid 2010)
    Activate AirDrop on both Macs to Move/Copy your Mail Folders.

Maybe you are looking for

  • Lenovo K1 1304 Tablet - Micro HDMI to DVI No Signal

    Hi, I'm having a problem here. I want to connect my Lenovo K1 tablet to a TV or monitor with DVI input using HDMI cable and HDMI to DVI Adapter. This should work perfectly fine since both hdmi and dvi are backwards compatible with each other and I've

  • ITunes stops downloading mid-process

    Hi everyone, Got my new 60GB today. It took a really long time to set up, but now I've just about got it with one problem. Yes, the computer recognizes the iPod after a few seconds of it being plugged in, and then it starts the syncing process. Howev

  • Using JAAS in JSP

    Hello Everyone, I am new to java and I am trying to get a jaas implementation completed. I am trying to create a jsp that will accept the username and password and then pass it on the jaas provider. Has anyone had a success with a jaas implementation

  • Compiling java classes into dll

    Hi, Just trying to find out is there anyway I can compile the java classes into dll? If I am to use JNI and C++, will the dll compiled be able to work well in a platform that does not have JVM? Thank you.

  • How do I download iTunes to Windows Media Player

    How do I dowload iTunes to Windows Media Player