Missing File Messages / iWeb adding -1 to files names

I am trying to create a website using iWeb '09 but I am have an issue with missing file messages. I created the site without an issue. Opened it up the following day and immediately received missing file messages for almost all pages on the site. iWeb appends a -1 to valid file names ex: IMG_12345 -> iWeb message = missing file IMG_12345-1. I am also receiving the missing file messages with the template images which are not being used on the website (dragged and dropped my images over template images).
I tried to delete the pages then recreate them but that didn't work either. I also deleted the com.apple.iWeb.plist file (emptied trash) then restarted, held shift while rebooting, changed template to a different template then changed it back...nothing is working.
Does anyone have any other suggestions?

Another thing I noticed; I have two "domain.sites2" files, one in Users >> Folder >> Application Support >> iWeb and the other is in a personal directory. They are both modified today two hours apart. I just opened and closed iWeb and the file in the application support directory shows a modification not the one in the personal directory.
The first five or so times I opened iWeb I had to acknowledge the iWeb welcome screen before it wouldn't come back. It seems that my iWeb may be corrupted and have to be reinstalled?

Similar Messages

  • Missing file name in the sequence

    Hi All,
    I have struck with the problem which is finding the missing file name in the file_name column. This column also have sequence.
    FAX_NAME RECEIVED SENDER FAX_SIZE
    fax000000433.tif 01-JAN-07 redro 10k
    fax000000434.tif 01-JAN-07 redro 10k
    fax000000435.tif 01-JAN-07 redro 10k
    fax000000436.tif 01-JAN-07 redro 10k
    fax000000437.tif 01-JAN-07 redro 10k
                                  One file name missing
    fax000000439.tif 01-JAN-07 redro 10k
    fax000000440.tif 02-JAN-07 redro 10k
    fax000000441.tif 02-JAN-07 redro 10k
    fax000000442.tif 02-JAN-07 redro 10k
    fax000000443.tif 02-JAN-07 redro 10k
    fax000000444.tif 02-JAN-07 redro 10k
    fax000000445.tif 02-JAN-07 redro 10k
    fax000000446.tif 02-JAN-07 redro 10k
    fax000000447.tif 02-JAN-07 redro 10k
    fax000000448.tif 02-JAN-07 redro 10k
    fax000000449.tif 02-JAN-07 redro 10k
    fax000000450.tif 02-JAN-07 redro 10k
    Here i want to retrive the Faxname(fax000000438) which is missing
    The output like..
    I've Designed one BIRT rptdesign for this this in the bellow formate..
    FAX_NAME RECEIVED SENDER FAX_SIZE     Missing_Faxes
    I've tried with bellow query but i did't get.
    select Fax_Name digits from(select min(digits) MN from (select translate(s, '0' || translate(s, '1234567890', ' '), '0') digits 7 from (select filename s from received_faxes))) connect by level8 minus select distinct digits from (select translate(s, '0' || translate(s, '1234567890', ' '), '0') digits 10 from (select filename s from received_faxes))
    Could you pls help me..

    This?
    SQL> with t1 as
      2  (select 'fax000000433.tif' nam from dual union
      3  select 'fax000000434.tif' from dual union
      4  select 'fax000000435.tif' from dual union
      5  select 'fax000000436.tif' from dual union
      6  select 'fax000000437.tif' from dual union
      7  select 'fax000000439.tif' from dual union
      8  select 'fax000000440.tif' from dual union
      9  select 'fax000000441.tif' from dual),
    10  t2 as
    11  (select to_number(mid(nam,4,9)) faxno from t1),
    12  t3 as
    13  (select max(faxno) ma, min(faxno) mi from t2)
    14  select (mi+level - 1) faxno from t3 connect by level <= ma - mi + 1
    15  minus
    16  select faxno from t2
    17  ;
         FAXNO
           438
    SQL>

  • Missing file names

    Hi!
    The file names are missing, when I view my "site" (F8).
    What's the reason for that?
    Thanks!
    Niko

    Fair enough - what's OP after, F8 or filenames? Perhaps I
    shouldn't have
    assumed...
    Jo
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:fb1hgp$970$[email protected]..
    > F8 toggles the display of the Files panel, not the
    filenames....
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    > ==================
    >
    >
    > "josie1one" <joleros[nospam]@yahoo.com> wrote in
    message
    > news:fb1glk$8bo$[email protected]..
    >> F8 toggles filenames off and on... try pressing it,
    see if it helps.
    >>
    >> --
    >> Jo
    >>
    >>
    >> "nikipiki" <[email protected]>
    wrote in message
    >> news:fb1d63$4fk$[email protected]..
    >>> Hi!
    >>> The file names are missing, when I view my
    "site" (F8).
    >>> What's the reason for that?
    >>> Thanks!
    >>>
    >>> Niko
    >>>
    >>
    >>
    >
    >

  • Missing file name while receiving AS2 MDN acknowledgement

    We are using BizTalk 2010.
    We send one AS2 package to our TP and our TP send us back 4 Acknowledgement files.
    Most of the acknowledgement files that we receive from the TP contains the ReceivedFileName property which contains the file name, except for the 1st acknowledgement or the MDN, which doesnt contain the file name.
    Our TP has informed us that they do send us the MDN with a file name.
    In our BizTalk 2010 system :
    - We have a One-way receive port, which monitors all the content received from TP.
    - We have defined a CustomPipeline for all inbound AS2 packages (AS2Receive pipeline). In this custom pipeline, in the Execute method, I had looked at all the properties from the base message context. I was not able to find ReceivedFileName, PreservedFileName,
    AS2PayloadContentType properties. I also looked at the InBoundHttpHeaders and couldnt find the file name in there. 
    I heard that BizTalk 2010 has fixed this issue. Where can I find what was fixed? I had looked at the following links, but it didnt help: 
    http://geekswithblogs.net/VishnuTiwariBlog/archive/2010/10/14/as2-integration-between-seeburger-bis-6.0-and-biztalk-server-2009.aspx
    http://www.postseek.com/meta/60dd56c855adc621edd20d64f0b106d5
    Is there any other place, I could look for the file name?
    And what could be reason that, the system is able to retain the file name for all the other acknowledgement, but for Ack1/MDN?
    Or is there a way to look at the raw content with the header send by my TP? (tried using Fiddler / Wireshark)
    Or is there a way to prove, that I indeed not receive any file name?
    Thanks for your help.
    Thanks and Regards, Vikram

    Hi VNSuvarna,
    >>I heard that BizTalk 2010 has fixed this issue. Where can I find what was fixed?
    Here are a series of cumulative update package 6 for BizTalk Server 2010, please check which is available for you. Check out https://support.microsoft.com/en-us/kb/2855367?wa=wsignin1.0 for further information.
    >> Or is there a way to look at the raw content with the header send by my TP? (tried using Fiddler / Wireshark)
    You can also use Fiddler, it captures HTTP(S) traffic and logs it for the user to review.
    Best regards,
    Angie
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Missing file - warning msg ?

    When I open my ibooks author file I get a missing file warning.
    The warning window show the missing file name but no other information.
    How can I find the page where this file is missing and fix the issue?
    thanks in advance
    Rohit

    I found a way to figure this out by accident ... The missing picture file shows up as a "broken giff" similer to web pages.  You just have to go thru the entire file and find the broken giff.  It would be better if the error msg shows a page number.
    Rohit

  • How do I get a list of the missing files?

    I recently filled up my hard drive so I moved my iTunes library to another drive. All went fine but some files were supposedly missing. No problem there I just used the locate feature to find them in there new location.
    My problem is that on locating the last file that was marked with the "!" iTunes told me there is still 106 files missing yet there are no more files marked with the "!"
    Is there anyway I can get iTunes to give me a list of these supposed missing files?
    Thanks

    Macpass,
    I just went through this last weekend.
    I was told iTunes won't produce a list or show you "just" the missing file names.
    The good news is I found a-work-around. Here what I found that worked for me.
    Go to the m"Music" view. Then pick to view "Songs".
    At this point you should see your files ( all types = music, podcasts, movies, etc.) one per line. In the left most column you will see it has no header name.  In that left column you will see the "!" you are looking for. It might not be on the first screen, so page down. I have over 28,000 files.... so it took several page down.. But it went fast and I found them all.
    Hope this works for you!
    Good luck
    Steve

  • SFTP sender to File receiver mapping of file names

    My scenario is: sender channel = SFTP (Seeburger) transferring multiple PDF files to Receiver adapter File (NFS).
    These PDF files need to have the same name as the original files from the sender (3rd party) system.
    Because these files are being processed without an interface, I can't use UDF to help map the file names.
    I've tried using Seeburger's localejbs/Seeburger/AttribMapper to map the names, as follows:
    File (NFS) receiver channel config:
    - ASMA boxes for 'Use Adapter-Specific Message Attributes' and 'File Name' are ticked
    - Module localejbs/Seeburger/AttribMapper is on the first line in the module tab under processing sequence, with module key = AttributeMapper
    - Under Module Configuration: 
      - Module Key = AttributeMapper
      - Parameter Name = http://sap.com/xi/XI/System/File/FileName
      - Parameter Value = @http://seeburger.com/xi/SFTP/dtSubject
    (I haven't entered any attribute module config on the sender side)
    This setup fails on the receiver side with the message 'Delivering the message to the application using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.RetryControlException: Channel stopped by administrative task.' (not very helpful!).  All I can get from that is that it doesn't like my module configuration!
    Can anyone help me understand the correct way to do the file name mapping for my specific scenario?
    Regards,
    Christine

    We've got this working at last!
    The main problem was indeed the missing .sca file from Seeburger:  SeeModuleCollectionPI.sca
    Our Basis team deployed this file this morning.  After a bit of fiddling around with the attribute mapping, my test files were transferred successfully with their original names.
    The config I ended up with is just as described in another forum post for SFTP to FTP, but I'll repeat it in more detail here:
    Sender channel
    Parameters tab:
    Adapter Type = SFTP (Seeburger)
    (sender, transport & message protocol = SFTP)
    Scheduler = x in all appropriate days, with interval = 1 (minimum allowed)
    (rest here is specific to your environment, but I set filename to *.pdf to get all .pdf files from the sender)
    Module tab
    Processing Sequence
    Number  Module Name                                          Type                                          Module Key
    1            localejbs/Seeburger/AttribMapper          Local Enterprise Bean     AttribMapper
    2            localejbs/Seeburger/solution/sftp           Local Enterprise Bean     solutionid
    3            localejbs/CallSapAdapter                   Local Enterprise Bean     exit
    Module Configuration
    Module Key        Parameter Name                                               Parameter Value
    AttribMapper          http://sap.com/xi/XI/System/File/FileName         @http://seeburger.com/xi/common/dtSubject
    Receiver Channel
    Parameters tab:
    Adapter type = File
    (receiver, with transport protocol File System (NFS), etc)
    Target tab:
    Target directory (set to your required PI server directory)
    File Name Schema = * (can be anything, will be ignored)
    Processing tab:
    (your requirements-specific settings - mine were create, write directly, file type binary)
    Advanced tab:
    Under Adapter-Specific Message Attributes (ASMA):
    tick the following:
    Use Adapter-Specific Message Attributes
    Fail If Adapter-Specific Message Attributes Missing
    File Name
    Modules tab:
    Processing Sequence
    Number  Module Name                                          Type                                          Module Key
    1            CallSapAdapter                                       Local Enterprise Bean     0
    (nothing under Module Configuration)
    Thanks to those who kindly took the time to try and help me, your suggestions pointed me at the real problem.
    Christine

  • Help with "Missing Files" message

    My blog has been giving me an error message when I open it: "The following errors occurred when trying to open this document", "Missing file 'Pinstripewelcometile-15.jpg". It's one of the background pinstripe graphics for the "formal" theme that has an "x" and a question mark - it's used on all the entry pages. (http://web.me.com/mikejdunlap/Site/BLOG/Entries/2010/4/27ChocablockCookies.html) I've added new pages and republished, but the "number" of the missing graphic keeps changing every time I open iWeb: "welcomepinstripe15.jpg" etc - I think it started at "_9.jpg". I can't "replace" the file or add them again to my page - since it's a template graphic, rather than my own that I can choose in the media browser. How do I get iWeb to put this background image back in the entry pages? Thanks in advance for any help!

    UPDATE: I restarted my computer and went through the exact same process outlined above and now it looks like it resolved itself; the error message no longer appears after I turn sync back on. I believe everything is working correctly now. Basically, it looks like the solution is to completely reboot your computer.

  • [svn:osmf:] 14059: Adding missing file.

    Revision: 14059
    Revision: 14059
    Author:   [email protected]
    Date:     2010-02-09 06:38:45 -0800 (Tue, 09 Feb 2010)
    Log Message:
    Adding missing file.
    Added Paths:
        osmf/trunk/apps/samples/framework/LayoutSample/src/LayoutSample2.as

    Many thanks for the fast reply.
    I've got a follow up question.
    What will happen if I modify the reconnect Code in the OSMF Netloader Class as recommended and then load multiple third party OSMF plugins,
    which may have included the origin OSMF version of the Netloader class.
    Which one will be used at runtime?
    Thanks in advance!

  • [svn:osmf:] 10670: Adding a missing file.

    Revision: 10670
    Author:   [email protected]
    Date:     2009-09-29 01:44:20 -0700 (Tue, 29 Sep 2009)
    Log Message:
    Adding a missing file.
    Added Paths:
        osmf/trunk/plugins/MASTPluginIntegrationTest/src/org/openvideoplayer/test/mast/loader/
        osmf/trunk/plugins/MASTPluginIntegrationTest/src/org/openvideoplayer/test/mast/loader/Tes tMASTLoader.as

  • [svn:osmf:] 10136: Adding a missing file.

    Revision: 10136
    Author:   [email protected]
    Date:     2009-09-10 15:38:55 -0700 (Thu, 10 Sep 2009)
    Log Message:
    Adding a missing file.
    Added Paths:
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/model/VASTDocument.as

  • [svn:osmf:] 10584: Adding a missing file from that last folder structure refactor.

    Revision: 10584
    Author:   [email protected]
    Date:     2009-09-24 17:19:48 -0700 (Thu, 24 Sep 2009)
    Log Message:
    Adding a missing file from that last folder structure refactor.
    Added Paths:
        osmf/trunk/plugins/akamai/AkamaiBasicStreamingPlugin/AkamaiBasicStreamingPlugin.as

    Hello,
    Welcome to MSDN forum.
    I am afraid that the issue is out of support range of VS General Question forum which mainly discusses
    the usage of Visual Studio IDE such as WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    Because your issue is about ASP.NET web application development, I suggest that you can consult your issue on ASP.NET forum:
    http://forums.asp.net/
     for better solution and support.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • IWeb tells me there is a missing file/document (one I supposed am linked to

    EVERY time I open up iWeb it bring up a screen saying there is a missing file (a document that I guess I've linked to). The problem is that I can't find the post in my blog where I'm supposedly linking to this file.
    I've checked every post in my blog including what is in the archives and I can't find it. I've checked every page (there aren't many) for the website and I can't find any place where I'm linking to this supposed file. Even more frustrating I can't figure out where it thinks I'm expecting this file to be in whatever post is pointing to this file.
    This missing file is NOT a program file. It has to be a document that I'm linking to. Any ideas on how to find it?

    Some Firefox add-ons like DownloadHelper work in the background and wait to download a video until the video has been completely rendered on your screen, so if you try to close Firefox while such an add-on is working, you will get that message.
    If you ever installed an add-on like that and then uninstalled it, you may have residual data in your Firefox profile that is telling Firefox there is still an unfinished download.
    To clear all downloads, from the Firefox menu bar, open
    Tools -> Clear Recent History -> Time Range
    Select Everything for a time range, and only check the box below that for Browsing and Download History.
    This will clear your entire history, so if you have any tabs or windows open that you wish to remember, bookmark those windows and tabs in a temporary bookmark folder before proceeding.
    Please post back and mark this issue as "Solved" if it solved your issue, and if not please post back with further questions.

  • Missing file message

    Hi
    When I work in iweb, on occasion, I will get the following error message:
    missing file cache 55
    missing file cache 54
    missing file 56
    To include missing fonts...add them to fonts folder
    To include missing images add them
    To authorize this computer to play song...
    I don't know exactly what this means I think all the fonts I used are okay, I took them from the font pull down menu on iweb, the photos are okay, and I am not using music. There is a "continue" button which I click and the message goes away. I just want to be sure I am not causing myself any problems later.
    Thanks for any insight or direction.

    If the photos are in your catalog, do not delete them outsid of the Organizer -- highlight the photos in Organizer and use Edit...Remove from catalog and select the "Remove from hard drive" option if that is what you want.
    If you have photos in Organizer that you already deleted, use the same technique to remove them from the catalog.
    Ken

  • [svn:osmf:] 10669: Adding missing files.

    Revision: 10669
    Author:   [email protected]
    Date:     2009-09-29 01:30:00 -0700 (Tue, 29 Sep 2009)
    Log Message:
    Adding missing files.
    Added Paths:
        osmf/trunk/plugins/MASTPluginIntegrationTest/src/org/openvideoplayer/test/mast/MASTTestCo nstants.as
        osmf/trunk/plugins/MASTPluginIntegrationTest/src/org/openvideoplayer/test/mast/managers/
        osmf/trunk/plugins/MASTPluginIntegrationTest/src/org/openvideoplayer/test/mast/managers/T estMASTConditionManager.as
        osmf/trunk/plugins/MASTPluginIntegrationTest/src/org/openvideoplayer/test/mast/media/
        osmf/trunk/plugins/MASTPluginIntegrationTest/src/org/openvideoplayer/test/mast/media/Test MASTProxyElement.as

    Hi, Bob,
    Long time ago it was also necessary for me. Somewhere I have found one "undocumented" method, so it was possible to compare VIs "programmatically".
    May be it helps for you as well. Disclaimer - use it at your own risk.
    Andrey.
    Attachments:
    Differences Programmatically.vi ‏22 KB

Maybe you are looking for

  • Error when trying to create class file

    I am getting this error when I try to create file clobsearch.java:246: not a statement ex; protected Element getDocumentRoot(Clob c) Element root; Reader read = c.getCharacterStream(); String s = convertClob(read, 8192); SAXReader sread = new SAXRead

  • Can't Install Itunes 8.2 Vista 32 bit

    I have used Itunes for the past two yrs on this machine with no problems till this recent version of itunes was released. I have had nothing but problems trying to install. Running windows Vista Home...I keep reaching a point in the install and I get

  • Can I buy an album except for one song?

    Sometimes I buy songs from Amazon mp3 just because it's cheaper and then download them onto iTunes. I fell in love Imagine Dragons and bought their song Bleeding Out from Amazon and bought Radioactive from iTunes. The thing is, I want to buy the albu

  • How to run Reports Saved in JSP format

    How to run the report develop by report9i on OC4j that directory structure where to save jsp report file and how do it get access to rep tag lib that is in web-inf /lib. second thing what does it exactly mean by report server name.. is it the name of

  • Iphoto lost all photos - can i copy photos back from ipod to mac?

    Had an issue with corrupt files in my iphoto library. Did a bunch of stuff and upgraded etc....now iphoto is running fine... lost a bunch of photos.. basically all corrupt and/or missing I do have them all on my 5th gen ipod... is there anyway i can