IWeb won't publish--am just trying to post a photo page

I've been publishing my website for years now and all of a sudden I'm getting a 'An Unknown Error Has Occurred' when it's trying to publish the new page of photos I just added.  I've encountered lots of errors over time and know what most of them mean, but this one doesn't seem to be any kind of server or system issue--it seems there's a problem with the page of photos I'm trying to add.  I have rebuilt that page a few times now (in the same way I've always done it) and nothing seems to be working.  Can it be a problem with one of the photos I've added?  What could be causing this?  The other pages of my website (including photo pages) seem like they aren't the problem--the issues always arises when it comes to the new page I've added.  I've been at this for 2 days now. Any ideas? Thanks much!

Not sure--I believe MobileMe.  I've got a GoDaddy domain address that automatically forwards to my .mac account. 

Similar Messages

  • How do I use iweb 08 to publish to "just host"

    how do I use iweb 08 to publish to "just host"

    See this page for info about using FTP...
    http://www.iwebformusicians.com/Search-Engine-Optimization/Upload.html
    Make sure you upload both the folder produced by iWeb and the external index.html file to the root folder on the server.
    If you are not sure about which folder is the root, ask you hosting services tech support.
    If you have a domain name, contact your registrar to get it to point to the location of your files.

  • I am just trying to restore my photos from my pc to my phone that i have backed up already on my icloud but do not know how to do this?

    I am just trying to restore my photos from my pc to my phone that i have backed up already on my icloud but do not know how to do this on my iphone 6 ios 8.3

    If the iPhone is still working and the photos are in the Camera Roll (i.e., taken on the iPhone) then, when you connect the iPhone to your PC, it should be recognized as a Camera and Windows should start AutoPlay.
    See this http://windows.microsoft.com/en-us/windows/get-pictures-camera-computer#1TC=wind ows-7

  • Exception when trying to post to a page

    In NetD we created and submitted a form with JavaScript.
    The form looked something like this
    <FORM ACTION=pgXYZ METHOD=POST>
    <INPUT TYPE=hidden NAME=SPIDERSESSION VALUE=12345>
    </FORM>
    So now in Jato, we're trying to do the exact same thing,
    except that instead of SPIDERSESSION, we use the three Jato
    variables. Now the form is like this:
    <FORM ACTION=pgXYZ METHOD=POST>
    <INPUT TYPE=hidden NAME=GXHC_GX_jst VALUE=12345>
    <INPUT TYPE=hidden NAME=GXHC_gx_session_id_ VALUE=12345>
    <INPUT TYPE=hidden NAME=pageAttributes VALUE=12345>
    </FORM>
    Notice we're not submitting to a handler, but just to the page itself.
    When we do this, we get an exception:
    [02/Oct/2001 16:29:59:4] error: Exception: SERVLET-execution_failed:
    Error in executing servlet portalServlet:
    javax.servlet.ServletException: The request was not be handled by the
    specified handler
    Exception Stack Trace:
    javax.servlet.ServletException: The request was not be handled by the
    specified handler^M
    at
    com.putnaminvestments.common.jato.ApplicationServletBase.dispatchReque
    st(ApplicationServletBase.java:668)^M
    at
    com.putnaminvestments.common.jato.ApplicationServletBase.processReques
    t(ApplicationServletBase.java:428)^M
    at
    com.putnaminvestments.common.jato.ApplicationServletBase.doPost(Applic
    ationServletBase.java:296)^M
    at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:772)^M
    at
    com.putnaminvestments.bp.bpServletBase.service(bpServletBase.java:139)
    ^M
    at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:865)^M
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)^M
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unknow
    n Source)^M
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)^M
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)^M
    at com.kivasoft.thread.ThreadBasic.run(Native Method)^M
    at java.lang.Thread.run(Thread.java:479)^M
    So what are we missing??

    Thanks Kostas, good answer.
    Todd
    ----- Original Message -----
    From: "Kostas Morfis" <kmorfis@i...>
    Sent: Tuesday, October 02, 2001 4:31 PM
    Subject: RE: [iPlanet-JATO] Exception when trying to post to a page
    Hi Mark
    You are trying to submit to a view bean using java script right ?
    Notice we're not submitting to a handler, but just to the page itself.You are actually submitting the request to your JATO selvlet base, is that
    you intention ?
    The exception is being thrown because there is no request handler found.
    If you are trying invoke a handleBtnXXXmethod then your form action would
    look something like,
    <form method="post" action="../myServlet/pgMyPage?pgMypage.btnMyButton=">
    This adds to the request an appropriate handler as a parameter. Another
    option could be to add a hidden field
    with the same name as your button.
    Attempting to post the form without specifying a request handler will not
    work eg:
    <form method="post" action="../myServlet/pgMyPage">
    This throws a ServletException("The request was not be handled by the
    specified handler")
    because you are doing a post to ViewBean from a form which implies youwant
    to handle some kind web action.
    The way JATO enforces this is to check for the prescence of pageAttributes
    in the request (implemented using hidden fields)
    which you have in your form.
    Kostas
    -----Original Message-----
    From: Mark_Dubinsky@p... [mailto:<a href="/group/SunONE-JATO/post?protectID=174166091163159191130171186101229144026098131198043123114199021239115076086020224">Mark_Dubinsky@p...</a>]
    Sent: Tuesday, October 02, 2001 10:04 PM
    Subject: [iPlanet-JATO] Exception when trying to post to a page
    In NetD we created and submitted a form with JavaScript.
    The form looked something like this
    <FORM ACTION=pgXYZ METHOD=POST>
    <INPUT TYPE=hidden NAME=SPIDERSESSION VALUE=12345>
    </FORM>
    So now in Jato, we're trying to do the exact same thing,
    except that instead of SPIDERSESSION, we use the three Jato
    variables. Now the form is like this:
    <FORM ACTION=pgXYZ METHOD=POST>
    <INPUT TYPE=hidden NAME=GXHC_GX_jst VALUE=12345>
    <INPUT TYPE=hidden NAME=GXHC_gx_session_id_ VALUE=12345>
    <INPUT TYPE=hidden NAME=pageAttributes VALUE=12345>
    </FORM>
    Notice we're not submitting to a handler, but just to the page itself.
    When we do this, we get an exception:
    [02/Oct/2001 16:29:59:4] error: Exception: SERVLET-execution_failed:
    Error in executing servlet portalServlet:
    javax.servlet.ServletException: The request was not be handled by the
    specified handler
    Exception Stack Trace:
    javax.servlet.ServletException: The request was not be handled by the
    specified handler^M
    at
    com.putnaminvestments.common.jato.ApplicationServletBase.dispatchReque
    st(ApplicationServletBase.java:668)^M
    at
    com.putnaminvestments.common.jato.ApplicationServletBase.processReques
    t(ApplicationServletBase.java:428)^M
    at
    com.putnaminvestments.common.jato.ApplicationServletBase.doPost(Applic
    ationServletBase.java:296)^M
    at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:772)^M
    at
    com.putnaminvestments.bp.bpServletBase.service(bpServletBase.java:139)
    ^M
    at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:865)^M
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)^M
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unknow
    n Source)^M
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)^M
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)^M
    at com.kivasoft.thread.ThreadBasic.run(Native Method)^M
    at java.lang.Thread.run(Thread.java:479)^M
    So what are we missing??
    [email protected]
    [Non-text portions of this message have been removed]
    [email protected]

  • IWeb won't Publish, just crashes.

    iWeb will not publish to .Mac. After pressing publish, the program signs into .mac and then proceeds to create the web pages. Once all the pages are created circles form next to their consecutive sites. These usually fill up like a clock showing the site being uploaded. However, ifor the past few days nothing happens once the circles appear. Then after a few minutes iWeb crashes. Also, during this time my whole computer freezes. iTunes will stop playing until the iWeb crash is complete. This has happened every time I have tried to publish over the past few days. Just last week I was able to publish without any problems.
    I think it is a problem with .mac because I am able to publish to a folder without any problems.
    I have repaired permissions over and over again...
    The only thing new I added to my mac since my last time I publish something in iWeb was the trial version of File Maker's Bento.
    Here is the error message I get from the crash.
    Parent Process: launchd [82]
    Date/Time: 2008-01-14 16:57:18.418 -0500
    OS Version: Mac OS X 10.5.1 (9B18)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 14

    I did not want to upgrade to leopard, but I had to. At the law school I go to the exam software only uses windows. I waited until the last minute to instal XP and by then you had to have leopard to use boot camp. Leopard has a lot of nice ideas. You cannot really call them features yet because most of them don't work. Notes in mail is a great idea... But, once I started using it heavily, it went crazy and started erasing all my to do's, duplicating notes like crazy, or something else. I just gave up... The only really nice feature about leopard is Preview and the way it allows you to edit PDFs. I suppose screen sharing is pretty cool too and seems to work okay. However, everyone is so competitive in law school no one wants to "share."
    My wife's macbook hasn't fared to well with leopard either.

  • Iweb won't publish for me???

    Hi all,
    I have published successfully a couple of times in the past and now for some reason, it won't publish at all. I tried starting the idisk sync option in the system pref's but it won't start and and error message comes up saying that i need to check my username and password but i'm already logged in? I read another post by Tom where he said to do a few things in the idisk pref's but it won't let me in to the idisk folder either and a message comes up saying my .mac membership is not set up but yet i just logged in before that......very confused! If anyone could advise me that would be great.
    Thanks,
    Dave.

    Hi Jeannie,
    Spoke to apple support. My site is now publishing again!!
    Please follow the instructions below as this is what i did and it worked. It has to do with resetting your .mac preferences and also your keychain.
    1) Click the Apple at the top left and select System Preferences
    2) In the new window select the .Mac (in the internet and network section)
    3) Click the "Sign Out" option
    4) In the member name and password boxes, enter random characters (Numbers and letters) and hit the sign in button, this will say the log in is invalid
    5) Now, enter your proper member name (do not [email protected], just your user name only)and then enter your password and sign in.
    6) Open iWeb and attempt to publish your site
    Let me know how you get on.
    Dave.

  • IWeb won't publish my website

    Hi, very frustrated. Have spent two days designing my iWeb website, then when I finally click the 'Publish' icon, I get "Preparing to Publish..."
    Then...
    "An error occurred while publishing file “/Web/Sites/iWeb/Site”."
    GREAT. But iWeb won't tell me WHAT the error is, or what I need to do to try and FIX the problem! And I thought Apple and the iWeb software were supposedly so intuitive, easy and hassle-free...
    Any ideas appreciated. Many, many thanks.
    Frustrated in London
    G4 867 Dual processor Silver   Mac OS X (10.4.8)  

    Thanks for the quick response. I've read Heaton's
    suggestions and tried publishing to a folder. Worked
    fine. Does this mean the fault lies with .Mac, or
    me/my Mac?
    Adrian...
    This is good news. The fact that you can publish to a folder means that iWeb is not encountering any troubles with your website... The error message that it is generating just lets you know where iWeb is encountering it's "internal error"...not indicating that there is a problem with that particular page, etc.
    What you have to understand is that iWeb is a pretty "dumb" program. I mean, it's great...it lets you design pretty fantastic pages and all, but when it uploads to .Mac it is sort of at the mercy of the traffic on the Internet as a whole. And there is probably some programming in iWeb that says, okay, after you send a file to .Mac, this is how long you should wait for the confirmation. If network conditions are slower or fluctuating, that confirmation may not get to iWeb in a timely manner and iWeb reports out this error message....which is basically a timeout message. iWeb has to draw the line somewhere, I guess.
    The best advice that I can give to you then is to keep trying....different times of the day, different internet connections, wired connections instead of wireless connections, etc.

  • IWeb won't publish... HELP :)

    Hey everyone. Everytime I try to publish from iWeb to my .Mac account it will only go so far. It will error out saying "An error occurred while publishing file 'x.mov'." Where x is a different file each time, it could also be many other types of files.
    I have restarted the computer, and shut down iWeb and then brought it back up again, however it still won't publish all the way.
    Has anyone seen this yet?
    Is there a fix?
    Thank you!

    Just saw the other thred. :S It did say that a lot of other people are having this issue. I think I'll call apple support and see what they know about this issue.

  • Publishing error - iweb won't publish my site

    I cannot get iweb 08 to publish my site. I get this error "Publishing error iWeb couldn’t connect to .Mac. Make sure your Internet connection works and try again." However, my iDisk updates just fine, so I must be connecting to .mac, right? Also, when I go to mac.com I'm able to sign in fine. Any suggestions? Thanks in advance.

    Thanks. I tried that and it didn't work. It seems that the problem was caused by a quicktime video being too large. I re-rendered the video to a smaller size and it published just fine. Thanks for your suggestion. I appreciate it.

  • Why iweb won't publish to my mobile me?

    I'm trying to update my iWeb that used to publish to mobile me... I haven't posted for a while (months) and now it won't publish... I click on the button, but it never publishes... Any ideas as to how to fix?  I use godaddy.com for my site (www.peterspals.com) and it's worked in the past... Can't figure it out!

    I use godaddy.com for my site (www.peterspals.com) and it's worked in the past...
    No you don't. You use masquarading.
    This is your website :
    http://web.me.com/donomorrison6/Peters_Pals/For_Peter_-_Fighting_Diabetes/For_Pe ter_-_Fighting_Diabetes.html
    And it's last update : <meta name="iWeb-Build" content="local-build-20100729" />

  • IWeb won't publish changes

    I made changes to my first page and I've tried everything (I think) to get the new page up on .Mac. Emptied cache, viewed in Safari, IE & Firefox, deleted my entire site from .mac. I've tried changing the linked buttons and publishing to .mac. I've tried publishing all to .mac.
    I do have the site published on a separate server but need this link operating properly. Could there somehow be a conflict with the pages on another server? At any rate I've deleted every old file I can find on my mac, on .mac, on my other server...
    Of course this happened about 20 minutes after announcing the site to prospective clients.
    Thanks for any clues.

    I just tried publishing all and got a error message on one of the files. The time before that it said the .mac server was busy.
    Here's the site:
    http://web.mac.com/patrickfifth/iWeb/EstanciasInArgentinaiweb/EstanciasInArgenti na.html
    It seems the biggest issue is the first page, once it finally seemed to replace the old page with the new it converted the text all weird.
    Thanks for your help.

  • IWeb won't publish my daughter's sites (multiple users; one computer)

    Our daughters have their own computer, so I created two user accounts (one for each). They also each have their own MobileMe account (under a family plan).
    Each has created a site in iWeb. However, I can't get iWeb to upload either site. Each time I click publish, it says "sign in to Mobile Me" and the system preferences window pops up. It seems to log in to the account, automatically. iWeb has a window open saying "Logging in" When I click to return to iWeb, that "logging in" window disappears and nothing else happens. Nothing is uploaded.
    Even if I try again, it says "log in" again. I don't understand why they aren't logged in automatically, all the time, under their username and why iWeb won't upload anything.

    Jim:
    Try the following. Even though it's for a different problem, mail in this case, it has helped others with your problem;
    Source: http://www.macintouch.com/readerreports/mobileme/index.html#d30jul2008
    Page Title: MobileMe
    Date: Wednesday, July 30, 2008 9:06:25 AM
    Jim Oase
    After waiting a day for the rolling restore to happen, I called AppleCare because Apple had sent an email saying my service was back, and it wasn't. I still could send and not receive using Mail.
    *Here is what fixed it*. Go to MobileMe (terrible name) in System Preferences, log out. Then enter a garbage name and password and try to log in. This apparently clears the MobileMe preferences. Then enter your real UserName and PassWord. For me this was lights on.
    I am left wondering how long ago I could have had email had I known this preference reset scheme.
    OT

  • Iweb won't publish to file or iweb...to many images?

    I had no problem publishing small site with 10 images. But when I put in 400 images on 5 pages it stops at around 188 and wont publish the rest. I have deleated the images it hangs on, emptied cash, rebooted, and it still hangs and displays same image....even though it is not on the iweb site anymore....I have just made the move to macs because I was told how solid they were....this is my first project for my photography company on a mac...love the interface and effects....not to sure about how stable iweb is. I was told that 99 images could be put on a page....no size limits of original files were given. I am importing images from iphoto with each image being 20- 40megs in original size....do I need to resize them for iweb to work with them?

    Lou,
    Welcome to the Discussions.
    I had no problem publishing small site with 10 images. But when I put in 400 images on 5 pages it stops at around 188 and wont publish the rest.
    I am importing images from iphoto with each image being 20- 40megs in original size....
    This makes for interesting math regarding the iWeb Domain file. If my math is right, the photos alone will have your native Domain between 5 and 8G. The relationship of the native Domain size (on your HD) and how it affects publishing is still being explored by a lot of us here.
    You see, even though iWeb automatically resizes any photo dropped into the application to 800x600, the app still retains a copy of the original file and keeps it in the Domain file. Dropping images between 20 and 40M will quickly expand this file.
    do I need to resize them for iweb to work with them?
    Normally, technically, the answer to this question would be no. iWeb will "work with" whatever you give it. But in your case, absolutely in my opinion. We have all wondered just how big we could go with a native Domain, and this could be giving us a real good clue. I would also like to see how .Mac is rendering a 20+M file; could you post that url?
    Resize your images to 500x375 prior to bringing them into iWeb. If you really want to host those huge pic files, consider placing them on remote server space and linking to them. People do this all the time. Another thing to remember when using .Mac for this type of file size hosting--your bandwidth allowances will get sucked up pretty fast, depending on visitor traffic.
    Mark

  • Downloaded Lion and Now iWeb Won't Publish New Page or Changes?

    Hello,
    I am having the hardest time getting iWeb now publish info. After updating to Lion iWeb will not publish anything new I do on iWeb. It will act like it is publishing everything but nothing shows up on the net. What do I need to do to fix this?

    Try the following:
    delete the iWeb preference files, com.apple.iWeb.plist and com.apple.iWeb.plist.lockfile, that resides in your Home() /Library/Preferences folder.
    go to your Home()/Library/Caches/com.apple.iWeb folder and delete its contents.
    Click to view full size
    launch iWeb and try again.
    The following will assist you in using iWeb with Lion partidularly if you have more than one domain file:
    In Lion the 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.
    To open your domain file in 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 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

  • IWeb won't publish anymore

    All my menu items are greyed out, my publish button is greyed out. If I try to close the programme, I am warned that iWeb is still publishing, It's now had about 20 hours to publish the same site it once did in 1 hour.
    Is iWeb now useless to me?

    Interesting. I've seen that happen on occasion with Internet Explorer on the PC I have to use at work. I'll publish my changes at home, all looks good on Firefox and Safari, then I go to work, check it out in IE and the changes aren't showing in IE. Even after clearing the cache. However, if I start up Firefox at work, clear the cache in that, all is good--and sometimes, all then looks good in IE.
    Have you tried another browser to see if the changes show up?

Maybe you are looking for

  • Printing IDCS3 File with Placed Grayscale PDF...

    My client has sent me a grayscale PDF which I have imported into an IDCS3 file. When I run this to my imagesetter as a Composite Gray file selected in the Print Dialog box, it will run blank CMY plates as well as the K plate which will have the image

  • Sequence of steps n Material quantity calculation functionality

    Hi, Pls advise the sequence of steps involved in MQC functionality in Master Recipe? Thank You.

  • Using CMIS in Content Presenter to retrieve a DAM image rendition

    Hi, Can anyone please help with how to retrieve a specific rendition (e.g. Web, Preview, Thumbnail) of an image file through a CMIS query in Content Presenter. The image was upload and converted successfully using DAM (Digital Asset Manager) using th

  • BEx Collapses when running a  report

    Hi Experts , I am facing an issue while running a report for a cube which has BWA index built on it. When I run the query the query designer collapses with a error message as "critical Error". This was an existing cube we recently added a field there

  • Bridge CS5 Metadata

    In the EXIF portion of the metadata for images shot with my Nikon D300s DSLR, Exposure Mode is described as "Auto."  Is there a way of equating this description with the actual camera settings I use, because the camera has no exposure settings of "Au