Help! iWeb won't open properly after I updated to Yosemite. No old websites, no workspace- nothing is displayed even when the app is open. HELP!

Help! iWeb won't open properly after I updated to Yosemite. No old websites, no workspace- nothing is displayed even when the app is open. HELP!

To open your domain file in Lion, Mountain Lion or Mavericks or to switch between multiple domain files Cyclosaurus has provided us with the following script that you can make into an Applescript application with AppleScript 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. Note:  you may have to Control (right) - click on the app after uncompressing and select Open due to the Sandboxing feature of OS X.  If you have problems with the app create your own with AppleScript Editor.
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.
NOTE: In Lion and Mountain Lion the Home/Library folder is now invisible. To make it permanently visible in Lion or Mt. Lion enter the following in the Terminal application window: chflags nohidden ~/Library and press the Return key - 10.7: Un-hide the User Library folder.
For Mavericks and Yosemite go to your Home folder and use the View ➙ Show View Options menu to bring the this window:

Similar Messages

  • My macbook wakes up and then goes back to standy even when the lid is open.

    so my macbook turns on and then the screen stays on for like 2 seconds then goes back to standby. it does not shut down because when i wake it up again by pressning any button, it is where i was before. Also when it is in standy even when the lid is on, the standby light blinks as if the lid is closed. i can never use it because the screen only stays on for 2 seconds then turns off going to stand by. does anyone have a similar problem or know how to fix this?
    thanks in advance!

    mkedge wrote:
    it worked for snow leopard.
    now, in Lion, when you open the lid, it automatically detects that you opened and it turns on macbooks display
    That's called progress!

  • Help: Camera No Longer Works Properly after Software Update

    I can no longer use my blackberry camera outdoors. Even if I set the white balance to outdoors, the entire image is white. I used to be able to take brilliant, clear pictures outdoors in direct sunlight. I even used to be able to take pictures of the sky. Now, even on overcast days, all I get is a white mass of nothing.
    I'm really upset because I used to use the camera a lot.
    It's also really slow in moving from the camera app back to the main screen.
    Is there a way to uninstall the software updates or restore the phone to factory (pre update) settings?

    Yes, you can install your older OS (check your carrier website for the download) to your PC.
    Then you can downgrade to the old OS.
    See more here:
    http://www.blackberryfaq.com/index.php/How_do_I_downgrade_the_OS_on_my_BlackBerry%3F
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • HT204406 Since updating to ios6 on my iPhone 4S iTunes Match has not worked. The app stays open for about five seconds before crashing. With ios5 it was great and worth paying for. Now it is utterly useless. Apple, please listen and fix this problem.

    Ever since I updated to ios 6 on my iPhone 4S, iTunes Match has not worked.
    I have been through the process of deleting my iTunes control files, and that worked temporarily, but now I cannot listen to music through the service.
    It shows my artists and albums, then takes forever to access the songs (often more than 10 minutes - and yes, that's using WiFi), more often than not crashing before it gets to that point, then repeatedly crashing when I try to open the Music App, so I can't even access things I've downloaded.
    Has anyone else found a solution?
    Apple, please listen up - I am paying you for the iTunes Match service that is utterly useless. Fix it please.

    After some troubleshooting, I decided to order a new battery.  I replaced the battery and was then able to get it to restore, however--after I restore it and it comes time to restart the phone, it gets stuck and doesn't turn on.
    Sorry, your repair ruined the iPhone.
    She does not have apple care and even though she loved this device, she isn't going to buy another iPhone because of all the problems shes had with this one (it's just over a year old).
    After you ruined the iPhone with DIY, Apple won't touch it anymore. You should have asked before all these had happened.
    I'm an android user myself and I love rooting/flashing new ROMS, so if jailbreaking her phone or doing some kind of super-restore with 3rd party programs might help, I'm all for it-
    Yeah, all Android user can think of is Jailbreaking, read this: http://support.apple.com/kb/HT3743

  • Value of Statement becomes null even when the connection is open

    my small program deals with jdbc during which i met with this strange situation.
    i want the value assigned to an instance of Statement (say 'st') for future use. So i declared st' as a class variable. and the variable is assigned with a value inside try-catch block which is inside the constructor. But when i tried to access it from outside it seems to be null. i ve made it clear by giving two print statements INSIDE and OUTSIDE the try-catch block. More over u can notice that the
    value of an integer variable remains unaltered INSIDE and OUTSIDE the try-catch block. Wats wrong with my coding? Is there anything
    special regarding the 'st' variable which is a reference of Statement interface. BUT WHEN THE DATABASE WAS MS Access, THE
    VALUE OF 'st' WAS EXACTLY THE SAME INSIDE AND OUTSIDE THE try-catch BLOCK(i tried it also by making appropriate changes in the jdbc part).
    the output in both the situation is copied here.
    please correct me.......any help welcomed.
    my program
    import java.sql.*;
    public class MyStatement
         Connection con;
         Statement st;
         ResultSet rs;
         int test=0;
    public MyStatement()
    try
                             Class.forName("com.mysql.jdbc.Driver").newInstance();
    Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/mysql", "root", "passes");
    Statement st = conn.createStatement();
    test=111;
    System.out.println("value of statement INSIDE try-catch block: "+st);
    System.out.println("value of test INSIDE try-catch block: "+test);
    catch (Exception e){System.out.println("sql "+e);}
    System.out.println("value of statement OUTSIDE try-catch block: "+st);
    System.out.println("value of test OUTSIDE try-catch block: "+test);
    public static void main(String args[])
    new MyStatement();
    }

    Try this:
    public class MyStatement {
        Connection conn;
        Statement st;
        ResultSet rs;
        int test = 0;
        public MyStatement() {
            try {
                Class.forName("com.mysql.jdbc.Driver").newInstance();
                conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/mysql", "root", "passes");
                st = conn.createStatement();
                test = 111;
                System.out.println("value of statement INSIDE try-catch block: " + st);
                System.out.println("value of test INSIDE try-catch block: " + test);
            } catch (Exception e) {
                System.out.println("sql " + e);
            System.out.println("value of statement OUTSIDE try-catch block: " + st);
            System.out.println("value of test OUTSIDE try-catch block: " + test);
        public static void main(String[] args) {
            new MyStatement();
    }

  • FYI: Push only works when the apps are open (in the background)

    Hi fellows,
    I have made a rather annoying discovery. Emails are being pushed, provided the app runs in the background. In Mobile Me times this was not necessary.
    I think you should know that before wasting your time.
    Cheers,
    Phillip

    Close All Open Apps... Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...

  • Safari won't open properly after Lion update.

    After updating to Lion, Safari will not load any pages. It begins to load a page and goes into an endless loop. No crash, so I can't generate any crash report. I don't see a way to reinstall Safari. How can I get it working again?

    First
    Remove unwanted adware that displays pop-up ads and graphics on your Mac
    Next try
    Adwaremedic: Removes all known adware from your Mac
    If you can't download it since the malware is preventing it then see:
    https://discussions.apple.com/docs/DOC-7792

  • Is there a way to set the iPad Mail app to only get email manually, not automatically when the app is opened?

    I usually don't use my iPad Mail app to check my email, but sometimes I go into the Mail app just to send a test email or check an attachment in the Sent folder or some such, and every time I enter the app, Mail checks for new email. Which means it ends up downloading five hundred emails or so if I haven't been to the app in a while. Annoying! I haven't been able to find a setting that will stop Mail from checking for new Mail when I go into the app; is there such a setting?

    You can turn mail off in the settings but then you can't use it for anything, including the "test" that you want to perform.
    Settings>Mail, Contacts, Calendars>Account Name>Mail>Off. That totally turns off the mail account.
    As long as mail is turned on and you launch the app, it will look for an download new mail.

  • My cousin told me there was a way to get free apps and that he could do it but what he really did was try to refund all my apps, the apps are gone from the history but no money has come back for me to even get the apps back, please help.

    My cousin told me there was a way to get free apps and that he could do it but what he really did was try to refund all my apps, the apps are gone from the history but no money has come back for me to even get the apps back, is this permanent?

    Yup!!
    Got what you deserved!
    Do not try and rip off or steal from people or companies.
    You have good cousin, there!(sarcasm)

  • Updates tab won't load in the app store.. help please!

    Recently updated my iPhone 4s to iOS 6.1 and I have apps to update but my updates tab in the app store won't load!
    I've tried everything I can, restarting my phone, turning on and off wifi, crossing the app and opening it again but none have worked so far!

    Same problem here, I've tried everything and nothing is working.
    Very very disappointed.

  • The premier timeline won't redraw properly after zooming.

    the premier timeline won't redraw properly after zooming.
    this seems to happen suddenly to random timelines, I can have other timelines in the same project behave perfectly but suddenly a timeline becomes cursed and then I'm stuck doing a long workaround to fix it
    here's my workflow to get to where I am. 
    I'm bringing in PluralEyes xml's of DSLR footage and field audio,
    I'm working off the replaced audio sequences, and then edit the audio in Audition to do tasks like normalizing, hum removal etc.
    back to premier, edit, grfx, output.
    Sometimes a timeline that I've previously finished a roughcut of just gets corrupted when I go back to it. Ive got it back to behaving normally by deleting all the rendered and replaced Audition audio, and then recutting the clips back into place and effectively rebuilding my sequence.  Now these are a series of 2 minute interviews. If this was a major long form edit I'd be completely fu**ed.
    About my setup. Late 2013 Mac Pro (Trashcan), 12 cores, 64GB Ram, Mavericks. I use spaces and have 5 virtual desktops typically (one for each app, PS, Pr, Ae, Chrome and other bulls***, one spare for random bulls***)
    This is super s*** and I'm on deadline. 
    Please help.

    Hi Scott,
    I've been seeing an issue (for quite some time now) where if I'm working a job on two different edit systems (usually with duplicate media or using a shuttle drive for mobile editing) that when I open the project on the "other" system the timeline won't redraw properly and looks like the attached image. The edit is there and the system will play the timeline but it's unusable as you can't work.
    Yes, I have seen issues here in support when users transport their projects from one system to another via a portable hard drive. It's very weird behavior and I'm investigating the issue. What you might try is a different method of transporting those projects, like a different drive, etc.
    I will add this issue to my report. Feel free to file a bug report here.
    Thanks,
    Kevin

  • Settings won't open up after ios7 update

    I recently updated my ipad to ios 7, took me two days to actually log into the ipad and now i can do everything except load up settings, this means i cannot get wifi so my ipad is vertually useless and there is nothing i can do, when i try and open it it merely freezes. Help me! I have tried closing, turning off and resetting the ipad so far.

    You have two options ...try first press both home&power buttons until u see apple logo com up and then release it,data is not effected...if doesnt work reboot ur router take off both cables from back from ur router internet/power and put back after 15 secs or more ...check if ok .

  • I have iMovie application open, but the iMovie application keeps disappearing off the right hand side of the screen and and I can not see it, even though the application is open..help, please!

    I have iMovie application open, but the iMovie application keeps disappearing off the right hand side of the screen and and I can not see it, even though the application is open..help, please!

    Thanks. I don't know why it wouldn't just go back there when I tried putting it back? I didn't change anything, so I assumed the new "default" was over on the left. Glad it was a simple solution after all.

  • HT1222 iPhone 5s won't turn on after this update. Battery was at 98%, tried holding sleep & home button while plugged in, no good. Any ideas?

    iPhone 5s won't turn on after this update. Battery was at 98%, tried holding sleep & home button while plugged in, no good. Any ideas?

    P.S. I just noticed; when I hold the power and home button at the same time while it's plugged in as if I was going to restart it, my computer acts as if I'd plugged it in again (it makes the USB notification sound, itunes opens up again, I get the same "your iphone is in recovery mode" message, etc.), but that's the only response I've been able to get from pressing anything on the iphone. thanks again.

  • I need help, i can't download free applications in App store. they answer me "your request cannot be processed Error code:1009". and after they said "we could not complete your request. There was an error in the App Store. Please try again later (nul

    i need help, i can't download free applications in App store. they answer me "your request cannot be processed Error code:1009".
    and after they said "we could not complete your request. There was an error in the App Store. Please try again later (null)".
    COMPUTER DETAILS: MacBook Pro 13-inch, Mid 2012 OS X Version 10.9.5; Processor 2,5GHz Intel Core i5; Memory 4 Go 1600 MHz DDR3.
    Thanks beforehand!!!

    Error
    what is error code 1009?

Maybe you are looking for

  • Find open and close smart quotes

    Dear scripter, Here I am trying find whether all the open double smart quotes(") are closed with close double smart quotes("). Here is my small work to find how many open and close quotes. myopenqu=app.activeDocument.search("^{", false, false, "^{");

  • Content management in KM - Read

    Dear Sir, We use the content Management in EP 6.0 SP14 , when I setting for the user in "Read" status. Is it prevent the use to save target as or print to? Please kindly advice. Thank you and best regards, Vimol

  • Itunes says it cannot open because of my audio config.

    When I try to open Itunes, it says "Itunes cannot run because it has detected a problem with your audio configuration." What is wrong and what can I do to fix it?

  • Web service scenario -- message stuck in receiver PI engine

    Hello expert I have scenario HTTP --> PI --> WS (ABAP backend). I have PI 7.1 and the backend is based on NW 7.0 I have configured the scenario in ID with receiver agreement of ws adapter. In the backend, I've generated the server proxy based on the

  • Help: How to send response to user witch executed the workitem

    Hi friends, I want to execute MIGO transaction by workflow. I developed it by BAPI but, I'm using the PR_NAME parameter (on BAPI_GOODSMVT_CREATE HEADER) so it will be stored as the user witch executed MIGO. I'm trying to send the follow variable: &_W