Adding Path corrupts PS3 file!

Hi,
I've just started getting a problem which results in a totally corrupt PSD file. If I add a path (say I'm doing a clipping path around some people) I can get so far then if I close the file I cannot open it again "Could not complete your request because it is not a valid Photoshop document".
The file size is only about 11mb, 8-bit RGB.
As a trial I started adding a path and closing the document every couple of minutes (to the desktop) reopening then continuing the path. This worked up until some point where the path seems to corrupt the entire file. The finder preview is fine yet the file won't open. Tried importing it into Illustrator and it imports as a text file. InDesign refuses to import it as it doesn't have a suitable filter.
Running Leopard 10.5.3 on Dual 2.8ghz Quad core Mac Pro with 4gb RAM
HELP!

This documentation should help:
http://java.sun.com/javase/6/docs/technotes/guides/lang/resources.html

Similar Messages

  • Invalid or COrrupt JAR file

    I have one jar file of java classfiles created in eclipse. Its working fine with eclipse after giving Run Configuration (main class).
    But when I try to run jar file from command prompt its giving me error - ' Invalid or corrupt jar file'
    I have edited Manifest.mf for adding Main-Class also.
    I have also checked in Tools-->folder option-->File Types-->Selecting Jar-->Advanced-->Edit and given the correct path of javaw.exe like - "D:\SDP75\jdk\bin\javaw.exe" -jar "%1" %*. The same jdk used for compling the classes.
    Please help me. I have done volumes of googling for this. This is very crtytical to me.
    Thanks

    802387 wrote:
    Its working fine with eclipse after giving Run Configuration (main class).So it works if you just run the main class.
    >
    But when I try to run jar file from command prompt its giving me error - ' Invalid or corrupt jar file'
    But it doesn't when you attempt to run it as an executable jar.
    I have edited Manifest.mf for adding Main-Class also.
    As a guess that is the problem. You messed up that file.
    Or you are not running the same thing in both cases.

  • Error -32810 occurred at The FieldPoint server initialization failed. Possible causes: 1. Missing or corrupt configuration file; 2. Failed to create callbacks. : FP Open.vi

    I have two cFP-2120 RT controller. They both have NI-Serial RT2.5.6, DataSocket for LV RT4.2, NI-VISA 3.6, FP Drivers 5.1.0, FP VI Manager 3.1.0 LV RT 7.1.1 installed. But one same vi can run on one controller but not another.
    the error message got when it runs on another controller is "Error -32810 occurred at  The FieldPoint server initialization failed. Possible causes: 1. Missing or corrupt configuration file; 2. Failed to create callbacks. : FP Open.vi"
    I wonder by what it is caused?
    Thanks

    Hi Matthew,
    As mentioned previously, this KnowledgeBase article may be of some help. Also, if your code is being run on an embedded controller and then a network controller (not embedded), you will need to run the program differently. On the embedded controller, you should deploy your VI in a Project Explorer or programmatically (as described here.) However, you do not need to deploy the program to a network controller, but simply run the VI.
    I would also suggest creating a new .IAK file. Do you still see the same error? Also, double-check that the software installed on the controller matches the software installed on the host PC. If you have any file paths associated with one FieldPoint controller, ensure that you are changing them to match the second controller.
    Please keep us posted on your troubleshooting steps. Have a great day!
    Amanda Howard
    Americas Services and Support Recruiting Manager
    National Instruments

  • In IE, while saving a file it is taking the full path with the file name

    Hi,I am using Tomcat5.5. In one page of my website, there is code responsible for saving an image from the server to the client machine. whenever i am doing this Mozila the file is getting saved with desired name. But in IE it takes full path of the file in the server directory along with its name while being saved in the client machine.Below is the code responsible for this. Plz Help.
    DiskFileUpload fu = new DiskFileUpload();
            List fileItems = fu.parseRequest(request);
            Iterator itr = fileItems.iterator();
            while(itr.hasNext())
              FileItem fi = (FileItem)itr.next();
              //Check if not form field so as to only handle the file inputs
              //else condition handles the submit button input
              if(!fi.isFormField())
                if(fi.getFieldName().equals("FileImage"))
                    if(fi.getSize() < 300000)
                      if(fi.getSize()!=0)
                            java.util.Random rd = new java.util.Random();
                            int random = rd.nextInt(100000);
                            String img_code = random + "";
                                  if(fi.getContentType().equals("image/jpeg") || fi.getContentType().equals("image/pjpeg") || fi.getContentType().equals("image/gif") || fi.getContentType().equals("image/png") || fi.getContentType().equals("image/x-png") || fi.getContentType().equals("image/bmp") || fi.getContentType().equals("image/wmp") || fi.getContentType().equals("application/octet-stream") || fi.getContentType().equals("audio/wav") || fi.getContentType().equals("audio/x-wav") || fi.getContentType().equals("audio/AMR") || fi.getContentType().equals("audio/amr") || fi.getContentType().equals("audio/mpeg") || fi.getContentType().equals("audio/mp4a-latm") || fi.getContentType().equals("audio/x-realaudio") || fi.getContentType().equals("audio/x-pn-realaudio") || fi.getContentType().equals("audio/x-pn-realaudio-plugin") || fi.getContentType().equals("audio/midi") || fi.getContentType().equals("audio/mid") || fi.getContentType().equals("audio/x-midi") || fi.getContentType().equals("audio/x-mid") || fi.getContentType().equals("audio/x-tone-seq") || fi.getContentType().equals("audio/imelody")
                                       || fi.getContentType().equals("video/mp4v-es") || fi.getContentType().equals("video/mp4") || fi.getContentType().equals("video/3gp") || fi.getContentType().equals("video/3gpp") || fi.getContentType().equals("video/mpeg") || fi.getContentType().equals("video-h263-2000"))
                                   System.out.println("Content from FileItem :  "+fi.getContentType());
                              File tempfile = new File(fi.getName());
                                    String imageFile=tempfile.getName();
                                    out.println("imageFile:" +imageFile);     
                                   imageFile= imageFile.replace(':','_');
                                   imageFile=imageFile.replace('\\','_');
                                   imageFile= imageFile.replace('/','_');
                                   imageFile= imageFile.replace(' ','_');
                                   System.out.println(imageFile);
                                  out.println("imageFile:"+imageFile);     
                                   int extIndex=0;
                                   String ext="";
                                  extIndex = imageFile.lastIndexOf(".");
                                  ext = imageFile.substring(extIndex+1);
                                                   if( ext.toLowerCase().equals("jpg") || ext.toLowerCase().equals("jpeg") || ext.toLowerCase().equals("jpe") || ext.toLowerCase().equals("bmp") || ext.toLowerCase().equals("gif")|| ext.toLowerCase().equals("png") || ext.toLowerCase().equals("wbmp")
                                                      || ext.toLowerCase().equals("amr") || ext.toLowerCase().equals("mp3") || ext.toLowerCase().equals("mp2") || ext.toLowerCase().equals("mpga") || ext.toLowerCase().equals("wav") || ext.toLowerCase().equals("midi") || ext.toLowerCase().equals("mid") || ext.toLowerCase().equals("kar") || ext.toLowerCase().equals("ra") || ext.toLowerCase().equals("ram") || ext.toLowerCase().equals("rm") || ext.toLowerCase().equals("au")
                                                      ||  ext.toLowerCase().equals("3gpp") || ext.toLowerCase().equals("3gp") || ext.toLowerCase().equals("mpeg") || ext.toLowerCase().equals("mpe") || ext.toLowerCase().equals("mpg") || ext.toLowerCase().equals("mp4") || ext.toLowerCase().equals("movie") || ext.toLowerCase().equals("avi") || ext.toLowerCase().equals("qt") || ext.toLowerCase().equals("mov") || ext.toLowerCase().equals("viv") || ext.toLowerCase().equals("vivo"))
                              File fNew = new File(application.getRealPath("/userImages/"),img_code+"_"+imageFile);
    //                         ImagePath =  imagepath+img_code+"_"+tempfile.getName();
                             ImagePath =  imagepath+img_code+"_"+imageFile;
                                   System.out.println("Image PAth : "+ImagePath);
    //                          ImagePath =  fNew.getAbsolutePath();
                              //out.println(fNew.toString());
                              ImageName = fNew.getName();
                                    System.out.println("Image Name : "+ImageName);
                                    out.println("ImageName:" +ImageName);     
                              fi.write(fNew);
                                    else
                                           System.out.println("Invalid File Type : "+ext);
                                           Error = "1: Invalid File Type/Extension : "+ext;
                            else
                                Error = "2: File uploaded is not valid.";
                       System.out.println("Content from FileItem :  "+fi.getContentType());
                                System.out.println("invalid Content Type");
                         else
                                Error = "";
                    else
                       Error = "3: File uploaded is not valid. Make sure that the image size does not exceed 300KB";
                       System.out.println("File uploaded is not valid.");
              else
                   session.setAttribute(fi.getFieldName(),fi.getString());
    session.setAttribute("ImagePath",ImagePath);
    session.setAttribute("ImageName",ImageName);
    session.setAttribute("barcodepath",barcodepath);
    //Added by Mutharasu on 30/08/2005
    session.setAttribute("tagpath",tagpath);
    Title = (String) session.getAttribute("txtTitle");
    if(Title.length()==0)
      Error = " Please Enter KoolTag Title : ";
    Key = (String) session.getAttribute("txtKey");
    URL = (String) session.getAttribute("txtURL");
    System.out.println("Key: "+ Key +", URL:"+URL);
    System.out.println("trace 5");
    if (ImagePath.trim().length()==0 && ImageName.trim().length()==0) {
       if (Key==null && URL==null)
          throw new Exception("4: "+Error);
    }

    Hi Vigneshwara,
    Please reopen a new thread in
    ASP.NET Getting Started forum because I can't move it there.
    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.

  • Corrupt LOG File MaxDB 7.5 (Netweaver 04)

    At the Installation the LOG went full. LOG-Mode = SINGLE.
    Then I have added a new LOG File. Nothing happens. After rebooting the maschine,
    the database doesnt come up, in krnldiag there is following:
    2004-11-14 22:46:30  7579     11000 vattach  '/sapdb/XI3/sapdata/DISKD0001' devno 1 T58 succeeded
    2004-11-14 22:46:30  7520     11597 IO       Open '/sapdb/XI3/saplog/DISKL001' successfull, fd: 16
    2004-11-14 22:46:30  7633     12821 TASKING  Thread 7633 starting
    2004-11-14 22:46:30  7632     11565 startup  DEVi started
    2004-11-14 22:46:30  7520     11597 IO       Open '/sapdb/XI3/saplog/DISKL001' successfull, fd: 17
    2004-11-14 22:46:30  7634     12821 TASKING  Thread 7634 starting
    2004-11-14 22:46:30  7633     11565 startup  DEVi started
    2004-11-14 22:46:30  7579     11000 vattach  '/sapdb/XI3/saplog/DISKL001' devno 2 T58 succeeded
    2004-11-14 22:46:30  7520     11597 IO       Open '/data2/sapdb/XI3/DISKL002' successfull, fd: 19
    2004-11-14 22:46:30  7635     12821 TASKING  Thread 7635 starting
    2004-11-14 22:46:30  7634     11565 startup  DEVi started
    2004-11-14 22:46:30  7520     11597 IO       Open '/data2/sapdb/XI3/DISKL002' successfull, fd: 20
    2004-11-14 22:46:30  7636     12821 TASKING  Thread 7636 starting
    2004-11-14 22:46:30  7635     11565 startup  DEVi started
    2004-11-14 22:46:30  7579     11000 vattach  '/data2/sapdb/XI3/DISKL002' devno 3 T58 succeeded
    2004-11-14 22:46:30  7579 ERR    30 IOMan    Log volume configuration corrupted: Linkage missmatch between volume 1 and 2
    2004-11-14 22:46:30  7579     11000 vdetach  '/sapdb/XI3/sapdata/DISKD0001' devno 1 T58
    2004-11-14 22:46:30  7520     12822 TASKING  Thread 7631 joining
    2004-11-14 22:46:30  7636     11565 startup  DEVi started
    2004-11-14 22:46:30  7631     11566 stop     DEVi stopped
    2004-11-14 22:46:30  7520     12822 TASKING  Thread 7632 joining
    2004-11-14 22:46:30  7579 ERR    16 Admin    RestartFilesystem failed with 'I/O error'
    2004-11-14 22:46:30  7579 ERR     8 Admin    ERROR 'disk_not_accessibl' CAUSED EMERGENCY SHUTDOWN
    2004-11-14 22:46:30  7579     12696 DBSTATE  Change DbState to 'SHUTDOWN'(25)
    Is there any way to delete the corrupt LOG files in order to add new one? The data file is ok.
    Thanks
    Helmut

    Thread was also opened on the Mailing list:
    Here is the answer
    Hi,
    in most situations an "add log volume" does not solve
    a log full situation, because the added logvolume is
    accessible first at the moment, when the write position
    on the log is at the end of the old logvolume.
    If a LOGFULL occurs, the save log!
    All "parts" of the LogVolume are numbered and each one
    has stored the identifying number of it's predecessor and
    it successor in it's header-page. The message
         "Linkage missmatch between volume"
    means, that these values does not match any more.
    Did you somehow changed the contents of this file/device?
    If so: can you revert the change? Then the restart should
    work again. do a logbackup and your database will run again.
    If this doesn't work for you, you could patch the
    header pages of the logvolume (I assume you do not really
    want this).
    Another way to solve the situation is to do a data backup
    in admin-mode, reinstall the database and recover the
    databackup, because the removal of a logvolume is not
    supported.
    kind regards, Martin

  • "zip" Terminal command no help fixing corrupt zip file; any other workarounds?

    I downloaded a ".zip" file containing some files that I need to access.
    When I double-click on it, I get the "Unable to unarchive 'xyz.zip' into '[foldername].' ( Error 1 - Operation not permitted )" message, which many people report when they try to open a corrupt zip file.
    I also tried opening the file with "StuffIt Expander," "Archive Utility," and "The Unarchiver," as well as some specialty zip-compression programs, but none were successful.
    I then installed the very useful "Archive.qlgenerator" plugin (http://homepage.mac.com/xdd/software/archive/) which allowed me to at least see inside the zip file using OSX's "QuickLook" feature. Lo and behold, all the files that were supposed to be in the zip file are indeed in there, as they should be. The problem is not that the zip file is empty, the problem is that it has become corrupted somehow.
    So, what I need to do is either "fix" the corrupted zip file, or alternately find some way to extract the needed files using brute force.
    Following tips given on various forums, I tried using OSX's "zip" command in terminal (http://homepage.mac.com/kelleherk/iblog/C1901548470/E731143104/index.html and http://hintsforums.macworld.com/showthread.php?t=132146). I was able to use it properly, but unfortunately neither the "-F" nor the "-FF" commands were of any helping in "fixing" the zip file. The "-F" command incorrectly said that the zip file was empty and that there was nothing to fix; the stronger "-FF" command came back with
    Could not find:
      xzy.z01
    Hit c      (change path to where this split file is)
        s      (skip this split)
        q      (abort archive - quit)
        e      (end this archive - no more splits)
        z      (look for .zip split - the last split)
    or ENTER  (try reading this split again):
    ...but none of the options produced any result. Pressing "z" gave me
    Could not find or open
      xyz.zip
    ...which means that even "-FF" could not get past whatever problem had corrupted the file.
    So: is there any built-in way for Mac OSX to fix or extract the contents of a zip file corrupted like this?
    Alternately, is there any third-party shareware or freeware that will do the trick?
    (I don't want to have to spend big $$$ on a commercial program since all I need to do is open a single zip file. And there is no way to contact the zip file's original creator, so I can't download an uncorrupted version.)
    Any help would be greatly appreciated.

    Mark:
    When I try your first suggestion in Terminal ("unzip -t /path/to/file"), I get this message:
    Archive:  /xyz.zip
      End-of-central-directory signature not found.  Either this file is not
      a zipfile, or it constitutes one disk of a multi-part archive.  In the
      latter case the central directory and zipfile comment will be found on
      the last disk(s) of this archive.
    unzip:  cannot find zipfile directory in one of /xyz.zip or
            /xyz.zip.zip, and cannot find /xyz.zip.ZIP, period.
    When I try your second suggestion ("unzip -l /path/to/file"), I get the exact same error message. (And yes, I am fixing "/path/to/file" to be the correct path to the actual file).
    And no, it is not really part of a multi-part archive. (Or at least it wasn't supposed to be; only one zip file is available, and there was only supposed to one.) Perhaps the zip was mis-encoded in the first place, so that the person who created it accidentally did something wrong which the unzip applications are interpreting as this file being part of a multi-part archive; but even so, all I have is this one file, so I need to fix it as is, or extract its contents as is, since I have no way to contact the original creator to do it right this time.

  • [svn:osmf:] 13000: Adding the missing readme file for the captioning sample app.

    Revision: 13000
    Revision: 13000
    Author:   [email protected]
    Date:     2009-12-16 10:36:36 -0800 (Wed, 16 Dec 2009)
    Log Message:
    Adding the missing readme file for the captioning sample app.
    Added Paths:
        osmf/trunk/apps/samples/plugins/CaptioningSample/readme.txt

    Carey,
    I have tried london1a1's workaround, and it has not made any difference.
    It seems that london1a1 suggests changing the Camera.h file in this location:
              Users/london1a1/Documents/DW_NAF/PhoneGapLib/PhoneGapLib/Classes/Camera.h
    Whereas you're saying to change the Camera.h file in this location:
              /Applications/Adobe Dreamweaver CS5.5/Configuration/NativeAppFramework/DWPhoneGap/iphone/PhoneGapLib/Classes/Camera.h
    I've tried changing the Camera.h file in both locations.  Neither has made a difference.

  • Bridge corrupts my files

    Hi:
    I this has happened to me with a number of files: Bridge corrupts them. I have succesfully transfered the files, NEF from Nikon D700, from the camera and they open fine in both bridge and photoshop (CS5). But after doing batch renaming and adding meta data to a large number of files, some are corrupt. I cannot open then or see preview. I get the error "Unexpected end of file".I can still see preview in finder, but now I'm un certain if that's just the embedded preview or if the file is actually ok.
    Unlike other entries on the subject, this is not caused by corrupt intermediate storage, flash or usb sticks. It's bridge that screws up.
    Two questions:
    1. How do I recover?
    2. How do I avoid this in the future? Is DNG the only way to ensure that Bridge/Photoshop won't screw up my files?
    Any help? Please?
    Thanks, Erik

    Two questions:
    1. How do I recover?
    2. How do I avoid this in the future? Is DNG the only way to ensure that Bridge/Photoshop won't screw up my files?
    Any help? Please?
    I would highly recommend that you run a good disk utility and look for problems on your HD, as this would be a very unusual problem for Bridge, but a likely problem from an underlying HD problem, like a corrupted directory file. This is a big red flag in my book.
    Are you saving settings in sidecar files (my preference) or the central XMP database? (Check your prefs if you're not sure). I strongly prefer sidecar files.
    DNG is not the answer to your problems - a DNG file can become corrupted just as easily as the XMP sidecar file. If you are just renaming files, the original RAW file should not become corrupted, as Bridge does not write info into the RAW file, it only re-writes the name.  Adding metadata should put data into the sidecar file, and again leave the RAW file untouched.  Have you looked to see if the original RAW files are unchanged? Have you looked at the sidecare files of "corrupted" images to see what happened to the XMP files?  Have you removed the offending XMP files and let Bridge "start over" with a new XMP sidecar file? The image itself should be ok.  I also assume that you're re-built the cache for the "bad" files to make sure that the problem is really with the files, and not the cache.
    Has any other non-Adobe software "touched" your files? The only time I have had this type of problem was when using PhotoMechanic to change some GPS data, then going back to Bridge CS5. For some reason, at times they don't play well together and the XMP gets foobarred. The versions of XMP that they use are different.
    Recover?  That depends on how you have backed up your images and how many backup copies you keep.  Hopefully, the original images are backed up as a last resort.  I often keep intermediate backups as well, after making significant changes to images or adding lots of custom metadata, and I copy to tape every morning at 0300.
    I'd start with a good hard look at your HD with the Apple Disk Utility, TechToolPro, or DiskWarrior (or all three).  If there is a problem and it doesn't get fixed, you'll have more problems down the road.
    Give us feedback on what you find and what your workflow is and I'm sure you'll get more advice.
    --Rich

  • Corrupt RAW files in Lightroom 5.

    I'm having an issue with corrupt RAW files in Lightroom 5. I have all of my RAW files stored on an external NAS system. Typically, I mainly work on my files on my PC's hard drive. The NAS is for storage only. However, in the past I have looked through the external files with Adobe Camera RAW and have called up files from there to work on, if it's a photo I want to rework. Recently I have started using Lightroom 5. So the other day, I added a folder from the NAS external to Lightroom 5 to look at some of the RAW files. A LOT of the files looked corrupt with white blocks and pink or yellow lines running across the photo. I closed lightroom and pulled up those same files in Adobe RAW and get the same issue. I copied them to my PC's hard drive and still have the issue. This has never happened until using Lightroom. I know Lightroom is not supposed to actually do anything to the files, however, this is very coincidental. Did Lightroom do something to these images, or was it coincidence that the files became corrupt at the same time I started using Lightroom? Any solutions?

    I am wondering about the drive. I know that it is not the CF card and it wasn't a reader for the following reasons. I download directly from the camera to the PC without a reader. I downloaded these last July and worked on them on and off for several weeks without issue. I have also pulled up the occasional file from this same batch a couple times this winter without issue. It was only when I pulled them up yesterday in Lightroom that this problem occurred.

  • GetCoreResourceModificationDate could not get path to timestamp file

    Porting my InDesign CS5.5 Plugin to InDesign CS6, when I build a debug version of the plugin and deploy it to the  InDesign CS6 Debug version and launch InDesign I get "PlugInData::GetCoreResourceModificationDate could not get path to timestamp file: C:\Program Files (x86)\Adobe\Adobe InDesign CS6 Debug\Plug-ins\SCC\(SCCINDDEXTRACTION V7.1.0.17 FOR CS6 Resources)\timestamp.idrc" which suggests that InDesign is expecting to find a "timestamp.idrc" file in the root of my plugin's resources subfolder. I have searched the sdk and google and have found nothing about a timestamp resource for InDesign plugins. Is my plugin resource (.rc or .fr file) supposed to include some kind of timestamp that would cause the resource compiler to generate a timestamp.idrc file?

    OK, I fixed this, but not sure how.
    I think the cache was corrupt.

  • Corrupt .hh files in RH 7

    Since upgrading to RH 7 I am having extensive problems with
    the .hh file corrupting any time I try to update a map ID. I have
    resorted to manually editing the .hh in notepad and then replacing
    the corrupt file. When adding or modifying an existing Map ID, one
    entry will start with invalid characters which I could only see
    when exporting the file to Excel. I then get a warning message on
    compile: "The Topic ID contains invalid characters." I am compiling
    in WinHelp 2000 format.
    Is this a bug in RH7? I'm not sure how I'm going to create
    new Help topics in Word and assign them Map IDs with this current
    problem. This particular file was originally on a co-worker's
    machine and I have taken over the file. Is there something in the
    .dot file or project file that could be set wrong?
    Also, I just opened a project that compiles perfectly in
    WinHelp 4.0 but has multiple warning and problems when compiled as
    a WinHelp 2000 help file. I was using RH 6, so there isn't a large
    gap in the versions. Upon further investigation, even WinHelp 2000
    files that compile perfectly, end up with corrupted .hh files when
    a new topic is added and assigned a Help ID.

    A caution on cindep's response.
    If the .hh or .h file has only ANSI data then this will work
    but if any UTF-8 data is present in the file then it will not work.
    For example, if the files has only English characters then it will
    work, if the file has English and Japanese characters then it will
    not work.

  • Corrupt DataLog file?

    Long time someone post something regarding the DataLog files.
    You know, File I/O\ Advanced File Functions\ DataLog
    Is it because it's "old skool" and there is something better now??
    Anyway, allow me to ask this question.
    I have several DataLog files, all of them I can read with the existing EXE file and LV development code except one
    I always get the error code 71 when reading that specific file.
    Since all files are made by one and the same LV EXE file I find that very strange.
    I then read several files using note pad to get an idea about what's inside.
    All files I can read starts with: DTLG €    #  !   $ @0ÿÿÿÿ
    The one I can't read has the same pattern from character 146 onward.
    I have no idea at all where those 145 characters came from ?!!?
    "Ç Started-20140508.dat C:\PROGRA~1\BEKAER~1\TIREIM~1\DataBase\STARTE~1.DAT   6   C:\Users\WU71AD~1.SHE\AppData\Local\Temp\STARTE~1.DAT ‘Å
    The first readable characters are the name of the file, the following path's, no idea!
    After the four ÿ characters I see the correct definitions of the cluster I use in all files, so that is rather good, I suppose.
    Easy solution I tried, delete the 145 erroneous characters but then I get error 42 :  LabVIEW:  Generic error. when reading the new file.
    Anyone an idea how to "uncorrput" this file correctly ?
    All happens in LV 8.6
    Thanks for reading
    Even more thanks for a solution!
    Best regards
    Alain

    Please post in the appropriate MS Office forum found @
    http://social.technet.microsoft.com/Forums/windows/en-US/05b33892-03db-4f09-bfdd-4e01c614f27c/corrupt-pst-file?forum=w7itproappcompat where you will find forums specifically for discussing issues with MS Office products.
    This is a Windows 7 forum for the discussion of Windows 7 operating system issues.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • Adding paths to my .profile

    Hi everyone,
    I have been trying to install Maker (a genome annotation pipeline) on my computer but I am kind of stuck in one of the steps, which is adding paths to my .profile (that I just recently created). This is what the manual suggests me to do:
    7.  Install MAKER. 
    a.  Unpack the MAKER tar file into the directory of your choice (i.e./usr/local). 
    b.  Now add the following to your .profile if you haven't already:        
          export ZOE="where_snap_is/Zoe"
          export AUGUSTUS_CONFIG_PATH="where_augustus_is/config  
    c.  Add the location where you installed MAKER and all prerequisite programs to your PATH variable in .profile.      
          (i.e. export PATH=/usr/local/maker/bin:$PATH).
    Then the manual tells me to add these path to my .profile
    PATH=/home/gmod/Documents/Software/maker/bin:$PATH
    PATH=/usr/local/ncbi-blast/bin:$PATH
    PATH=/usr/local/exonerate/bin:$PATH
    PATH=/usr/local/augustus/bin:$PATH
    PATH=/usr/local/snap:$PATH
    PATH=/usr/local/gm_es:$PATH
    PATH=/usr/local/RepeatMasker:$PATH
    export PATH
    export ZOE=/usr/local/snap
    export AUGUSTUS_CONFIG_PATH=/usr/local/augustus/config
    and then it says I should reload my .profile to make the changes take hold with the following command:
    source ~/.profile</div>
    However this command does not work...
    I already added all of these paths to my .profile, but when I enter the "echo $PATH" command the $PATH has not been modified. What have I done wrong? should I add these paths to my ".bash_profile" instead or another file?
    PLEASE HELP!!!
    PS. I am a biologist, so have in mind I do not really understand how terminal works.

    First of all, there are three possible initialization files for bash. Only one of them -- the first one found in the order below -- will be read:
    ~/.bash_profile
    ~/.bash_login
    ~/.profile
    So if you already have a ".bash_profile," then ".profile" will be ignored.
    PATH=/home/gmod/Documents/Software/maker/bin:$PATH
    That's may work on Linux, but not on the Mac. It should be
    PATH=~/Documents/Software/maker/bin:$PATH
    or
    PATH=$PATH:~/Documents/Software/maker/bin
    The latter form is preferable if you more often execute shell commands in the standard path, because it will be searched first. The other PATH assignments will work as is, if the paths are correct (and I don't know whether they are or not), or reversed as above.
    and then it says I should reload my .profile to make the changes take hold with the following command:
    source ~/.profile</div>
    However this command does not work...
    The command is garbled, but you don't need it anyway. Just close the Terminal window and open a new one.
    export ZOE=/usr/local/snap
    It looks like that should be
    export ZOE=/usr/local/snap/Zoe
    If your department has a competent IT person, you really should get help with this.

  • [svn] 2474: adding the eclipse development files

    Revision: 2474
    Author: [email protected]
    Date: 2008-07-14 13:29:25 -0700 (Mon, 14 Jul 2008)
    Log Message:
    adding the eclipse development files
    Added Paths:
    flex/sdk/trunk/development/eclipse/flex/flex4test/
    flex/sdk/trunk/development/eclipse/flex/flex4test/.actionScriptProperties
    flex/sdk/trunk/development/eclipse/flex/flex4test/.flexProperties
    flex/sdk/trunk/development/eclipse/flex/flex4test/.project
    flex/sdk/trunk/development/eclipse/flex/flex4test/.settings/
    flex/sdk/trunk/development/eclipse/flex/flex4test/.settings/org.eclipse.core.resources.pr efs
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/AddItemsTest.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/NewEffects.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/RemoveItemsTest.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/ScrollbarFrenzy.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/components/
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/components/CircularScrollBar.as
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/flex4test.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/skins/
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/skins/CircularScrollBarSkin.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/skins/CircularScrollBarTrackSkin.mx ml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/skins/MyScrollBarTrackSkin.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/skins/MyVScrollBarSkin.mxml

    Hi Cody,
    I have solved this problem.
    I had a fortran GNU compiler installed on my computer (for use with some simulation software on my computer), and this seems to have caused all the problems.  When I looked at the paths included by the Cross GCC it was refering to the fortran directory rather than the National Instruments directory.  To solve the problem, I have uninstalled the fortran software and now everything works, macros and paths properly populated by the Cross GCC.
    Maybe you have a better solution than to delete the fortran software?  Maybe modifying my $PATH environment variable so the NI path comes at the end rather than beginning?
    Thanks,
    Robert

  • [svn] 2473: adding the eclipse development files

    Revision: 2473
    Author: [email protected]
    Date: 2008-07-14 13:28:56 -0700 (Mon, 14 Jul 2008)
    Log Message:
    adding the eclipse development files
    Added Paths:
    flex/sdk/trunk/development/eclipse/flex/flex4/
    flex/sdk/trunk/development/eclipse/flex/flex4/.actionScriptProperties
    flex/sdk/trunk/development/eclipse/flex/flex4/.flexLibProperties
    flex/sdk/trunk/development/eclipse/flex/flex4/.project
    flex/sdk/trunk/development/eclipse/flex/flex4/.settings/
    flex/sdk/trunk/development/eclipse/flex/flex4/.settings/org.eclipse.core.resources.prefs

    Hi Cody,
    I have solved this problem.
    I had a fortran GNU compiler installed on my computer (for use with some simulation software on my computer), and this seems to have caused all the problems.  When I looked at the paths included by the Cross GCC it was refering to the fortran directory rather than the National Instruments directory.  To solve the problem, I have uninstalled the fortran software and now everything works, macros and paths properly populated by the Cross GCC.
    Maybe you have a better solution than to delete the fortran software?  Maybe modifying my $PATH environment variable so the NI path comes at the end rather than beginning?
    Thanks,
    Robert

Maybe you are looking for

  • AirPort Express frustations

    I have been at this for several days - no resolution. AirPort Express setup with a USB printer attached but cannot print on other than one computer. The iMac adjacent to the AE prints when connected to the ISP WiFi signal fine via the AE. I cannot ge

  • Why are some channels offered on Select TV service not offered on Premium?

    We get the Premium TV Service (we're in Maryland).  The lower-priced Select service offers a number of channels that are not offered on Premium (but are offered on the higher priced plans).  We're particulary interested in the BBC chanels, but there

  • Change email language

    I am working about customizing Oracle Collaboration Suite . I want to change email language in 2 dedicate mode : portlet & application , I have searched resource bundles for changing language and I have found two types of file, 1. 11 steps to install

  • Export iTunes Playlist to WPL format?

    I need to export my iTunes playlists to WMP format (.wpl files). Apparently, iTunes playlists are not DLNA/UPnP-compliant so they are not visible on Media Servers. I have a library of ~4000 songs and all songs, albums, artists and genres are visible

  • Importing keywords...

    Sorry, posted in wrong category, should be here: Well I just discovered something annoying... I imported about half of my existing library to try out LR. Along with the import, LR added all the keywords that were already associated with the files bei