QuickLook fails to recognize some text files

QuickLook previews most but not all doc, txt, html, php and css files. QuickLook will work on one file and fail on an apparently identical file, where both open cleanly in the same application when double clicked.
In some but not all cases, file metadata (viewed in Path Finder) shows difference in UTI and/or "Type" fields where QuickLook works with one and not the other. However, this is not consistent, and in any event I cannot find a way to either edit UTI or Type fields, or set file associations based on UTI or Type (file associations seem to be limited to file extension).
This behavior is the same on my MBP and iMac.
Does anyone else see this problem? Any suggestions?

Thanks for some of the ideas. Here is the status and info update so far:
Original location of photos were from an old PC in 2005 that was backed up onto this external hard drive. I recently came accross the hard drive and noticed that there were a large number of photos that had not yet been loaded into iphoto. This is where this all started.
Clicked and dragged from my external hard drive to the desktop - No success.
Iphoto version 9.3.2
Connected the external hard drive to my other computer (PC) and emailed a few to myself. From my Imac, opened my email and downloaded them to my desktop. It worked and iphoto recognized them. So I tried emailing more photos from my external hard drive connected to my Imac to  myself again, this time not from another pc but from my Imac. No success. So the lesson so far is that somehow it is making a difference in the file when I email the files from another computer (PC) and then save them to my desktop on my Imac.
I attached images of both file info. The one to the left of the photo is from the "fixed" file that somehow Iphoto recognizes after emailing it to myself, and yes it is RGB color. The one to the Right is the info screen of the original file. I see no difference in the file type between the two. However, this is from an untrained eye.
Given the amount of photos (approx 1500) I would have to email myself, I would like to know if there is another way to fix these files in lieu of going through this round about and time consuming fix via email.
Sorry for the image orientation. Everytime I attached it, the image went sideways.
Thanks!!

