Two sites turned to one after 10.8

Under 10.6, I successfully authored two separate iweb sites, example: Domain_ABC.sites2   and  Domain_XYZ.sites2.
After upgrading to 10.8, only one file opens, example: launching file ABC opens site ABC, launching file XYZ now opens site ABC.
Any ideas how I access the second site?
Thanks!

In Lion and Mountain Lion the Home/Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
Lion and Mt. Lion has changed how the iWeb preference file is used by iWeb so we have to use an application like the one below to change domain files with iWeb.
To open your domain file in Lion or Mountain Lion or to switch between multiple domain files Cyclosaurus has provided us with the following script that you can make into an Applescript application with Script Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an application.
do shell script "/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"delay 1
tell application "iWeb" to activate
You can download an already compiled version with this link: iWeb Switch Domain.
Just launch the application, find and select the domain file in your Home/Library/Application Support/iWeb folder that you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
WARNING: iWeb Switch Domain will overwrite an existing Domain.sites2 file if you select to create a new domain in the same folder.  So rename your domain files once they've been created to something other than the default name.
OT

Similar Messages

  • Itunes on two sites, and only one ipod? help please

    have itunes at home (on a mac) and at another location (on a pc) - simple enough, but my library is at home and i have limited tracks at the other venue. but when i plug in the ipod the alternate itunes wants to make it the default "home". my question is am i able to change this to act only as a secondary "hub" as it were, i cant seem to find anything in the pref's to do this.

    hi,
    firstly - thanks alot for the reply, it is good to know there are people willing to help (i tried another forum and got nowhere.)
    secondly - trying to change the preferences on the windows based machine, it does not allow alteration until the ipod is connected, but when i do connect it it asks me to change to it (being the windows pc)the default library - and when i decline the ipod is not connected to itunes. being new to the mac experience (both ipod and computer) i know there is prob an easy way round this but i am afraid i cant see it.
    any chance of an idiots guide?
    thanks for looking and the help so far

  • Having two site on iweb?

    Is it possible to run and publish two sites on one iweb account? I have a laptop and a tower both with iweb and have two different sites on both computers. I was wondering if I can merge the two sites on to one computer with out disrupting either iweb and still be able to publish to two differnt .mac accounts. Is this possible? Any help is greatly appreciated!

    martinic283:
    Yes, you can publish to multiple dotMac accounts. You just need to set your account up on your Mac before publishing in the .Mac Preference pane and log on.
    As far as the two different sites, you can do that but you'll have to rename one of the Domain.sites files t o something else and then use iWebSites to manage the two. There's no way to merge the two sites into one file. But iWebSites makes it so very easy to have multiple sites in separate files and move between them. It's like iPhoto Library Manager for iWeb. I have a number of individual sites that I manage with it.
    Do you Twango?

  • Consolidate two sites from two machines

    I have two sites under the same .Mac account. They were set up using iWeb on two different machines. Is there a way to consolidate the two sites on to one machine?
    Thanks,
    Ken

    I don't you can do that. Each of your machine has its own '~/Library/Application Support/iWeb/Domain.sites'
    You may keep both of them on one machine, and use 'Domains Juggler' to work on one at a time.
    You can find 'Domains Juggler' here

  • Two sites one problem

    Hi all,
    I have two sites I have published using a domain name I purchased. Site is hosted by mobileme. My first site is my companies website. The second site I created is for a client both get published to mobileme. The problem I am having now is that when you type my companies name www.trainbetterllc.com instead of being directed to the business site you get sent to the site I set up for my client which is password protected. I can no longer tell people to go to www.trainbetterllc.com because they will be taken to this password protected site. Instead I now must direct people to www.trainbetterllc.com/trainbetter_llc/train_betterllc/html. Is there a solution to this so I don't have to give the long drawn out address?

    Thank you it appears your solution has worked. One thing I forgot to mention in my earlier post is that I use an app called iwebsites to switch between editing the two websites; initially I was concerned that this might be responsible, but after going back into iweb and going to my main business website and clicking publish all it appears that just typing in www.trainbetterllc.com directs me to the correct website. Thanks again for sharing you knowledge.

  • Using two sites - setting one up with separate domain?

    If I have two sites created in iWeb can I set up only one of the sites under a purchased domain name or are both sites linked to the domain name? Not sure if that even makes sense...
    I have set up a site for a home business (web.me.com/[username]) and want to create another unrelated site for another purpose. I want to be able to use another domain name (www.[sitename].com) for the second site I want to create using iWeb.
    Please help... I'm new with all of this! : )

    Welcome to the Apple Discussions.
    Using Domain Names with Multiple Sites in One MobileMe Account
    There can be only one site using CNAME forwarding in a MMe Account. It must be the site that's at the top of the list of sites in iWeb.
    Click to view full size
    The other sites must use URL forwarding where the domain name is pointed at http://web.me.com/YourMMe_Account_Name/SiteName. You will see your full MMe URL but the domain name will get you there.
    If you use domain name masking all you will see in the URL window of every page is http://www.yourdomainname.com. The downside to this is that visitors can only bookmark the entry/first page of the site and can only enter the site at that page. This may or may not be a problem for your site.
    However, what's in the URL field is not really that important because the short domain name will get visitors to your site. After that they can bookmark the page they are interested in and don't have to memorize its longer URL.
    If you use separate domain files for each account then you cannot use CNAME forwarding because it will point to the last published site and that may not be one you want.
    OT

  • Can we perform two actions with one button with two clicks one after other?

    Sir,
    can we perform two actions with one button with two clicks one after other?
    I want that when I click an Add Button first time it add data to the database and when I click again this button it clear the form data to empty fields.
    Regards
    Tanvir

    In code it should be easy.
    The following code adds a button called butman with a text "ADD".
    It then registers a listener that will be called if the button is clicked.
    This listener then calls the runAddData method if you clicked on butman while it contained the "ADD" text and it will call the runClearData method otherwise.
    Therefore it will swap the button's functionality between ADD and CLEAR on every click.
    final Button butman = new Button("ADD");
    butman.setOnAction(new EventHandler<ActionEvent>() {
              @Override
              public void handle(ActionEvent t) {
                        if (butman.getText().equals("ADD")) {
                                  butman.setText("CLEAR");
                                  runAddData();
                        } else {
                                  butman.setText("ADD");
                                  runClearData();
                        } // END IF-THEN
              }});I hope this is what you wanted.
    Some extra food for thought.
    You might want to run the ADD and CLEAR methods in their own threads so that it can run in the back ground, without slowing down your user interface.
    I also like to rather reuse one button for multiple functionality in stead of making an application with hundreds of nodes only used rarely with masses of code to show and hide them if needed.

  • How do i play two sound file one after another

    Hi All,
    How do i play two sound file one after another using single AudioClip Component?.
    Advance in thanks
    Manivel

    AudioClip gives you very little control over what happens to the sound, it also isn't capable of playing long clips or waiting until a clip ends. It will play multiple clips over top of each other.
    To do what you want you should use the facilities of javax.sound. Here's a post with an example: http://forum.java.sun.com/thread.jspa?forumID=513&threadID=450768
    There is also a tutorial, but its example fails for long clips.

  • Why am I getting an error when I place two OAM files one after the other in different pages?

    Why am I getting an error when I place two OAM files one after the other in different pages? They do not load or play correctly.  They are both configured to play automatically with a .125 second delay and both have a white rectangle "poster" over for a hidden effect.

    Thanks for the idea, Scott! I initially tried your idea, but my OAM files were still not loading correctly.  I tried other combinations of OAM files, and it seems to work fine.
    Back to my original OAM files: I made sure that my elements in my Edge Animate project had different names. I originally copied parts of some elements from one to another, and I think it was confusing to DPS to read it. 

  • Hi, everyone, how to print two smartforms one after one?

    first, merry christmas to you all.
    the question is that I want to call two smartforms sf1 and sf2, how to use one print program(I use print program to call them) or some other ways to call sf1 and after call sf1 I need to call sf2, finally they are printed one after one! thank you in advance!

    HI,
         You have to call the smartforms one after the other and you have to avoid the pop up that comes while printing the smartforms

  • Two Sites - 1 with .mac and one with another hosted provider

    Hi All,
    I have two sites in iWEB08, the second of which I want to publish to a folder. When I choose this option, it publishes both to a folder. Is there a way just to do the site I want?
    Thanks
    Rich

    Hi,
    as far as I know there is no way to publish just one of the two sites to a folder... You will have to publish both of them and then delete one of them and upload the other. I would like a feature to able to publish just one of the sites too (I have five sites and always have to publish them all if I changed one of them... it's a matter of time...)
    So please use the link below and ask for this feature to be added to iWeb (if they get a lot of requests they might add it)
    http://www.apple.com/feedback/iweb.html
    Thanks, regards
    -Cédric-

  • How to play two presentations from the DMP one after another and looping

    Can anyone help me on this.I want to play two presenations one after another and looping from the DMP.

    Semuhtu,
    The easiest solution for looping two or more DMD presentations
    is to create a nested playlist within DMD.  You simply
    create a master presentation and add a playlist to this
    presentation.  Add the desired presentations to this playlist
    and then schedule or send the Action to the DMP(s) to play
    the Master Presentation.  The 2 or more child presentations will
    play and loop until you stop it manually.
    Summary of Tasks
    * Using DMD create Presentations (2 or more) that you would like
      to display on the DMP-Display(s).
    * After the presentations are created, you will need to find out
      what the URL addresses are for each presentation. Using the
      "Actions" drop down on the DMM-DMP Manager screen, you select
      a DMP and send the Presentation to the DMP.  Once the DMP displays
      the presentation, access the DMP-DM Web admin page and copy the URL
      address in the "Startup URLs-->Browser" field.   Repeat this process
      for each DMD presentation that you want to loop.
      For example:
      http://dmm.company.com:8080/xTAS-core/appgen/clad/clad_95_.htm
      http://dmm.company.com:8080/xTAS-core/appgen/clad/clad_96_.htm
      and so on...
    * Another parameter or variable that you will need to find out is
      the duration of your DMD presentation(s).  Some Presentations may be
      a slideshow of images and some may contain videos.  Your will need to
      play each presentation on the DMP to determine the duration length of
      each presentation that you will add to the looped playlist. 
    * Create a Master presentation using DMD. In this presentation, you will
      create add a "Playlist" to the presentation by selecting the Playlist
      button-drop down.  Select "All Media Types" and a Playlist object will
      be added to the Master presentation.
      - Double-click on the object to add content
      - Select "Add URL" button in the Playlist Content window.
      - Fill in the required fields (URL Title & Link) in the "Add URL"
        window.  Repeat the process for each presentation that you want
        to add.
      - Set the Duration for each item in the Playlist. Select the Item
        in the list and then DOUBLE-CLICK on the "Planned Duration"
        field and edit the time to desired duration.  Repeat process for
        each item.
      - Save Master Presentation
    * Schedule or use the  "Actions" drop down on the DMM-DMP Manager screen
      send the Master Presentation to the DMP(s).  The Playlist will play and
      Loop after the last item in the Master Playlist.
    If this answers your question, Please take time to mark this
    discussion answered & rate the response.
    Thank You!
    T.

  • Trying to create two login areas for one site

    I'm currently creating two different login areas for the site. One for my client to update content and one as a media/press area for downloads. Both areas work fine but it seems I can only do one login area because even if I use a different Connection script, one login area overtakes the other and you
    're stuck with one setup instead of two. How can I work this so each area has its' own separate login area?

    Instead of having two login forms, have one login form and utilize the user level controls. You will need to go to the login settings page and set/use the Level field on the database tab and then configure the user levels on the user levels tab.
    You simply route users to different subdirectories and then secure the files for those two user directories using different user level permissions.
    This removes the needs to maintain multiple connection files.
    That said, do your two different login forms have different names? Different ids? Different targets/actions?

  • New iPad Air 2 with a persisting blank screen. Support site suggests a restore after turning off 'Find my iPhone' on the device. How can I do this with a blank screen?

    New iPad Air 2 (December 2014) with a persisting blank screen. Support site suggests a restore after turning off 'Find my iPhone' on the device. How can I do this with a blank screen?

    Thanks JimHdk,
    After a little more searching across various online resources I was able to cure it by holding down the home button and the on/off button for 10 seconds to restart it and it all came back with a clear screen.

  • Run two different Tcodes "KKS2" then "KO88" one after the other

    Hi Abapers,
    I want to run two different Tcodes "KKS2" then "KO88" one after the other.  The variance is calculated using Tcode KKS2, after the successful calculation of variance the KO88 Tcode needs to be run for the settlement of materials.
    How do I run both the Tcodes in a single program using BDC. The customer needs a Tcode for this and a selection screen for production order number as input.
    Shall I use session bdc or call transaction?
    I also want to display errors of the both the Tcodes in a single log.
    Regards,
    Anuradha.

    Hi ,
           For  uploading datas for Two transaction using a single program u have to go for Batch input session . Its not feasible with call transaction . Create a session using open_session and then with in it you have to manipulate screen number and screen fields for each of them and you have to ues two insert statement . Try using commit and wait after first insert of the Transaction . And then go for the second .And then use bdc_close_session to close the session.So that only one session will be created for both transaction . You could easily get the screen field name and number by creating two call transaction program and copy from them .                                                                               
    With Regards,
                                                                                    M.Sreeram

Maybe you are looking for