Mysterious files being created in pages. Unable to unlock or delete them.

Mysterious files being created in pages. Unable to unlock or delete.

It turns out that you cannot update or delete a Syndication Map that is currently assigned to a Port in the Repository.  You must remove the map from the Port in the Repository and then you can change and/or delete them. 
1) bring up the MDM Console
2) Unload the repository
3) drill into Admin ~ Port
4) Remove or change the map associated to the port
5) Load the repository
6) Then you go into Syndicator and either Update the Map or Delete it
It had nothing to do with security.
Thank you for your help.

Similar Messages

  • Why the hell are my creative cloud files being archived!?!  i did NOT delete them.  this is a completely undependable service.

    looks like i can never trust this stupid cloud.
    why does this happen?

    Hi,
    We are aware of this issue already, I am sorry for any issues caused, you can go to the Creative Cloud website and restore all of your files back from archive.
    Thanks
    Warner

  • When I try to open a file I created in Pages, I get this: "The required index.xml file is missing."  This has happened many times and I have forgotten how I've worked around it.

    When I try to open a file I created in Pages, I get this: "The required index.xml file is missing."
    This has happened many times and I have forgotten how I've worked around it.

    That is wrong advice and you appear to have repeated it all over the forum.
    All Pages files no matter what version have the same file extension, .pages, despite being radically different formats and that is the problem. The System does not distinguish between them when you double click on the file, it opens the first version of Pages it encounters.
    You need to right click on the file and choose the correct App version for the file. Unfortunately there are no clues to tell you which is which.
    If you are unhappy with this and the removal of over 100 features plus the problems with transmitting files across devices, servers and different versions of OS X, rate/review Pages 5.5.2 in the App Store.
    Peter

  • My itunes library has duplicated "ALL" my files with thier individual iclouds. How do i delete them all sa one group than rather to delete each individual file?

    My itunes library has duplicated "ALL" my files with their individual iclouds. How do I delete them all in one single swipe rather than delete each one individually?

    Try Edit > Preferences > Store and untick Show iTunes in the Cloud Purchases. With luck it should be OK if you turn it on again.
    tt2

  • 0kb files being created!?

    I was trying to update my site today and when I 'publish site changes' multiple files are being created as 0kb instead of actually having the data that I see while creating the page(s). Much thanks for any help/advice you all have.
    Aaron

    When you have problems with iWeb or publishing, you really need to publish to a local folder to find out where the problem is. See....
    http://www.iwebformusicians.com/WebMusic/iWebTips.html
    Are you using iWeb's apology for an FTP?

  • Many .DYN files being created

    Ever since the PSUOct2013 (17082366) was applied to my 11gR1 install there have been many *.dyn created (sometimes multiple per minute) in my $ORACLE_HOME/dbs directory.
    The only reason I found them (2 months later) is that I received a drive space warning.  The only thing that I can find about these files is that they are dynamic sql files. Oracle Dynamic SQL
    I have started archiving them so as to reclaim drive space but haven't deleted yet until I find out what they are and why they are being created.
    Anybody else seen this?

    they are binary files though this is a snippet:
    Ü Ü ï¾      8 ǃ p
    †£
    P      [1] [1] [1] [1]  X /ade/aime_rdbms_647529/rdbms/src/server/osds/sd.c nonenone    sdterm  ï¾ Çƒ      ˜[1]  8[1]      ô¤[1] x[1]  €[1] /ade/aime_rdbms_647529/rdbms/src/server/progint/opi/opidrv.c none    opiterm ï¾ X      ǃ      
    :%ð            Ø
                                                                               à
        /ade/aime_rdbms_647529/rdbms/src/generic/vos/kgh.c nonenone    kghstack_finish ï¾ °      ǃ À    
    X T¼L ˜                                                                                                                                                       
      /ade/aime_rdbms_647529/rdbms/src/server/progint/opi/jox.c nonenone 

  • Why is my Zip file being created with size of O KB?

    I have the following code
    public static int createZip (String directory)
                       throws IOException {
         File path = new File( directory );
         File outZip = new File("c:\\wip\\sams9dbExport.zip");
         boolean boo = outZip.createNewFile();
         FilenameFilter filter = new FilenameFilter() {
            public boolean accept(File dir, String name) {
                return name.endsWith(".xml");
        if ( outZip.exists() ) System.out.println("File exists");
         System.out.println(" Files and filters made");
         // These are the files to include in the ZIP file
         String[] fileList = path.list(filter);
        // Create a buffer for reading the files
        byte[] buf = new byte[1024];
        try {
            // Create the ZIP file
            String outFilename = "sams9dbExport.zip";
            ZipOutputStream out = new ZipOutputStream( new FileOutputStream( outFilename ) );
            // Compress the files
            for ( int i=0; i < fileList.length; i++ ) {
                FileInputStream in = new FileInputStream( "c:\\wip\\"+fileList[i] );
                 System.out.println( fileList[i] );
                // Add ZIP entry to output stream.
                out.putNextEntry( new ZipEntry( "c:\\wip\\"+fileList[i] ) );
                System.out.println("Added an entry");
                // Transfer bytes from the file to the ZIP file
                int len;
                while ( ( len = in.read( buf ) ) > 0 ) {
                    out.write( buf, 0, len );
                // Complete the entry
                out.closeEntry();
                in.close();
            // Complete the ZIP file
             out.close();
        } catch (IOException e) {
             System.out.println( e.toString() );
             return 0;
        return 1;
    }And I get the following output
    SQL> @ziptest
    File exists
    Files and filters made
    AH_QUERY.xml
    Added an entry
    myclob.xml
    Added an entry
    myclob1.xml
    Added an entry
    myclob2.xml
    Added an entry
    PERSONNEL.xml
    Added an entry
    PERS_ALG.xml
    Added an entry
    sampledoc.xml
    Added an entry
    ut_ah_query1.xml
    Added an entry
    ut_provider.xml
    Added an entry
    PL/SQL procedure successfully completed.
    SQL>
    But my file is created empty. I previously added a println statement in the while loop to see if it was reading and writing bytes and it was.
    Any ideas?

    I have the following code
    public static int createZip (String directory)
    throws IOException {
    File path = new File( directory );
    File outZip = new
    = new File("c:\\wip\\sams9dbExport.zip");
    boolean boo = outZip.createNewFile();So these two lines will create sams9dbExport.zip with size 0 bytes, if file didn't exist.
    No need to do that....
    try {
    // Create the ZIP file
    String outFilename = "sams9dbExport.zip";
    ZipOutputStream out = new ZipOutputStream(
    tStream( new FileOutputStream( outFilename ) );Probably you are looking a wrong "sams9dbExport.zip" -file. Your application will create two "sams9dbExport.zip"-files, one into wip-folder with 0 bytes, and other into default directory.
    >
    But my file is created empty. I previously added a
    println statement in the while loop to see if it was
    reading and writing bytes and it was.
    Any ideas?

  • Problem with duplicate files being created

    I'm having a problem with PSE7 copying files from my camera card to my computer.
    It will copy over all new jpg files fine but once it gets to the NEF (RAW)  files it will not only copy the new files from today but recopy all  those NEF files from other days that are already downloaded so that I end up with files like this:
    DSC_2200.NEF
    DSC_2200-1.NEF
    DSC_2200-2.NEF and so on.  It's very annoying and I have to repeatedly  delete all the duplicate files and this takes up time. I do use the  global search function in Windows to delete them but would prefer they  don't do this in the first place. They do eat up a lot of space.
    I have the settings set to only copy over new files in PSE so why is it copying over older files? Does anyone have any clues?

    You can set up a scan when you create a new device in System Preferences:
    go to System Preferences --> FCSVR Pref pane --> Devices Pane and then choose create new device ("+" sign and the Device Assistant will appear. You choose the type and then you can set up a Full or Add only Scan here.)
    Other option is to set up a Scan via the Administration window in the Java Client:
    This is not as easy since there is no Device Assistant.
    go to Admin window in Java Client --> Response and then create a new 'Scan' response on the device you want to scan. 'Scan Productions' is something different, maybe you want that instead, I don't know. Depending on how you set it up, it can create a Production in FCSVR catalogue for each folder or subfolder and that media will be scanned and placed into that Production in FCSVR catalogue.
    Anyways, once you create the Scan Response, go to Admin pane --> Schedule. Create a new schedule and add the 'Scan' response you just created to the "Response List" section. Don't forget to check "Enabled"...can't tell you how many times I created the response but then forgot to enable it.
    Once you scan the assets, they are in the FCSVR catalogue with clip proxies, thumbnails and posterframes. If you have existing FCP projects that use this media, you will want to make sure the media in the FCP project is connected to that same media that was scanned. When you upload the FCP project, it will not dup the assets, just add the FCP project to it, unless you didn't set the EIP device correctly. If you look in Search All Jobs, the only thing that should be generated at this point it Edit Proxies (if you enabled them) and Elements.
    Now my question to you is the same as Chris' question here http://discussions.apple.com/thread.jspa?messageID=9147105#9147105. How did you set things up so far? What is your workflow? Where is your media?

  • Duplicate text files being created with ~ appended

    Whenever I edit a text file with TextEditor and save it, a duplicate file is created with a ~ appended to the end of the name.
    Example:
    After editing and saving my_file.txt my_file~.txt is also created.
    The result is I get two files with exactly the same contents.
    my_file.txt
    my_file~.txt
    I would really like to stop it from doing this. It clutters up everything. It has done this since I first installed the OS. My file system format is Mac OS Extended (Journaled). Any suggestions?

    I looked through the preferences for TextEditor. I had "Delete the automatic backup file unchecked". I think checking this option will fix the problem.

  • If I back up files to an external HD w/ time machine and delete them off the MacBook, will the HD also delete them on next backup?

    I hooked up an external hard drive and my MacBook offered to run Time Machine to create a back-up.  Once the back-up is done, I'd like to delete some of the videos off of my actual MacBook but if I do that, will I be able to watch them on the external HD or will it delete them on the next backup?  Thank you for any help you can provide.  I am running a MacBook 13 inch with Mac OSX 10.5.8 if that helps.

    If you delete files backed up by TM, then eventually they will be deleted from the backup. TM is not a permanent storage alternative. For that you should purchase and connect a separate drive.

  • Do tracks of files/pictures/etc. remain hidden inside the iphone after deleting them?

    If so, I am deeply concerned. I won't get into the whole location tracking feature but allegedly forensic analysis of the iPhone can reveal what pictures you've had on your iPhone even after deleting them. A few questions:
    - There are many "scanner" apps out there and the idea of a hidden document scan lying there hidden raises concern.
    - Since the battery is NOT user replaceable, does Apple give you a refurbished iPhone with a new battery when you bring in your iPhone for battery replacement? Sensitive files/pictures might still be on it and the idea of getting someone else's iPhone doesn't seem appealing to me. I don't want a scratched iPhone since I've kept mine in a leather case all the time.
    - Does the "erase all content and settings" feature truly erases ALL content of your iPhone? (e.g. does it zero out data?)

    i feel your pain
    this is so infuriating
    it's great little app, and so easy to record audio on the fly.
    BUT then absolutely impossible to easily transfer them to my desktop.
    infuriating

  • I have too many pages. How do I delete them

    My "Remove pages" does not work

    Are you asking about pages in a photo book in iPhoto?
    Select the pages in the "All Pages" view and press the "delete " key.
    But you cannot delete the cover pages or the fly leaves, and between the fly leaves you need a minus of 20 pages.
    In what way does removing the pages not work for you? What happens when you try?

  • Mystery Folders Being Created by Numbers (and Pages) on Server

    Gentleones,
    I'm running a Mac OS X Server 10.6.8 installation with multiple 10.9.1 clients. All clients are using iWork v. Latest and were all updated from 10.x and iWork '09. to get here.
    When opening and then saving a Numbers (or Pages) document on the server, a folder with the same name as the original appears on the server. The contents look suspiciously like a bundle or package with the guts of the document in the folder.
    The original document also gets modified when the document is saved.
    Deleting the folder does not seem to affect the original document in any way.
    It does this with alarming consistency.
    Today, it exhibited a new behavior: a second document appeared with the same name. Though I wasn't able to see it on the server, several of the clients showed this second copy of the document. Others did not.
    I have repaired permissions on the server and have ensured that all of the files and folders have "Read & Write" permissions for the root share point for "This folder, child folders, child files, all descendants". That I can tell, it's not a permission problem as each user can delete the mystery folder when it appears.
    However, that said, I do have multiple users logging into the server using one username across several clients. That shouldn't cause a problem.
    Users do not access the files in question at the same time.
    Any ideas?
    Thanks,
    Bill

    Same problem here. Im running an OS X Mav Server 3.0.2 with shared folders over AFP. But for me it is not consistent at all. Sometimes it creates a "mystery folder" and sometimes not. It only happening with the iWork apps tho.
    The other problem you were mentioning with duplicate folders in the client finder, but in server terminal (ssh) theres only 1 file, happened to me, but only 1 time.
    I always thought it was related to autosave feature of iWork/os x, or file versions. I have turned of autosave on clients and server but problem still persist.
    Could it be related to versions? I dont know for sure how to disable versions in the iWork apps, but it shouldnt be neccecary FFS.

  • Thousands of individual .txt files being created while using "next available file name" option in Save to ASCII step

    I'm using Signal Express to record Load vs Displacement data and export it to a format our engineers can work with (in this case ASCII is okay). It would seem that by selecting the Next Available File Name from the drop down arrow it would do just that. For instance a typical save path for me would look like C:\....Desktop\Project Number and Description\Run_1.txt within that Run1.txt file would be all the data points for that run. When I hit record again Signal Express would (SHOULD) create a Run_2 since it's the Next Available File Name.
    But instead what it does is creates a single txt file for every single sample point being read. Needless to say, If I'm recording 6 second of data at 1khz I end up with thousands of txt files!
    The first thing that comes to mind is, why would anyone want this?
    Second is how can I record multiple individal runs for the same project and have the file name increment?
    SCXI- 1000 Chassis w/ 1346 adapter
    PCI 6281 DAQ card
    SCXI- 1520 Bridge Board w/ 1314 Terminal Block (x2)
    SCXI- 1180 Feedthrough Panel w/ 1302 Block
    Signal Express 2014.
    Win7 Enterprise

    ...and more attachments of the ASCII save path, before and after acquiring 4 seconds of data along with one of the files from that folder.
    Again, this is 4 seconds of two-channel spring  plot data at 100 Samples to Read @ 1k Rate (Start Run.... wait 4 seconds or two full test sample cycles... Stop Run).
    ~EDIT~
    The .txt file would not attach (I think it's too small). Here's what it looks like if you were to open it:
    Load vs Displ - Displ (inches)    Load vs Displ - Load (lbs)
    3.736323                              273.751906
    Also, for some reason it won't let me attach my project file. It's a .seproj extension but the forum thinks it's 1k in size and "empty"
    Message Edited by OKors on 06-05-2009 05:57 PM
    SCXI- 1000 Chassis w/ 1346 adapter
    PCI 6281 DAQ card
    SCXI- 1520 Bridge Board w/ 1314 Terminal Block (x2)
    SCXI- 1180 Feedthrough Panel w/ 1302 Block
    Signal Express 2014.
    Win7 Enterprise
    Attachments:
    FolderBeforeSave.JPG ‏39 KB
    FolderAfterSave.JPG ‏239 KB

  • Strange "iPOD" Files being Created in My Pictures Folder

    A friend of mine wants to know why PSE7 seems to be creating these files in the My Pictures folder whenever she clicks on a PSD file (for example) to start PSE editor? It also seems that if she uses one of the effects on a pic these IPod files are also created.
    She has hunderds of these things floating around in various folders. PSE also feels the need to create a manifest.txt file to list them all.
    IPod_adding_drama
    IPod_advanced_dodge_burn
    IPod_blending_layers
    IPod_blurring_background
    IPod_correcting_images_batch
    IPod_correcting_perspective
    IPod_create_greeting_card
    IPod_create_pdf_slideshow
    IPod_create_slideshow
    IPod_curved_photo
    IPod_frame_layers
    IPod_generic
    IPod_getting_slideshows_on_tv
    IPod_hockneyesque
    IPod_insider_tips
    IPod_lightening_eyes
    IPod_making_skies_blue
    IPod_panorama
    IPod_photo_collage
    IPod_photo_frames
    IPod_photo_mail
    IPod_pic_in_pic
    IPod_quick_fix
    IPod_scalloped_brush
    IPod_scene_clean
    IPod_sharpening_tools
    IPod_travel
    IPod_type_masks
    IPod_unsharp_mask
    IPod_whimsical_woodcut
    Thaks
    Jeff

    See the ongoing discussion in:
    http://www.elementsvillage.com/forums/showthread.php?t=47557

Maybe you are looking for