Similar Messages

  • W500 w/ Windows 7 64-Bit Ultimate fails to recognize some audio CDs

    My DVD/CD drive (a HL-DT-ST_DVDRAM_GSA-U20N) in my Lenovo W500 laptop (running Windows 7 64-Bit Ultimate) fails to recognize some audio CDs.
    It recognizes most audio CDs, but a few are not recognized by Windows 7 itself, or by any other program on my computer.
    These CDs are recognized by other Windows 7 computers.
    I don't think that it's a copy protection issue, since the CDs don't mention any copy protection scheme (and also since they work on other Windows 7 machines).
    One CD that wasn't recognized by my machine was the second CD from a two CD set (the first CD was correctly recognized).
    I have the latest updates for Windows, and all my programs, drivers, BIOS & firmware.
    Thanks.

    What kind of behavior are you getting from the drive? If it's spinning up, down, and up again your lens might be dirty or the drive could be failing. 
    If you do clean the lens, be careful. Do your research first or you might make it worse.
    Edit: Replacements are:
    42T2511 or 42T2541 (DVD)
    42T2543 or 42T2513 (DVD/CD-RW combo)
    42T2545, 42T2515 or 42T2551 (DVD-RAM/RW)
    You can get the 42T2543 for $23 and the 42T2545 for $45 on eBay.

  • Fail to write the text file

    hi,
    I met a problem when I try to store data to text file. That's the description:
    - To read some objects from the binary file
    - To update object state, do some operations
    - To output some properties of the object to text format file.
    That's a part of my code:
    {color:#0000ff}
    //------ begin ---------//
    // ".cluto" is a binary file where store the number of objects as the first object and a set of docVector object
    File cluto = new File (config3.getOutputPath (), config3.getOutputFileType () + ".cluto");
    ObjectInputStream reader1 = new ObjectInputStream (new BufferedInputStream (new FileInputStream (cluto), BUFFERSIZE));
    // output text file definition
    File rlabel = new File (config3.getOutputPath (), config3.getOutputFileType () + ".rlabel");
    BufferedWriter rlabelWriter = new BufferedWriter (new FileWriter (rlabel), BUFFERSIZE);
    // get the first object in ".cluto", the number of objects in the input binary file
    Integer vectorNumber = (Integer)reader1.readObject ();
    // temporal variable
    docVector tVector;
    for(int i=0; i<vectorNumber.intValue (); i++) {
    tVector = (docVector)reader1.readObject ();
    tVector.dimsPruning ();
    tVector.updateDimsWeight (config1.getWEIGHT_TYPE ());
    rlabelWriter.write (tVector.vectorLableToString ()); // tVector.vectorLabelToString() return a string!
    reader1.close ();
    rlabelWriter.flush ();
    rlabelWriter.close ();
    //------ end --------//
    {color}
    The program works and creates the file ".rlabel", but a binary file instead of text file! Anyone have ideas about this problem?
    Thanks

    Sorry, I means ".rlabel".
    Good news, I fix the problem. In my old code, the I/O stream keeps always opened when I write huge data to the file (See "for" loop). And after the loop, I close the stream.
    Now, I open and close the stream in each loop. The problem is resolved.
    that's the new code:
    // this function is used to write a string to a file
    /* write a string to a file */
    public void writeStringToFile (String content, String fileName) {       
    BufferedWriter writer = null;
    try {
    writer = new BufferedWriter (new FileWriter (fileName, true));
    writer.write (content);
    writer.close ();
    } catch (IOException ex) {
    ex.printStackTrace ();
    String rlabel = "test.rlabel";
    for(int i=0; i<vectorNumber.intValue (); i++) {
    tVector = (docVector)reader1.readObject ();
    tVector.dimsPruning (prunedTerm);
    writeStringToFile (tVector.vectorLableToString (), rlabel);
    //------- end ----------//
    I don't know whether the open/close operations in a large loop cost a lot.
    Thanks

  • File splitter won't accept some text files

    sorry, this is in the wrong place is there any way i can move it to general programming?
    i'm making a file splitter to split large text files into smaller parts. so far everything works as far as test files that i make, however, sometimes when i copy and paste text off the internet, for example, the splitter does not import any of the text as if it can't recognize it. what might i be able to do to get it to recognize this kind of text. the files were saved as ANSI encoding, if it matters.
    import java.util.*;
    import java.lang.*;
    import java.io.*;
    public class FileSplitter
        private File inFile;
        private Scanner scan;
        private String path;
        private String filename;
        private String ext;
        private File outFile;
        private String allData = "";
        //max chars in the file
        private final int FILE_LIMIT = 3500;
        public FileSplitter(String path, String name)
            try
                this.path = path;
                int dot = name.lastIndexOf('.');
                this.filename = name.substring(0,dot);
                this.ext = name.substring(dot,name.length());
                this.inFile = new File(path+name);
                this.scan = new Scanner(this.inFile);     
            catch(FileNotFoundException e)
                e.printStackTrace();
                System.out.println("File not found at:");
                System.out.println(path+filename);
        public void split()
            while(scan.hasNextLine())
                    allData = allData.concat(scan.nextLine());
                    //maybe input an "allData = allData.concat(\n);"
            int x = 0; // file portion sequence number
            int currIndex = 0;  // current index in "scan"
            String writeToFile = "";
            System.out.println(allData.length());
            while(currIndex <= allData.length())
                x++;
                System.out.println("Making file "+x);
                try
                    BufferedWriter out = new BufferedWriter(new FileWriter(path + filename + "-" + x + ext));
                    //System.out.println(currIndex);
                    //System.out.println(allData.length());
                    if(currIndex+FILE_LIMIT > allData.length())
                        writeToFile = allData.substring(currIndex, allData.length());
                    else
                        writeToFile = allData.substring(currIndex, currIndex+FILE_LIMIT);
                    out.write(writeToFile);
                    out.close();
                catch (IOException e)
                    e.printStackTrace();
                    System.out.println("File write error.");
                currIndex = currIndex + FILE_LIMIT;
        public static void main(String[] args)
            String path = "C:\\split\\";
            String filename = "file.txt";
            FileSplitter x = new FileSplitter(path, filename);
            x.split();
            System.out.println("Done.");
    }the program works perfectly for most files, but certain ones, and i'm not sure how they differ, do not get read at all. Is there a kind of text that will not get read? all files were saved with notepad.
    no error is thrown on these, but the length() function returns 0.
    i've also tried using scan.next() and nextByte() as well, to no success, with appropriate hasNext...() calls
    if anyone's wondering, this is to make files easily accessible to ipods with 4kb text file limits on what they can show.
    i am now thinking of accepting web pages as raw source and parsing out <...>

    Instead of using a Scanner why not use a BufferedReader which will handle files that use either '\n' or '\r' as line terminators. After all, all you are doing is reading the file in line by line and storing into a string with out the newline character.

  • DLL is failing to read the text file on RTOS

    I have created a DLL using Fortran Microsoft Power STation 4.0.  The DLL reads data from text files.  A vi is created to call this dll.  This vi is working fine in winodows.  It is reading from the text files and manipulates.
    When this vi is donwloaded to RTOS Labview 7.1, it fails to read the file and the RT reboots.  The error message is "file not found (filename)".  The file is present is the current directory of DLL.
    Please assist me in solving this problem.  My email Id is: [email protected] or [email protected]

    Hello GTRE,
    It seems like something isn't letting you access that DLL.  Do you have the DLL moved onto the RT target?  What is your real-time target?  Does the DLL require access to other resources?  What specifically does the error message say?  Does it contain an error code?
    Answering these questions will allow us to narrow down the problem - thanks!
    Janell R | Applications Engineer

  • Failed output to a text file

    Please help lookat the code, I am going to create a index file and put strings in it.
    However it is an empty file, why?
    Thanks in advance!
    import java.io.*;
    import java.util.regex.*;
    public class Parse
            public static void main(String args[])
                FileDownload d = new FileDownload();
                d.download(args[0]);
                String f = d.getFileName();
                    if (args.length == 1)
                            try
                                   BufferedReader br = new
                                            BufferedReader(new FileReader(f));
                                    String line;
                                    System.out.println(args[0]);
                                    String SearchTitle = args[0];
                                    System.out.println("The Search results are Saved in the Directory "+SearchTitle);
                                    String s1 = "<a href=\"/w/index.php?title="+SearchTitle+"&oldid=";
                                    while ((line=br.readLine())!=null){
         //searching for interesting occurences and performing respective actions
                                    int i = line.indexOf(s1);
                                    if(i != -1) // a result of -1 indicates the substring wasn't found
                                         File file = new File(args[0],"index.txt");
                                         FileWriter outFile = new FileWriter(file);
                                         BufferedWriter out1 = new BufferedWriter(outFile);
                                         Pattern p = Pattern.compile("oldid=([^\"]*)\"");
                                         Matcher m = p.matcher(line);
                                         if (m.find())
                                               String s2 = m.group(1);
                                               String s3 = "http://en.wikipedia.org/w/index.php?title="+SearchTitle+"&oldid="+s2;
                                               out1.write(s2); //here, failed to write into the file
                                               out1.newLine();                                        
                            catch (Exception e)
                        System.err.println("File input error");
                                    e.printStackTrace ();
                    else
                                    System.out.println("Invalid parameters, please check the argument");
    }

    I didn't actually read your code, but I don't see a call to close() - so that's one possibility. I didn't see any debug either, so if i == 1 you don't write anything either, so that's a possibility. And if m.find() never returns true you don't write anything, so there's another.
    Good luck
    Lee
    PS: I now see your comment - did you get an exception? How do you know you got to that line of code?

  • ITunes 7.3 won't recognize some mp3 files

    I'm using iTunes 7.3 on a dual-G5 with Mac OS X 10.4.10. After upgrading, I noticed that some tracks were missing from my iTunes Library, even though they are in the iTunes Music folder. When I tried to reimport these files (by dragging them from the Finder the iTunes Library), nothing happened.
    Special notes: My iTunes Music folder is not in Users/Me/Music; it's on a second local hard drive. Also, I'm not entirely certain that this problem started after upgrading to iTunes 7.3; it could have happened under an earlier version and I just didn't notice.
    Investigating a little bit further, I discovered that the problematic files were all MP3 format, at least as far as I can tell. I checked them out in Media Rage (trial download) and found that their ID3 tags were empty. Now, let me point out that these were files that I ripped myself from CD, probably several years ago since I have used AAC for my more recent rips. I do know that these files and their ID3 tags worked fine and within the last year or so, which means that somewhere along the line iTunes destroyed the ID3 tags and stopped recognizing these files.
    I confirmed that these files can play properly in QuickTime player. I also tried adding the ID3 tags back in using Media Rage (and ID3 v2.3.0), but iTunes still will not recognize them.
    I also tried completely reinstalling iTunes, by deleting Applications/iTunes, Users/Me/Music/iTunes, and all the Users/Me/Library/Preferences plists associated with iTunes, and then downloading iTunes from www.apple.com, but this didn't solve the problem either.
    PowerMac G5   Mac OS X (10.4.10)  

    I have the same problem.
    I've had these songs in itunes & on my ipod before for awhile & they played just fine. I upgraded itunes & everything seemed fine, until I auto synced my ipod & I get this message saying that five files aren't copied to the ipod because the ipod won't play them. Then I try to play them in itunes & itunes won't play them, even though they show up in the library & are MP3s. Quicktime player & VLC both play these files still...
    I have no idea what could cause the error for these random 5 songs, which are not related to each other & come off the same CDs as other songs which are still able to be played...

  • OS X 10.4.3 fails to recognize some bundles (packages)

    The copy of OS X 10.4.3 on my main drive suddenly does not recognize most .bundle packages, causing my software development to fail when bundles must be copied. Booting instead from an external drive running 10.4.3 shows the same .bundle files as bundles, with the bundle icon. TechTool 4.1.1 verifies that these .bundle files have their bundle bits properly set. What could have caused this to happen? Is there any way to fix it short of re-installing OS X 10?
    Powerbook G4   Mac OS X (10.4.3)  

    Hi, g and joel —
    Have you tried rebuilding the Launch Services database?
    You probably know much more about this than I — but, in case not, here are a few references on the topic of maintenance/rebuilding of the Launch Services database:
        (a) MarkDouma®, "Re: Disk Activity Extremely High ", Dec 1, 2005 8:29 AM — includes link to an AppleScript
        (b) osxFAQ Trouble-Shooting IV (Advanced) - Launch Services — describes terminal commands for using lsregister
        (c) RCDefaultApp (freeware)
        (d) e Cocktail 3.7 »» Maintenance »» Reset: LaunchServices database or
            OnyX 1.6.7 »» System »» Misc. »» Rebuild LaunchServices Database (freeware).
    HTH!
    Regards,
    Dean
    [1,857]

  • JDeveloper 11.1.1.2.0 does not recognize some CVS files

    Hi,
    We have been using JDev 11.1.1.1.0 with no problems. We installed 11.1.1.2.0 into a SEPARATE directory (and did NOT migrate settings). We configured 11.1.1.2.0 as we had for 11.1.1.1.0.
    All our applications use CVS for source control - we normally use WinCVS and JDeveloper on the same directory.
    We then opened an application which we had previously been working in 11.1.1.1.0 (no file migration occurred - I assume because the jws and jpr are unchanged from 11.1.1.1.0 and 11.1.1.2.0). All the files are present (as expected) in the application navigator. However, we discovered that SOME of the files are NOT mark as being under CVS. So we are missing the version icon in the navigator and all the Versioning options (right-click) for those files are missing.
    The files in these directories OK (have versioning):
    Project Source Paths:
    D:\appname\src\java (Java source directory)
    D:\appname\src\web (Web app directory - often this is missing files in its ROOT directory, subdirs are OK.)
    Resources:
    D:\appname\src\config
    The files in these directories are NOT OK (shown in navigator, but no versioning):
    D:\appname\src\ant (contains .xml, .properties, etc)
    D:\appname\src\lst (contains .lst)
    - We did a fresh CVS checkout using JDeveloper - same problem.
    - We tried playing with removing and readding resources from the Project Source paths. No luck.
    Any ideas?
    Thanks.
    Bob

    Hi Paul,
    Restart did NOT fix it.
    CVS configuration is fine - I created a CVS connection and successfully did a fresh check out of a project. Even this fresh checkout has the same files missing the "Versioning" status in the Application Navigator.
    We're hoping it's a configuration setting... It may be a bug I suppose...
    Thanks.
    Bob

  • ITunes Won'r Recognize Some MP3 Files

    I have 2400+ MP3 files in My Music folder. All were ripped using the same DVD-+RW drive, same software (WMP 10.0) and same settings (192Kbps). All were ripped within several days of each other, all from purchased CD albums.
    When I tried to add these files to my brand new iTunes library (in order to transfer to my brand new 5G iPod) iTunes only recognized 1802 files. I attempted to manually add the files that weren't recognized, no joy (no error messages either, nothing). I researched the issue; I made sure the file folder permissions were appropriately set; I scanned the hard drive for physical defects; I defragmented the drive; I ran several ID3 tag verifier utilities; I played the "problem" MP3 files on every other music player software I own (WMP 10.0, RealPlayer, MusicMatch) and they played flawlessly. Lastly, I attempted to re-rip the files directly to iTunes from the original CDs; that worked, so I can safely assume there are no copyright or protected-file issues to deal with.
    Short of re-ripping 600+ music files to iTunes manually, does anyone have any suggestions as to what I can do to get these files onto iTunes?
    HP 7160   Windows XP  
    HP 7160   Windows XP  

    I have the same problem.
    I've had these songs in itunes & on my ipod before for awhile & they played just fine. I upgraded itunes & everything seemed fine, until I auto synced my ipod & I get this message saying that five files aren't copied to the ipod because the ipod won't play them. Then I try to play them in itunes & itunes won't play them, even though they show up in the library & are MP3s. Quicktime player & VLC both play these files still...
    I have no idea what could cause the error for these random 5 songs, which are not related to each other & come off the same CDs as other songs which are still able to be played...

  • Scandisk or defrag fail to recognize hd volume

    hello all, and happy holidays.
    i've had this issue b4 but didnt pay too much attention to it, but now it has happened again so i am a bit bothered.
    i have seagate 7200.7 120GB sata drive with ncq hooked to the nvidia sata controller #2.
    The drive has 8 volumes (c-j), c,d,e,g,h are ntfs, the others fat32.
    Sometime when my computer hangs and i've to reset it, scandisk fails to recognize some volumes (totally random this time f,i, always fat32) as valid win xp volumes.
    I can still open these volumes and read and write to them, but cant run defrag (i use disk keeper pro) on them, or for that matter anyother hdd tools like windows scandisk etc.
    Now when ever i reboot, scandisk kicks in complaining that it cant scan non-xp drives.
    My options include turning off scandisk, reformatting (loads of data on them, really not a good option), find out whats causing it!!
    So anyone here help me work on option three 
    Rest of the system is in the signature.
    thanks.

    4184
    Hello again tcdm1972,
    This quote from a MicroMat technician is misleading and makes me wonder about abusingly promoting defragmentation (and using their products) as so necessary.
    Yes, in certain rare cases one might benefit from defragmenting HD and HD free space, but in Mac OS X it is not so black and white question.
    - In the more general usage of Mac OS X, defragmentation is actually counter-productive and defeats the very clever way Mac OS X has to rewrite every file on-the-fly onto the best possible location at this very moment, each time an application uses it.
    Best location on the hard drive varies, depending on many more criteria than the simple contiguity.
    About the term "optimization" in Apple software installs:
    I find it misleading too, as all it optimizes is the launching of applications in Mac OS X
    (it's the "update_prebinding" command really, nothing to do with defragmentation).
    About OnyX, Yasu etc:
    These too are small utilities to run quite harmless Terminal commands. They don't play in the same fields, nothing neither to do with defragmentation.
    DiskWarrior too has yet another approach: Directory handling.
    So, your original question about using iDefrag:
    On their website they state
    "To defragment your boot volume, you need to boot from a different volume"
    as I said.
    In your case, the solution is clear:
    since you have two boot partitions on your HD,
    - boot from Partition 1 to defrag Partition 2,
    and
    - boot from Partition 2 to defrag Partition 1.
    That is, a copy of iDefrag installed on each of your Mac OS X volumes.
    Axl

  • Powershell script - how to read a registry hive and store the value in text file and then again read the text file to write the values back in registry

    Hi All,
    powershell script Method required to read a value from registry and then taking the backup of that values in some text file.
    For example the hive is
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment\Path
    and under path i need to take back up  of values in some text file and then put some value in the registry after back is taken in text file.
    Also how to read the text file values so that we can again write to registry hive  back from the back up text file.
    Your help is much appreciated.
    Umeed4u

    I think you need to read this first:
    http://social.technet.microsoft.com/Forums/scriptcenter/en-US/a0def745-4831-4de0-a040-63b63e7be7ae/posting-guidelines?forum=ITCG
    Don't retire TechNet! -
    (Don't give up yet - 12,830+ strong and growing)

  • How to load a text file (ASCII) into a TS string variable?

    I need to load a ASCII file into a TS string variable for subsequent processing. I tried the SecuenceBuilder DLL (in the examples directory) but it seems that this DLL has a bug. Some text files are not loaded properly. I have also tried the kernel32 functions (openfile, createfile, readfile ... ) handling them as a C program, but with no success. The property loader feature of TS is not the suitable solution for me, because I would have to modify all my text files to include some specific fields (step name, variables, starmarker ...). Doy you know an alternative procedure to load text files or any DLL that implements what I look for ? Any help would be grateful. Cesar ([email protected])

    Hi Cesar,
    I don't know if you have found a solution, but attached is a DLL built in VC that will read the text out of a file into a TestStand variable. The attached sequence file \SequenceFile1.seq contains a step type that is set to call the DLL responsible for reading the file. It reads the file specified under Step.FilePath and stores the data in Step.ReadData. Please let me know if this works for you. I have attached the source as well.
    Regards,
    Bob
    Attachments:
    ReadFile.zip ‏3628 KB

  • Display tokens in text file

    Hello All;
    I am working on some text file update VI's, and I am having quite a bit of trouble with tokens...
    In order to get all my offsets and such correct, I need to input a text file (using Read From Text File), but I want to display all tokens with the text. I've played around with the Scan String for Tokens VI, but cannot get it to do what I want it to.
    I am attaching a sample text file.  Is there a quick way of doing this?  (i.e. read from file, put into string, scan entire string and output same string with both text and tokens visible)...
    Thanks.
    D. J. Hanna
    Attachments:
    Default.txt ‏1 KB

    Hi Hannamon,
    then you shouldn't attach a text file that definitely looks like an ini-file
    When you can't use the config file functions you have to program all their possibilieties on your own
    Well, I would try to use the string functions (like Scan from string, Match pattern, Spreadsheet string to array,...).
    See the attachment to get a clue.
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome
    Attachments:
    ParseString_LV71.vi ‏41 KB

  • I can´t edit the text files with SAP BODS 3.2

    Hello
    I can not edit some text files 9-20 megabytes to replace two words in each file, the source is a text file and the same destination but with different name, because with the same name have been unable . My idea is to remove the original and stay with the new performing edition but that if he does , let me file this way:
    SALES_ORDERS_FULL_20140223_150051_006.xml ( ORIGINAL )
    should leave it with me so : SALES_ORDERS_FULL_20140223_150051_006.xml _OLD (AMENDED )
    but strangely leaves me so :
    MICROSOFT_SQL_SERVER_KCC-BI_REPO_KHSA_XI_REPO_KHSA_XI_1543_5434_2_3_Long_INVOICES_INCREMENTAL_20140225_034004_001_xml_dat.txt  (not deseased)
    The type of data you use is long since varchar not allow me because it cuts my data file , use varchar (50000000) but takes the information and short .
    I am using long data type , modify the file and I pass the name of the text files of sap bods for global variables. They are a series of files that are called by a while loop
    Thanks for your answers
    regards

    HIr
    Yes, first I convert long_to_varchar for edit, and convert varchar_to_long.
    I edit before before and later
    Thanks

Maybe you are looking for

  • ITunes Match won't recognize my MBA equipped with a new SSD

    Hi, Here's the situation: I replaced the SSD in my late 2010 MBA to add storage space. Everything went perfectly well and I have been using it for weeks, no problem whatsoever with any of my iCould stuff - calednar entries, contacts etc. as everythin

  • There was a Problem connecting to the Server. Can anyone Help.

    I'm get a Error. There was a problem connecting to the server.   URLs with the type "file:" are not supported

  • Console Problems

    Recently I had to open my console program was opened when I was uninstalling a program. However, now when I open it it give the following over and over: Looking for devices matching vendor ID=1193 and product ID=8718 I'm guessing this is not normal.

  • Sql text

    Hi all, i checked from sid,serial#,sql_id from gv$session_longops where time_remaining!=0; i would like to check the complete sql_text that is executing. I have tried from select sql_fulltext from gv$sql; but i can't able to see complete sql command.

  • MAC PRO Internal USB ports stopped working

    Hello, I have a mac pro 8 core with an USB internal ports problem, the 2 in front are not working anymore, and from the 3 in the back only the middle one is working. I tried to pull all the power out for a whole night, resetting the pram and nvram bu