PDF creation - deleted file?

I've just come back from my hols to find that that clever d*ick who covered for me decided to do a little housekeeping and delete a few PDFs. Unfortunately, that also ruined InDesign's ability to create PDFs any more - obviously it went as far as binning system files as well!!!
He has since been caned but I'm trying to find out what files I need to retrieve and where from. Time Machine will have it all on backup, but whenever I try to create a PDF, I select the preset, select export and it says 'Cannot open resource file'.
I don't particularly want to re-install the lot again, particularly since it's been updated since it was first installed. Anyone got any ideas? Currently I'm having to export as EPS to Distiller, but it means I have to put manual crops on all my files...

Deleting a few PDFs by itself cannot
ruin InDesign's ability to create PDFs any more. Other files must have been moved or deleted.
You should attempt to fully reinstall InDesign.
- Dov

Similar Messages

  • After PDF creation, deleted folder(s) reappear on desktop

    Has anyone had the following issue with Adobe X?  If so, did you find a solution?
    After I create a PDF from the internet, old folders that I have deleted from my desktop reappear.  For example, when I pay bills online, I create a PDF of the receipt and save it in my "bill receipts" folder, which is a few layers from the desktop (i.e., desktop -> household stuff -> bill receipts).  After the newly created PDF is saved in the correct folder an older folder that had been long deleted and/or moved to another folder (for archiving purposes) reappears on my desktop.  This folder is always empty, but it is there.  Granted, this issue does not affect the ability of Acrobat X to function, however, it is a minor annoyance and I would like to get it fixed.
    Have you (the reader) had this issue with Adobe X before?  If so, what was your solution?
    OS:  Windows 7, 64-bit
    Acrobat X: 10.0.2
    Thank you!
    Marnie

    Deleting a few PDFs by itself cannot
    ruin InDesign's ability to create PDFs any more. Other files must have been moved or deleted.
    You should attempt to fully reinstall InDesign.
    - Dov

  • Newbie Upoad PDF to blob then Delete File.pdf

    I want the user to upload A PDF and import it into A BLOB.
    That part is working.
    If the user uploads the WRONG PDF, I want them to be able to delete the FILEA.PDF.
    They can delete the FILEA.PDF, if they wait 4 or 5 minutes.
    Delete the FileA.PDF is the part that is not working, if the user does it in less
    than 4 or 5 minutes.
    The PDF is about 60K.
    Below is the sample code:
    =========================
    <code>
    SELECT mypdf
    INTO temp_blob
    FROM fcsImpactUpload
    where renname= 'FileB.PDF'
    FOR update;
    IF dbms_lob.fileexists(src_file)=1 THEN
    dbms_lob.fileopen(src_file, dbms_lob.file_readonly);
    lgh_file := dbms_lob.getlength(src_file);
    dbms_lob.loadfromfile(temp_blob, src_file, lgh_file);
    UPDATE fcsImpactUpload
    SET de_pdf = temp_blob
    where renname= 'FileB.PDF';
    COMMIT;
    END IF;
    UTL_FILE.FGETATTR('AIMSORAPDF', 'FileA.PDF', DOESEXIST, FLEN, BSIZE);
    IF DOESEXIST THEN
    UTL_FILE.FREMOVE('AIMSORAPDF','FileA.PDF');
    ELSE
    EXIT; -- File does not exist
    END IF;
    </code>

    Forget to say verasion
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
    PL/SQL Release 10.2.0.4.0 - Production
    "CORE     10.2.0.4.0     Production"
    TNS for 32-bit Windows: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production

  • Want to scan to text file on hp oj8600, software indicates only pdf or jpg file creation

    want to scan to text file on hp oj8600, software indicates can do. However printer system software only allows pdf or jpg file type creation.

    Hello @Richf95,
    Welcome to the HP forums.
    I understand that you are trying to save scans as a text file.
    I would like to help.
    PDF has become the standard file type used when scanning/saving a document.
    Most printers will not have text as a default option.
    Try the following:
    Open the HP scan utility
    In the lower left hand corner select 'Create New Shortcut...'
    Name your new short cut. I went with Text.
    In the next window select the file tab.
    In the drop down menu, select Text.
    This should create a shortcut that will allow you to save scans as a .txt file.
    Aardvark1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!

  • How to create/delete files from filesystem using PL/SQL ? UTL_FILE?

    Greetings,
    I will start by explaining what i intend to do.
    I have an application made in APEX. This application will have among other purposes the managment of pdf files which will reside in the filesystem.
    I have questioned the person in charge to keep the pdf files in the database and not in the filesystem but without success.
    So the pdf files reside in the filesystem and there is a record in a database table about them. A table keeps all info about the pdf, their location , size and name, creation date etc.
    The APEX application will have a mecanism to allow the deletion of the pdf files if an administrator decides.
    So it should be possible for an administrator to schedule the deletion of all pdf files whoe creation date is older than 2008 for example
    So, how can i achieve that?
    After some research i foudn about the UTL_FILE package which seems to have it takes to perform the task in issue.
    My idea was to have a script in the operating system which runs nightly and reads a file containing all file names of the pdf to be erased.
    The file which contains the names of the pdfs to be erased will be generated by the database a few minutes before.
    If there are no pds files to be erased than the file containing the names will simply be empty
    Are there any other viable solutions out there?
    And as for opening/creating the file withn the pdf names, i use:
    UTL_FILE.FOPEN (
    location IN VARCHAR2,
    filename IN VARCHAR2,
    open_mode IN VARCHAR2,
    max_linesize IN BINARY_INTEGER)
    RETURN file_type;
    And as for writing lines (a pdf name per line ), i use;
    UTL_FILE.PUT_LINE (
    file IN FILE_TYPE,
    buffer IN VARCHAR2,
    autoflush IN BOOLEAN DEFAULT FALSE);
    is there a better solution?
    thanks all.
    -> My Homepage <-
    Edited by: Igor Carrasco on Apr 14, 2009 3:11 PM
    Edited by: Igor Carrasco on Apr 14, 2009 3:12 PM

    Greetings,
    I have read that link above, some questions still though.
    I will provide some more information.
    -First the database is in a windows server.
    The windows server has a virtual drive mounted as z:\ <-- this points to a directory in virtual machine, i can manually access/create/delete files manually,i tested.
    -Second utl_file_dir is defined as * , in t that enough to cover mounted drives? ( i can't change the init.ora and reboot the db right now :( gotta wait.. )
    Do i explicitly have to define utfl_file_dir = z: ?
    -Third haven't had the chance to test it on linux or any other operating system, assuming a virtual unit is mounted successfully and that the issues above are solved i should be able to operate on any mounted drive whatever the os, right?
    Best regards

  • Delete file from folder only (not from list)

    Hi all,
    I've searched a lot and didn't succeed so far, that's why I need your help. In a cloud context, I'm actually creating and uploading files (pdf and/or xml files) "on the go" to sharepoint folders via the SOAP API and this is perfectly working. But
    in a cloud context, I also need to decomission services which is translated into deleting files into Sharepoint.
    That's where it became complicated, because according to the API we cannot delete files if they are not part of a list structure, which is not my case. Is that true ?
    The only info I have when trying to delete a file via the SOAP Api is : its name, its folder, and the endpoint where the folder is. So my question remains simple I guess : is this possible ? If so, how to (a link to the SOAP body would be usefull)
    Thanks a lot
    Regards
    Baptiste

    Hi,
    According to your post, my understanding is that you want to delete file from folder.
    In SharePoint 2010, It is recommended to use Client Object Model to achieve it, the following code snippet for your reference:
    string siteURL = "http://siteurl";
    ClientContext context = new ClientContext(siteURL);
    //specific user
    NetworkCredential credentials = new NetworkCredential("username", "password", "domain");
    context.Credentials = credentials;
    Web web = context.Web;
    context.Load(web);
    context.ExecuteQuery();
    string relativeUrl =web.ServerRelativeUrl +"/DocumentLibraryName/FolderName/FileName";
    File file = web.GetFileByServerRelativeUrl(relativeUrl);
    context.Load(file);
    file.DeleteObject();
    context.ExecuteQuery();
    If you still want to use SOAP API, we can use the UpdateListItems method under Lists web service to achieve it.
    http://www.dhirendrayadav.com/2010/06/delete-list-items-using-web-service.html
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/61466984-1844-48a1-8c1e-1c59a0f9876a/move-and-delete-files-remotely-using-sharepoint-web-services-?forum=sharepointdevelopmentlegacy
    Thanks,
    Dennis Guo
    TechNet Community 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]
    Dennis Guo
    TechNet Community Support

  • Error when deleting file: Could not find this item. This is no longer located in ...

    We are setting up a new Windows 2012 server. Users access this server using a 'terminal services'. We have mapped some folders from a legacy server (different domain). Using group policy preferences, we map this folder as a drive for a user.
    When user wants to delete some files, he get's the error: 'Could not find this item ..' The error is displayed to the user and it looks like the file can't be deleted. But when I press the F5 (refresh) button, the file is gone. My problem is very similar
    to a problem in the following post: http://social.technet.microsoft.com/Forums/windowsserver/en-US/042e747a-0e25-4190-b0a2-82f3e9635eb0/can-not-delete-file-error-is-could-not-find-this-item?forum=w7itprogeneral
    When I create 'txt' (or 'pdf', 'zip') file, i can delete it without the error. When I create 'xlsx', 'docx', 'pptx', 'bmp', 'jpg', I get the error.
    Does somebody have an idea, how can I fix the cause of this problem? (I can't tell to users to hit the F5 button everytime when they face this issue)
    Thank you for your help in advance!
    Juraj

    Hi,
    Please check if the problematic files’ filename ended with a dot. If so, you could refer to the article below to troubleshoot the issue:
    Solved: “Cannot read from the source file or disk”
    http://blog.dotsmart.net/2008/06/12/solved-cannot-read-from-the-source-file-or-disk/
    Regards,
    Mandy
    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.

  • How do i delete files from adobe reader?

    How do I delete files that I do not want to view again from adobe reader?

    You want to delete the actual PDF files, or just the entries in the Recent Documents list?
    If it's the files, delete them from where they are stored on your local disk.
    If it's the Recent Documents list, that depends on your operating system.

  • Can not delete files from Adobe reader

    can not delete files from adobe reader.

    Can you let us know a little more about what you are trying to do? Adobe Reader opens pdf files but does not store them so, there's nothing to delete.

  • Windows Server 2012 R2 RDS: RDS Users are unable to delete files from their desktop

    Hello,
    We are working with Windows Server 2012 R2 RDS. We also implemented User Profile Disks. This is all working fine without problems. The only issue I have is that normal users are unable to delete files from their desktop. They are getting a message:
    you'll need administrator permission to delete this file, with the prompt for administrator access.
    They can edit, copy, rename, cut and paste files. But they cannot delete a file from their desktop.
    I checked the security permissions of the files on the desktop (for example a normal self-created PDF file) and the users are owner and have "Full Control" over the files.
    I checked the file permissions and took a look under "Advanced", selecting the specific domain user and checked the "Advanced Permissions" and the user has the "Delete" option checked. So he should be able to delete the
    file.
    I am guessing this is UPD related issue, or something in GPO. But I already unlinked the GPO objects, that I felt could be the source of this problem, but without results.
    Could someone give me a hint on where to look? It's kinda annoying to users, that they can't delete their own files.

    Hello Bria,
    What you should check first, is the NTFS permissions on the User Profile Disk to begin with. See if the user has full control over the items that are in the UPD.
    Also check the GPO's that are enabled for the user and computer account. You can check that by running: gpresult /h <path>\gpresult.html
    There are two GPO settings that could prevent the user from deleting his/her own items: 
    User
    Configuration\\Policies\\Administrative Templates\\Windows Components\\Windows Explorer\
    Hide these specified drives in My Computer
    Prevent access to specified drives in My
    Computer
    There might be other GPO settings, that block deleting items on the UPD, but can't think of any out of my head.
    I can only think NTFS and GPO settings that might prevent the user from deleting items. In my case it was a GPO setting, that I didn't suspect.

  • Can a JPEG be 'saved as' a PDF (or other file type)?

    Can a JPEG file be saved as a PDF file?
    Also, can it be saved in a file format that will allow the image to be inserted into, e.g., a WORD document? (Or can a JPEG itself simply be inserted into a WORD doc 'as is'?)
    Thanks.

    You can reformat a .jpg to PDF.
    No, it doesn't reformat it. The .jpg is simply embedded into the PDF file. As BDAqua noted, if it's a high resolution image, OS X's built in PDF creation module will knock it down to screen resolution.
    For some reason, I was sent a chart (with numbers) as a jpeg file. Converting it to, and then printing it as, a PDF leaves the data in too small a font size.
    What size is the .jpg before you place it into a PDF? Open it in Preview and press Command+I. What is the image size in pixels and image DPI (resolution)?
    Is there any way to enlarge the text (via iPhoto, Preview, or some other Mac utility)?
    72 dpi is low, screen resolution. 300 dpi is standard high, print resolution. So if the original is already a low res file, then there's little to nothing you can do to improve the text on a printed piece.

  • Word crashes mid PDF creation - Word 2003 Acrobat 9.3.0

    I have a new PC and a fresh clean install of CS5 Design Permuim, including Arobat 9. The organisation is still using Office 2003 and no upgrade path in sight for that. Myself and several colleagues with the same software profile are now experiencing frequent problems with Word crashing mid PDF creation.
    This has always been an issue with the ocassional Word file in Acrobat 8, but Distiller always worked as an alternative - NOT this time!
    PDF Maker gives no error message, just that Word has encounted a problem and needs to close.
    Distiller produces the following log message, then freezes completely. I then have to force quit Word to exit!
    %%[ ProductName: Distiller ]%%
    %%[ Error: syntaxerror; OffendingCommand: --nostringval-- ]%%
    Stack:
    /mF_OTF_V
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%
    Not all documents are affected, but I can remove almost all of the content from the affected document and it still causes the error.
    I have tried repairing Acrobat - no change.
    One other odd symptom - after each crash, the default printer on the machine has changed to Adobe PDF.
    I can successfulkly make the PDF on another machine which has not been upgraded to Acrobat 9. The rest of the settings are identical on the two machines, they are both running a standard organisation environment, with the same verion of word etc.
    Can anyone suggest how to fix or at least isolate the cause of the problem?

    Please update to latest Acrobat 9 release which is 9.4.2.
    Also do let us know
    a) office 2003 flavour: Standard or professional?
    b) OS flavour? Also whether it is 32bit or 64bit?
    Also as you mentioned that "Not all documents are affected", so we would require any of your affected file to analyze the issue. Can you please share the file? You can use acrobat.com to share the file.
    Thanks,
    Vishal

  • PDF Creation with data from SAP system

    Hi All,
    I need to generate a PDF file using Adobe Document Service. The content of the PDF can be from any datasource (Oracle/ BW/ R3 ),  So I require Webdynpro code for pdf creation with data from any of the system

    Hi Deepak,
                     Before starting the code just like that,make sure u have configured all services in Visual Administrator.
    U can refer this:
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/95/5a08cd0e274a0bae559622d6670722/frameset.htm">Configuration Guide</a>
    regards
    Sumit

  • Failed to delete file after processing FTP

    Failed to delete file after processing. The FTP server returned the following error message: 'com.sap.ai i.adapter.file.ftp.FTPEx: 550 Unexpected reply code *.txt: The process cannot access the file because it is being used by another process. '. For details, contact your FTP server vendor.
    I got this error many times for the same interface. Not sure what is the reason for this.
    Searched on internet go comments that this is because of FTP version!
    Please help

    It is the "Msecs to Wait Before Modification Check" in the Sender Adapter that ensures this. It works like this: PI starts processing, finds a file, then waits the number of miliseconds specified and checks the file again to see if it has changed over the waiting period. If so, then it waits again to make sure the file is written completely. Only if no changes took place over the waiting period, it starts processing the file.
    And the fact that your file was successfully processed at retry only confirms that it might have been still written to by the sender system. You can try comparing file's creation timestamp (in OS level) with its processing start time in PI - this could prove me right.
    Edited by: Grzegorz Glowacki on Jan 13, 2012 2:15 PM

  • PDF creation from ID - not outlining fonts correctly

    Hi all. I have a query regarding PDF creation from InDesign (so this could have been in the Acrobat section instead but went for this one).
    I work for a publisher using CS2+3 on PCs. We don't have one out of house printer as a rule but several. All have different requirements.
    Essentially we are converting fonts to curves from within InDesign when creating the PDFs. Therefore we have multiple files (curved and text) which is adding lots of time onto projects and adding a further margin for error with missing or out of date files. It seems this process is necessary as whenever I select the option to outline the fonts when creating the PDFs, the printers usually get in touch asking for the font, even though it has been outlined.
    I am hoping to find any simple solution, hopefully avoiding purchasing extra software, that avoids creating duplicate 'curved' files. I realise it's a big topic and not restricted to InDesign but this is the main software we are using so figured this was the place for it. Many thanks.

    I'll let others question the necessity of outlining text. It has been discussed many, many times before, and the only valid reasons I found so far are producing files for hopelessly outdated printers (the usual recommendation is "find another one, fast!") and for legacy custom hardware such as cutters and engravers.
    But this is really a mystery to me:
    It seems this process is necessary as whenever I select the option to outline the fonts when creating the PDFs, the printers usually get in touch asking for the font, even though it has been outlined.
    Tr this: outline all text in your ID document. Export as PDF. Check under Document Properties, Fonts. How many fonts do you see? If everything is outlined, there shouldn't be any.
    How does the printer know what fonts to ask for, and what is he ever gonna do with these fonts?

