"Document container" search problem

I swear this worked yesterday. Today "Document Container" criteria only works for iCloud documents. Anywhere else on my Mac, it simply produces 0 results whatever I do to it. Reindexed entire Mac, restarted, repaired disk permissions -- no change. Document Container search on anything other than iCould simply stopped working. Any ideas?

It looks like I have a rare problem here. I tried everything I could find.
I repaired permissions using Disk Utility.
I reset permissions from the Restore menu.
I dragged the hard drive to Privacy window and deleted again to reindex. Also tried restarting before reindexing.
I tried using the command line to stop, clear, restart indexign.
Finally, I revealed hidden files, deleted the Spotlight package, restarted and started Spotlight again.
...and I tried several other smaller command line tricks to no avail.
There is really nothing else I could find. I still have the same situation. Document Container filter only works on iClouds documents. Hard drive shows 0 results. Does anyone have any suggestion or went through similar situation and found a solution. I created a list of smart folders to help me quickly access certain files and folder using Document Container filter. Worked one day, the next day they all showed 0 results.

Similar Messages

  • Content search problem

    Hi all
    I am having some problems with the content search. Please help me with this:
    In iFS, a new document type "MWORLDTYPE" (sub type of DOCUMENT class) is created. I am using SimpleXmlParser to load xml files and convert them into mworldType documents. After parsing all loaded xml documents are seen as mworldType documents. My task is to do Attribute+content search.
    I used the below code to do content search. Though one of my xml (mworldType) documents contain the text for which I am searching, I am getting zero results.
    Used the below statement to run the file:
    java ExtendedContentSearchXml name
    Attached please see the following documents: 1. source code, 2. sample xml instance.
    source code
    // $Header$
    // Copyright (c) 2000 Oracle Corporation
    public class ExtendedContentSearchXml extends BaseTestHarness
    private String phrase ;
    * Constructor
    * Please complete the missing tags for ContentSearch
    * @param
    * @return
    * @throws
    * @pre
    * @post
    public ExtendedContentSearchXml()
    * Please complete the missing tags for doSomething
    * @param
    * @return
    * @throws
    * @pre
    * @post
    public void doSomething( LibrarySession ifs )
    throws IfsException
    ifs.setAdministrationMode(true);
    //SearchSpecification searchSpecification = buildSearch( Document.CLASS_NAME, "doc", phrase );
    SearchSpecification searchSpecification = buildSearch( "MWORLDTYPE", "mworldType", phrase );
    Search search = new Search( ifs, searchSpecification );
    search.open();
    SearchResultObject [] results = search.getItems();
    search.close();
    if( results != null )
    System.out.println("The number of object founds are " + results.length);
    for( int i = 0; i < results.length; i++ )
    SearchResultObject sro = results [ i ];
    Document doc = ( Document ) sro.getLibraryObject( Document.CLASS_NAME );
    System.out.println( "Document : " + doc.getName() + ", path =" doc.getAnyFolderPath() " Score (query1) = " + sro.getScore("query1"));
    doc.filterContent( false );
    BufferedReader reader = new BufferedReader( doc.getFilteredContent() );
    try
    for( String nextLine = reader.readLine();
    nextLine != null;
    nextLine = reader.readLine() )
    //System.out.println( nextLine );
    catch( IOException ioe )
    throw new IfsException( 9999, ioe );
    else
    System.out.println("No Results Found");
    public void setPhrase(String str) {
    phrase = str;
    * Please complete the missing tags for buildSearch
    * @param
    * @return
    * @throws
    * @pre
    * @post
    public SearchSpecification buildSearch( String className, String fileExtension, String phrase )
    throws IfsException
    // Document.DescriptionAttribute contains 'phrase';
    AttributeQualification aq1 = new AttributeQualification();
    //aq1.setAttribute( Document.CLASS_NAME, PublicObject.NAME_ATTRIBUTE );
    aq1.setAttribute( "MWORLDTYPE", PublicObject.NAME_ATTRIBUTE );
    aq1.setOperatorType( AttributeQualification.LIKE );
    aq1.setCaseIgnored( true );
    //aq1.setValue( "%doc" );
    aq1.setValue( "%mworldType" );
    // Document.ContentObject = ContentObject.ID
    JoinQualification jq1 = new JoinQualification();
    jq1.setLeftAttribute( className, Document.CONTENTOBJECT_ATTRIBUTE );
    jq1.setRightAttribute( ContentObject.CLASS_NAME, null );
    // Combine the Attribute and Join Qualifications
    SearchClause searchClause = new SearchClause( aq1, jq1, SearchClause.AND );
    // Create the Content Query 'Document Body contains phrase...' and add it in.
    String queryName = "query1";
    ContextQualification contentClause = new ContextQualification();
    contentClause.setQuery( phrase );
    contentClause.setName( queryName );
    System.out.println("Search phrase =" + phrase);
    searchClause = new SearchClause( searchClause, contentClause, SearchClause.AND );
    // Add in the FreeForm Search....
    //FreeFormQualification fq1 = new FreeFormQualification();
    //fq1.setSqlExpression("contains(description,'script',2) > 0");
    //searchClause = new SearchClause( searchClause, fq1, SearchClause.AND);
    // Set up th e Search Class Spec.
    SearchClassSpecification scs = new SearchClassSpecification();
    // Add in the Class for the Where Clause
    String [] searchClasses = new String []
    className, "DOCUMENT",
    ContentObject.CLASS_NAME
    scs.addSearchClasses( searchClasses );
    // Add in the Class for the Select Clause
    scs.addResultClass( className );
    // Define the Order by Clause
    // The List of Classes for the Order Clause
    String [] classNames = new String []
    ContentObject.CLASS_NAME
    // The List of Attibutes for the Order Clause.
    String [] attributes = new String []
    ContextQualification.ORDER_PREFIX + "." + queryName
    // The Ordering for the Attributes in the Order Clause
    boolean [] sortOrder = new boolean []
    false
    SearchSortSpecification sss = new SearchSortSpecification( classNames, attributes, sortOrder );
    // AttributeSearchSpecification searchSpec = new AttributeSearchSpecification();
    ContextSearchSpecification searchSpec = new ContextSearchSpecification();
    searchSpec.setContextClassname( ContentObject.CLASS_NAME );
    // Set the SELECT statement and FROM statement of the search
    searchSpec.setSearchClassSpecification( scs );
    // Set the WHERE clause of the Search
    searchSpec.setSearchQualification( searchClause );
    // Set the ORDER by clause of the search
    searchSpec.setSearchSortSpecification( sss );
    return searchSpec;
    * main
    * @param args
    * Please complete the missing tags for main
    * @return
    * @throws
    * @pre
    * @post
    public static void main( String [] args )
    ExtendedContentSearchXml contentSearch = new ExtendedContentSearchXml();
    contentSearch.setPhrase(args[0]);
    contentSearch.run();
    xml instance
    <?xml version="1.0" standalone="yes"?>
    <mworldType>
    <name> mworld_1.mworldType</name>
    <Category1>Administration</Category1>
    <sub_category1>General_1</sub_category1>
    <topic>Office Protocol_1</topic>
    <format_type>Other</format_type>
    <language>US English</language>
    <submit_company>AMA</submit_company>
    <submit_name>Ken Sickles</submit_name>
    <submit_date format="mm-dd-yyyy">01-29-2001</submit_date>
    <posted_date format="mm-dd-yyyy">01-29-2001</posted_date>
    <posted_by>Ken Sickles</posted_by>
    <access_level>All</access_level>
    <rb_metadata> no meta data </rb_metadata>
    <blurb> this is blurb </blurb>
    <content_url>www.mworld_1.com </content_url>
    <content>My name is Sridevi. This is the content of mworld_1 xml document </content>
    </mworldType>
    Thank you
    Sridevi.
    null

    Either run ctxsrv on the database machine or do the following using SQL*Plus (logged in as the ifs schema):
    exec ctx_ddl.sync_index('globalindexedblob_i')
    Read the interMedia Text documentation for more information about updating interMedia Text indexes.

  • On file open: "This document contains JavaScript code for a widget that no longer exists."

    I had an existing, functional datepicker in a web page.
    Recently I downloaded the UI Datepicker in the Widget Browser and installed it in DW CS5. Now every time I load the file that calls the datepicker that I added myself, a warning opens with the following text:
    This document contains JavaScript code for a widget that no longer exists. If you don't remove the code, the browser might display JavaScript errors when loading the page. Would you like Dreamweaver to find all instances of this code for you?
    Widget: $("#reservDateBegin").datepicker();
    Widget: $("#reservDateEnd").datepicker();
    Clicking "Yes" opens the file and shows the search box at the bottom of the window with [current document] in File and $("#reservDateEnd").datepicker(); in Matched Text. Clicking "No" just opens the file.
    The error is wrong, since installing the widget is what caused the error in the first place!
    How can I get DW to stop showing this message?
    Thanks for any help.

    I do understand you're trying to be helpful. I was just hoping providing the relevant code snippets would be sufficient so I didn't have to take the time to provide a "cleaned" version of the files and upload those to a public-safe location.
    Zabeth69 wrote: If you don't understand what 'code at the bottom of the page' means, you have not used one of those systems. I don't know what causes the error code to come up (besides removing a Spry widget, I mean). So if it doesn't apply to you, ignore it.
    This is exactly my point: I haven't used any of the DW "systems". I've always manually coded in DW, so I can't have removed a Spry widget in the first place. It wasn't until I installed the Widget using the Widget Browser that I started getting the error (I don't mean adding the datepicker widget to the code using the DW Insert menu - I mean installing the Widget into DW itself). Ignoring such an erroneous/incorrect error seems kind of silly, since every time I open the file I get the error message.
    Anyway, as requested, the following are links to the contactUsCleaned.php page, and the php included headerCleaned.php file. Since these use php includes to complete the rendered HTML, they won't look right in the browser, but as you know viewing the source will show the relevant html, javascript, and jquery code. I didn't see any way to upload the files in this forum, which, due to the php code, would be preferable to see exactly what my code looks like...
    http://www.eventidewebdesign.com/public/contactUsCleaned.php
    http://www.eventidewebdesign.com/public/headerCleaned.php
    The footer.php file the contactUs page includes is simply a set of HTML links to the pages on the site, copyright info, and the Google Analytics script. There is no other code in the footer.php file.

  • The Folder Path "My Documents contains an Invalid Character"

    Hello.
    I have a major problem at hand.
    I presently have iTunes 7.6 on my Dell laptop
    when i try installing itunes 7.7 or 7.7.1, it gives an error
    "The folder path my documents contains an invalid character"
    I scoured the internet, but to no avail...
    Please help
    Sometime back, the name of My Documents have been changed to "id" by mistake
    Then itunes 7.6 also wasnt working.. Then i went to the registry and changed all the folder paths, and then it was working....
    So, please help...
    Thanks!

    If the same problem occurs in another account, it suggests the message is misleading and the problem is not with My Documents itself.
    That is unless you have changed the path c:\Documents and Settings which is common to all accounts.
    It sounds as though there is a registry key set with corrupt information somewhere that you haven't found yet.
    Something you could try is a complete removal of iTunes according to the following method. I have also included instructions for installer clean up which you should do if one of the uninstalls fails. I am guessing that the iTunes uninstall might fail with a similar message.
    == uninstall with cleanup ==
    Download a fresh copy of iTunes and the stand alone version of Quicktime
    http://www.apple.com/quicktime/download/win.html
    http://www.apple.com/itunes/download/
    Download and install Microsoft Installer cleanup utility, there are instructions on the page as well as the download. Note that what you download is the installer not the program – you have to run it to install the program
    http://support.microsoft.com/kb/290301/
    Now use the following method to remove iTunes and its components:
    XP
    http://support.apple.com/kb/HT1925
    Vista
    http://support.apple.com/kb/HT1923
    If you hit a problem with one of the uninstalls don't worry, carry on with the deleting of files and folders as directed in the method.
    When you get to deleting Quicktime files in the system32 folder as advised in the method, you can delete and file or folder called Quicktime.
    Restart your PC.
    Run the Microsoft Installer Cleanup Utility. (Start > All Programs > Windows Install Clean Up)
    Remove any references you find to the programs you removed - strictly speaking you only need to worry about those programs where the uninstall failed.
    restart your PC
    Install the stand alone Quicktime and check that it works.
    If it does, install iTunes.
    ===

  • I am trying to download the latest iTunes update.  Keep getting error message stating "The folder path 'My Documents' contains an invalid character".  I can't uninstall iTunes for the same reason.  HELP!

    I am trying to download the latest iTunes update; keep getting error message that says "The folder path 'My Documents' contains an invalid character".  This also happens when I try to uninstall iTunes.  HELP!

    OK, never mind!  I saw another question on the right side that addressed the problem, and it worked perfectly!  Went to Major Geeks' page, downloaded the Windows Installer Cleanup Utility, and was able to reinstall the updated version of iTunes!  This community is super!

  • Error message:Material document contains no items (order: 40000004 item: 00

    Good Day SAP expert,
    I have facing an error message on Material document contains no items (order: 40000004 item: 000010) & Message no. /DBM/COMMON286.
    This error happen when I want to create Good Issue with action QGIS (Create Goods Issue (DBM)).
    Steps that I create vehicle order:
    1.     Go to /dbm/order01 and select 3010 u2013 Vehicle Order based on Model
    2.     Then I create for a new customer with model sales code
    3.     I save the vehicle order in DBM.
    4.     I go to VELO to create vehicle on Peugeot model sales code and create PO, good receipt and incoming invoice.
    5.     Then I use action QDBM to enable vehicle to DBM.
    6.     I assign the vehicle (DBM) to my vehicle order (created based on model).
    7.     The assignment is successful; therefore I would like to do Good Movement (good issue). Error : Material document contains no items pop up.
    8.     I have try with create VELO, assign QDM and create 3000 u2013 vehicle order, Good Movement able to perform.
    I apply snote 1527931 - Problem with reading of document flow on nonunicode systems.
    Its doesn't work, system say still say that material document contains no items.
    is it advisable change error message to warning message?
    Please advice.
    Thanks
    regards,
    ng chong chuan

    I am not sure but this coudl be reason.
    You have created a vehicle but you have not created the purchase order and Goods Recipt for the Vehicle, means the VEHICLE IS NOT IN YOUR INVENTORY
    First check whether the vehicle is in inventory or not, if not then not possible to do Goods issue.

  • Document contains some order item more than once - invoice verification

    Hi,
    we have one cross company stock transfer process in which when a billing is created in SD side, an IDOC will be triggered automatically and create an invoice verification at the MM side.
    The problem is some of our billing of this process having an IDOC application error that said.
    Document contains same order item more than once
    Message no. M8321
    Diagnosis
    Under the following circumstances, you can settle an order item in an invoice received via EDI more than once:
    - Goods-receipt-based Invoice Verification has been defined for the order item.
    - The IDoc contains the delivery note numbers of the goods receipts.
    System Response
    If this is not the case, the system cancels posting of the IDoc.
    Question:
    1 - The funny thing is IDOC showing 51 IDOC error code message on status record of INVOIC. But the invoice verfication get created in PO history.
    2 - I think this error is because we need to make the PO as GR-based Inverifcation. We have flagged it in Vendor master, and Info record, but this indicator is not flag automatically in the PO (and we cannot manually change the PO as this indicator is grey-out). How?
    3 - how to solve this error?
    Thanks

    Once PO history is created, you cannot change the "GR-based-IV" flag. Two options are there before you.
    1. Cancel all the GRs & Invoices posted in the STO then system will allow you to update the GR-based-IV flag. After updating this flag repost the GRs and invoices.
    2. Create a new STO, now since you have updated the vendor maser & info-record, this flag will automatically get updated during the STO creation itself.
    First option is tedious and should be selected only if you can go option 2 is not at all feasible

  • File Share Search problem with Compress file

    I have a content source in SharePoint 2013 search which crawl files from a file share. Some of the files have "Compress contents to save disk" attribute set to true. 
    These files are being crawled as I can see them in Crawl logs. But when I search for these documents in search center, it only return the documents which don't have compression attribute set.  I have even tried searching document title. Any idea?

    Hi Rashid,
    What keyword did you use for searching the compressed file?
    As your description, I set a file as the below:
    Then I created a File Share content source pointed to the folder which contains the file, then start a full crawl.
    After crawling, I went to my search center, and searched, the result was:
    When you search the compressed file, check whether the item title returns a part of the content of the document.
    Best Regards,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • IWS 6.0 SP1, document contained no data

    Hello all,
    I'm working on iWS6.0 SP1 on Solaris 8 and when I start the administration
    console (Netscape Communicator, port 7777) I see this Netscape error: "the
    document contained no data. Try again later or contact the server
    administrator", and the adminitratotion server restarts. Log errors shows
    this output:
    [13/Dec/2001:09:11:05] warning ( 680): for host 194.158.64.17 trying to GET
    /https-admserv/icons/dgLeftTab.gif, send-file reports: error sending
    /usr/iplanet/ws6.0/bin/https/admin/icons/dgLeftTab.gif (Operation not
    applicable) status=1:5
    [13/Dec/2001:09:11:05] warning ( 680): for host 194.158.64.17 trying to GET
    /https-admserv/icons/spacer.gif, send-file reports: error sending
    /usr/iplanet/ws6.0/bin/https/admin/icons/spacer.gif (Operation not
    applicable) status=1:5
    [13/Dec/2001:09:11:10] failure ( 655): Child process admin thread is
    shutting down
    [13/Dec/2001:09:11:10] info ( 684): Installing a new configuration
    [13/Dec/2001:09:11:10] info ( 684): [LS ls1] http://www.govern.ad, port 7777
    ready to accept requests
    Thanks in advance

    Greg Redman wrote:
    I upgraded from iWS 4.1 SP7 to 6.0 back in August. After some
    migration problems with config files were resolved, everything was up
    and running. No changes were made to the ACL or server.xml files to
    get everything running. Because of the migration problems, however,
    we went back to iWS 4.1 and waited for the SP1 release.
    I just went through the SP1 migration and everything is up and running
    except the none of my images are showing up on the HTML pages being
    served. For every "GET" of an image file I'm seeing an error in the
    error log the says ...(no access rights). Has something changed in
    SP1 that requires ACL type changes ?Can you show us an example of the error? What about the request/response
    (what's being sent back to the browser)?
    Joe McCabe Some men are alive today simply because it is against the
    Moz' Pit law to kill them. -- Ed Howe

  • Document contains no items - Carry Out Sourcing From External Requirements

    Hello Experts,
    I have a problem in carrying-out sourcing in SRM 701 with external requirements come from ECC 6.0
    I want to process the requirements into purchase order, everything is OK because I see the line item of requirement is there. But when I check the document, this error occurs
    Back-End Error:Document contains no items
    Back-End Error:Please enter items first
    It seems SRM didn't bring the item displayed to the back-end so it keeps sending error message.
    How could that happen when I can see the document clearly contains item?
    Appreciate all the answers
    Regards,
    Ted

    Hi Dinesh / Pradeep
    Could you get a fix to this issue, we are facing the same error after we have successfully distributed the SRM Central Contract to ECC and then trying to fullfil the MRP generated PR that we used for sourcing
    We are in the classic scenario and in the classic scenario, we cannot create a Purchase ORder in ECC from SRM, it only creates local SRM PO
    Hence we are doing the following process steps for PDP with PM scenario
    1) MRP Run
    2) Push the PR as a Shopping Cart to SRM
    3) Select the Shopping Cart and create RFx
    4) Publish the RFx and Award the Vendor with the SRM Central Contract
    5) Distribute the SRM Central Contract to a ECC contract
    6) Use ME57 to turn the MRP PR to a ECC PO by assigning the Distributed backend contract as a source of supply in ECC
    We are failing step 6
    Your answer was below, but it did not end in a resolutuoin
    Please let me know the resolution to this step
    Regards
    Tridip
    Your earlier unfinished answer
    " How could we disable the error message so that we could create PO in ECC with reference to contract and purchase req. "
    - this message is due to standard config we do in ECC for matl grp & pur grp for PR transfer in table T160EX
    ECC books the combo of matl grp & pgrp for external system (SRM) and will not allow to process the PR in it.
    a procurement profile is allotted in EBAN.
    Don't think you can change the message type to Warning or info.

  • Document Contains Errors. Approval is not Possible.

    I have a SC approval that errored out when coming back to SRM. We run RBBP_OFFLINE_EVAL program periodically throughout the day to pick up offline approvals from users. In the spool list, I see this message:
    Document Contains Errors. Approval is not Possible. And the system gives me the WI ID, SC # and the object type BUS2121.
    I've never seen such an error before. The document here...is it referring to the approval email itself? We instruct our users to not edit the approval email in any way. They just have to click on the approval link and click on Send in Outlook. I don't know if the document it's referring to is the SC or the approval email.
    Can anyone help?
    SN

    Hi,
    You are right. This error is the issue. To answer your other question why this message was not raised earlier;the problem could be that at the time of sc creation, there might be sufficient budget. But because your shopping cart was in approval for some time, it is possible that some more shopping carts have been raised with the same WBS and got approved. This would reduce the overall budget available. When the shopping cart is approved, one more check is done by the system and this time there was no sufficient budget.Hence the error is displayed. Only option for you now would be to ask FI people to increase budget or resubmit the cart by changing the value of the shopping cart.
    Regards,
    Sanjeev

  • The document contains no posting lines with value other than zero

    Hi!
    We are having problems posting a invoice in MIRO. When entering the PO number we receive the error message "The document contains no posting lines with value other than zero".
    What could be the problem?
    /Anders

    Hi!
    The GR_BASEDIV is set in the PO. The PO is replicated from SRM where this flag has been set for no reason. Only GR and IV are set and we have implemented a note 1155266 so that Confirmation-Related IV will not be set.
    How come it is set anyway?
    Sincerely
    Anders

  • F4M document contains errors - URL missing from Media tag

    I feel like I'm getting close to finally get a live stream to work correctly in 4.5
    I can see the streams being recorded in the following directories
         C:\FMSHOME\applications\livepkgr\streams\_definst_\liveevent1
         C:\FMSHOME\applications\livepkgr\streams\_definst_\liveevent2
         C:\FMSHOME\applications\livepkgr\streams\_definst_\liveevent3
    Each directory contains five files: bootstrap ,control, meta, f4f, and f4x.
    I have a single file called Event.xml in the directory: C:\FMSHOME\applications\livepkgr\events\_definst_\liveevent
    <Event><EventID>liveevent</EventID>
    <Recording>
    <FragmentDuration>4000</FragmentDuration>
    <SegmentDuration>16000</SegmentDuration>
    <DiskManagementDuration>3</DiskManagementDuration>
    </Recording>
    </Event>
    However the client player receives the exception F4M document contains errors - URL missing from Media tag.
    If this file is dynamically generated on the fly by the server what do I need to change to resolve this issue?
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
                codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab##version=10,0,0,0"
                width="600"
                height="409">
                <param name="movie" value="StrobeMediaPlayback.swf"></param>
                <param name="FlashVars" value="src=http://myserver/hds-live/livepkgr/_definst_/liveevent.f4m"></param>
                <param name="allowFullScreen" value="true"></param>
                <param name="allowscriptaccess" value="always"></param>
                <embed src="StrobeMediaPlayback.swf"
                       type="application/x-shockwave-flash"
                       allowscriptaccess="always"
                       allowfullscreen="true"
                       width="600"
                       height="409"
                       FlashVars="src=http://myserver/hds-live/livepkgr/_definst_/liveevent.f4m">
                </embed>
    </object>
    Thanks Again!
    Dave

    I will suggest you to go through this doc for complete implementation details. It is pretty comprehendable and would help you understand http live streaming better.
    http://help.adobe.com/en_US/flashmediaserver/devguide/WSeb6b7485f9649bf23d103e5512e08f3a33 8-8000.html#WSd391de4d9c7bd609a95b3f112a373a7115-7ff6.
    As per your questions -
    1. "I try to access the stream using the local player at http://localhost/hds-live/livepkgr/_definst_/liveevent/livestream.f4m" - This should be http://localhost/hds-live/livepkgr/_definst_/liveevent/liveevent.f4m.
         The name of the f4m is the name of the event you are referring to. In your case, the live event - liveevent is associated with all your three livestreams- namely livestream1, livestream2. livestream3.
    2. "Do I need to create BOTH a 'manifest.xml' and a 'event.xml'? And do both of these files need to be in the event directory like below?" - Yes. If you are using mbr you need both these files at the exact place you mnetioned.
    For simple single bitrate streams, mainfest.xml file is optional.
    3. "If I need to manually create a manifest.xml file would this file and directory be correct?" - Yes, you are right on track. Create the file Manifest.xml and place it inside events directory at the place you mentioned.
    4. "Do I need to use a absolute url in the streamid field in manifest.xml to resolve the error msg 'The F4M document contains errors URL missing from Media tag'?" - No. This is not needed. StreamId is not the content path, that is taken care of by the url path in the output manifest. You streamIds will be - livestream1, livestream2, livestream3.
    After all this, I would suggest you to check one more thing. If you are publishing the way you mentioned above, there would be '.stream' files (For eg - 'MTYxMjAzMzAzMg=.stream' ) created in your events folder - "C:\FMSHOME\applications\livepkgr\events\_definst_\liveevent\". You should check that there are 3 and only three files formed. It somehow happens that when you publish and republish again without deleting these files, FMS creates multiple copies and tries to map each one to the actual content written at - C:\FMSHOME\applications\livepkgr\streams\_definst_\livestream1\ etc.. So there should be three files and each one should point to one of the streams directory. If there are more, please delete these files, delete your hds streaming content (if possible) and republish again the same way.
    This should solve your problem. If still you are facing some issues, do let us know.
    Thanks,
    Apoorva.

  • Document contains an invalid frame

    On open, on a long document in InDesign CS6 (8.0) I'm getting:
    ==
    Document contains an invalid frame.
    Story text begins -
    [figure]
    Delete frame and associated story?
    ==
    If I click 'No' it gives me the next figure (about forty of them) and then ultimately, the document opens.
    Ideas?
    Thanks

    Your file won't open, right?
    Legacy files are known to have problems from time to time, and the most reliable way I know to avoid those problems is to export .inx, when possible, from the original version. The second most reliable is to export .idml from the original version.
    There are some scripts that will do a batch conversion to .inx or .idml to help you, if you have a lot of files, and if you think you don't have to thoroughly check every legacy file you open in a new version you are sadly mistaken. If you open a .indd file directly, as soon as you start to edit any text it will reflow to confrom to the new text engine and you may not see the problems on the page where you are working. .inx/.idml forces the entire document to recompose as soon as it opens.

  • Sent multiple page Word document containing photos

    I had a 22-page Word document containing a table with small photos of dvds on my old Dell Inspiron laptop.  I forwarded this Word document to my Apple iMac Desktop as an attachment.  When I opened document it only shows page 1 and not the remaining pages.  I thought that it was because it was all one continuous document, but there were page breaks on original document.  What is the easiest way to send a Microsoft Word document from a Dell computer to my Apple iMac? 

    Most likely the table is the problem. Try making sure it is inline (in the text not floating), then it will flow from page to page in Pages.
    First try selecting the table:
    Inspector > Wrap > Object Placement > Floating
    Which might fix it.
    Peter