Maybe you are looking for

  • KPIs for SD:Sales Orders & Delivery

    Hi Experts, Could some one please help me out to find out different KPIs for SD : Sales Orders & Delivery. Am trying to create a BEx report for SD mofule using custom list of KPIs. Any source where i could find the KPIs for SD module. Thanks in advan

  • Any way to get prior (non-iOS 6) version of iMovie?

    Just saw a demo of iMovie and really liked it. I headed to the iTunes app store and was seriously disappointed to find that I could only use iMovie if I updated to iOS 6. That isn't going to happen. I use Google Maps every day and will switch to an A

  • Goods receipt check box

    Dear All, For one of my plant whenever i process PO against an MRP generated PR (account assignment F) the Goods receipt check box in the Delivery tab comes unchecked & user has to manually tick & then only can process the GR...I have already checked

  • How do I put a space between numbers without the keyboard switching to ABC?

    Using the onscreen keyboard on the iPhone or iPad I often need to write a telephone number.  I like to separate the area code from the rest of the number, and also write out phone numbers as XXX XXXX, with a space in the middle--but if I hit Space, t

  • Problem in transporting contents of a table

    Hi All, I want to transport the contents of a table from development server to quality server. I used transaction SE16 and clicked on display entries. It gave a menu called transport entries where it gave a prompt for a workbench request. I created t