Maybe you are looking for

  • Cubase (both SE and LE) hangs _every_time_ I try to do this!

    I just bought Audigy 4 today, and it seems to me that it has a bug that renders it completely useless to me... I hope that someone will help me, otherwise I will be really dissapointed. Here's the problem: 1. I set Cubase to use ASIO drivers (does no

  • Problem with ear piece

    I am using the communicator 9500 model. Recently I started having earing problems when receiving a call. I can only hear a caller with the speaker phone, i.e. when the phone is openned. This affect my privacy, as everyone could hear my conversations.

  • Quicktime movie in iPhoto

    I have been working with iPhoto '11. I need the following question answered. After downloading my photos and video clips from my camera into iPhoto, how can I add the video clips to iMovie? The movies are in a Quicktime format and I am not able to ad

  • Displaying img from content server thr' content presenter display templates

    Hi, I have created a static list element definition which contains three elements i.e. plaintext, image and WYSIWYG. I have accessed the plaintext and WYSIWYG elements on Content presenter template using <af:iterator var="items" value="#{node.propert

  • Measure procedure execution time..

    Hi, Is there any possibility to measure how long each of a procedure in database take?? Is that possible for Oracle's V$ views or by performance report like AWR? On the other hand, is that possible to measure execution time for SQL statements, but wi