Coldfusion 9.01 no longer recognizes virtual directories

Hi -
I have an application that has been working fine for over a year and now anything that references Virtual Directories no longer functions.  Here are the details:
Coldfusion is running on Windows Server 2003 Enterprise.
Using IIS6 for the web server on the same box.
I have several virtual directories setup that reference files on another server on the same network.
What I did to break things... I installed Apache (the latest release) along with PHP - but I set Apache up to listen on a different port (8080). Suddently any part of my code that tries to reference a file that is found through a virtual directory generates the following error:
An error occurred when performing a file operation exists on file /serverpdfs/130kPDFs/137485.pdf.
The cause of this exception was: org.apache.commons.vfs.FileSystemException: Could not determine the type of file "http://www.mybp-graphics.com/serverpdfs/130kPDFs/137485.pdf"..
Here's the actual code that generated that error:
<cfset filename = "http://www.mybp-graphics.com/serverpdfs/130kPDFs\137485.pdf">
     then within a table...
     <cfif FileExists("#filename#")>
    <td>Yes File</td>
    <cfelse>
    <td>No file</td>
    </cfif>
The "serverpdfs" is the virtual directory inside the website "mybp-graphics.com". If I look in IIS the directory is there, I can see all the files in it - it seems to be working fine.
I first experienced the problem when we tried to open a PDF for viewing by using <CFCONTENT> - the same type error occurs.
What is especially suspicious is that the exception was was "org.apache.commons.cfs.FileSystemException" - This error still persists even though I have done the following:
1.  Completely de-installed Apache and hid the PHP directory.
2.  Re-installed ColdFusion from scratch.
Any direction would be greatly appreciated - this error is affecting multiple modules of a website that is used constantly by both our customers and our internal employees.
If this should be posted in a different area of the forum please let me know.
Thanks
Curt

Sean,
Thanks for your reply - in regards to the "FileExists()" - I had set that up as a quick test and received the same error (essentially) as my primary code that is generating the eror. Below is the actual code that generates the error - along with the full output of the error message below;
The code calls another file to actually "push" the PDF I am trying to open - hopefully the code all makes sense. The CFSET code calculates the file name as files are stored in different sub-directories. This code has worked well for over a year.
As for the 500 error - I suspect that is a permissions issue - that folder is not publicly accessible - but it is to the coldfusion user account - and thus it serves it up.
Code:
------- Both the primary module and the called module ---
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<!--- This file calls the push file routine and passes along the parameters.  It also acts as the "shell" to open the new window.
          First we have to check and make sure that the random number matches up with the job number. --->
          <cfquery name="qRandom" datasource="BPOffice">
              SELECT           OrderNum, Random
        FROM           JobOrder_Data.db
        WHERE   (OrderNum = #URL.fn#) AND (Random = #URL.rnd#)
    </cfquery>
<body>  
          <cfif qRandom.RecordCount EQ 1>
        <cfset variables.MIMEType="application/pdf">     
        <cfset variables.FileName = "http://www.mybp-graphics.com/serverpdfs/" & "#(Int(URL.fn/10000)*10)#" & "kPDFs" & "#URL.fn#" & ".pdf">
        <cfset variables.Displaytype="inline">  
        <cf_pushfile
          FileName=#variables.FileName#
          MIMEType=#variables.MIMEType#
          DisplayType=#variables.DisplayType#>
    <cfelse>
           Error - no file found.
    </cfif>
</body>
</html>
======= Now the CF_PUSHFILE code ======
<cfset variables.FileToPush=attributes.FileName>
<cfheader
   name="content-disposition"
   value="#attributes.DisplayType#; filename=#attributes.FileName#">
<cfcontent
   type="#attributes.MIMEType#"
   file=#variables.FileToPush#>
==========END OF PUSHFILE CODE============
-----End of Code
Error:
An error occurred when performing a file operation exists on file /serverpdfs/130kPDFs/137623.pdf.
The cause of this exception was: org.apache.commons.vfs.FileSystemException: Could not determine the type of file "http://www.mybp-graphics.com/serverpdfs/130kPDFs/137623.pdf"..
The error occurred in C:/Inetpub/wwwroot/Paradox/open_pdf.cfm: line 38
36 : <cfheader name="Content-Disposition" value="inline; filename=#variables.ShortName#"> 37 : <cfheader name="Expires" value="#Now()#"> 38 : <cfcontent type="application/pdf" file="#variables.FileName#"> 39 : 40 :
Resources:
Check the ColdFusion documentation to verify that you are using the correct syntax.
Search the Knowledge Base to find a solution to your problem.
Browser
Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.162 Safari/535.19
Remote Address
192.168.0.16
Referrer
http://bpweb/paradox/ShowJobOrder.cfm?cfJobNumber=&CFGRIDKEY=137623
Date/Time
01-May-12 12:19 PM
Stack Trace
at cfopen_pdf2ecfm1312221362.runPage(C:/Inetpub/wwwroot/Paradox/open_pdf.cfm:38) at cfopen_pdf2ecfm1312221362.runPage(C:/Inetpub/wwwroot/Paradox/open_pdf.cfm:38)
org.apache.commons.vfs.FileSystemException: Could not determine the type of file "http://www.mybp-graphics.com/serverpdfs/130kPDFs/137623.pdf". at org.apache.commons.vfs.provider.AbstractFileObject.attach(AbstractFileObject.java:1305) at org.apache.commons.vfs.provider.AbstractFileObject.getType(AbstractFileObject.java:412) at org.apache.commons.vfs.provider.AbstractFileObject.exists(AbstractFileObject.java:402) at coldfusion.vfs.VFile.exists(VFile.java:230) at coldfusion.tagext.net.ContentTag.doStartTag(ContentTag.java:178) at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2722) at cfopen_pdf2ecfm1312221362.runPage(C:\Inetpub\wwwroot\Paradox\open_pdf.cfm:38) at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:231) at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:416) at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65) at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:381) at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48) at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40) at coldfusion.filter.PathFilter.invoke(PathFilter.java:94) at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70) at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8) at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38) at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46) at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38) at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22) at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62) at coldfusion.CfmServlet.service(CfmServlet.java:200) at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89) at jrun.servlet.FilterChain.doFilter(FilterChain.java:86) at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42 ) at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46) at jrun.servlet.FilterChain.doFilter(FilterChain.java:94) at jrun.servlet.FilterChain.service(FilterChain.java:101) at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106) at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42) at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286) at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543) at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203) at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320) at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428) at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266) at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66) Caused by: org.apache.commons.vfs.FileSystemException: HEAD method failed for "http://www.mybp-graphics.com/serverpdfs/130kPDFs/137623.pdf". at org.apache.commons.vfs.provider.http.HttpFileObject.doGetType(HttpFileObject.java:96) at org.apache.commons.vfs.provider.AbstractFileObject.attach(AbstractFileObject.java:1296) ... 36 more
As you'll notice I am getting the same "org.apache.commons.vfs" error as before.
Any further thoughts would be greatly appreciated.
Thanks
Curt

Similar Messages

  • DV9000 No longer recognizes my CD-ROM drive

     HI guys, I am by no means a computer guy, but I have been trying to figure out why my laptop no longer recognizes my CD drive.  It had the 3 yellow exclimation points in the devise manager, 2 for Base System Device and 1 for Coprocesser.  I updated the drivers which did get rid of the exclimation points, but now my CD drive is no longer listed in the Device manager.  I did an internet search and it says I need to delete the upper and lower filters, but when I go to the registy as I am instructed there are no listings for either one.  Someone suggersted I install a virtual drive so I downloaded magicdisc which did bring the CD-ROM entry back to the device manager but its only the one for magicdisc, my origanal drive is still not recognized.  I have tried everything and would really appreciate any help you can offer.  Thanks

    Hi:
    You can try one of the resolution steps, 2, 3, 4, or 5.
    One of those steps will normally resolve the problem.
    http://support.microsoft.com/kb/314060
    The other problem that could be specifically related to your dv9xxx model, is the fact that the motherboard is going out and picked just now to do so.
    Some of the most common problems with the dv9xxx motherboards are the sudden and unexplainable disappearances of:
    Wireless
    Audio
    DVD drive
    Video
    These problems are all related to the motherboard defects that were prevalent in this model, and the only resolution you would have would be to replace the motherboard (not recommended), or use an external USB DVD drive.

  • Virtual Directories and ColfFusion

    This is really hot but I need to know what happens when
    ColdFusion accessed a Virtual Directory. Does any one have a
    architect of this for ColdFusion?
    This is REALLY HOT and I need this ASAP. I have the following
    but I need to add the VD part.
    Jim

    > ColdFusion accessed a Virtual Directory
    I'm guessing you mean Virtual Directories in IIS?
    I don't think CF is the one actually accessing these
    directories? I think IIS
    simply has a map from the virtual to the physical, and it's
    the physical that IIS
    passes to CF?
    Meaning, CF is unaware of the Virtual Directory? This is not
    to say that .cfm
    files located in Virtual Directories do not get processed by
    CF.
    Good luck!

  • I recently upgraded iTunes to 11.1.4.62 and then itunes would no longer recognize my iphone 4s and iPod

    I recently upgraded iTunes to 11.1.4.62 and then itunes would no longer recognize my iphone 4s and iPod although I can see the iphone but NOT the iPod on the computer (windows 8.1 Pro).  I checked everything , cable, services, stop and start and automatice, etc.and went through all the steps on the apple support site, to include removing all apple software in the designated order and reinstalling it.  iTunes still doesn't see the iphone.
    The Apple iPhone shows up only under protable Devices in the Device Manager window and has a Yellow ! warning triangle, and there is no Apple USB controller in the devices menu.under Universal Serial Bus Controllers. When I look under the properties of the Apple iphone, it says in Device Status, to reinstall the drivers for this device (Code 18).
    When I do this,  I get the following: "Windows found driver softweare for you device but encountered an error when attempting to install it" Apple Mobile Device Driver One of the installers for th this device cannot perform the installation at this time. I tried both suggested locations on the C: drive.
    Also I can't seem to find out how to install the Apple USB Contoller or is that related to the problem above?
    The iphone and my ipod work fine with this version of itunes on Windows 7 on my laptop.  is it possible that I am missing a critical update from Microsoft on the driver and USB controller?  I have been leery of installing them since my computer had problems with some updates in January.
    I 've tried every thing listed in this forum, I think, and the Apple support page on this subject.  Please help!

    Version 11.1.5.5 of iTunes was just released today. If you update to that, does that help with the recognition troubles?
    http://www.apple.com/itunes/download/

  • I'd love some help trying to figure out why my 2008 MacBook no longer recognizes my external drive and now is not downloading photos from my iphone....?

    After many years of having no problems at all on my Macbook, I recently figured I should finally upgrade my OS. I did that about three weeks ago, updating to Snow Leopard (10.6.8). I used Time Machine at least once after the OS upgrade but now Time Machine no longer recognizes the external drive I have used for all these years to back up. The MacBook does not "see" it. (Disk Utility does however.) The computer then also stopped recognizing another La Cie back-up that I have and now... my iPhone cannot download photos? Yikes.
    I have, of course, shut down numerous times, used different cables (that worked for some) and the two USB drives. I even used a firewire. Nothing worked. I also tried to "Repair disk" on Disk Utility. It didn't work either, giving me an error (that I didn't save, sorry).
    I read many other discussions on the file format of the external drive and of course I'd be happy to reformat the external drives--however, it is obviously a tad nerve-wracking to reformat drives before having an accessible back-up. Suggestions? I do not remember what file format they have but am pretty sure it's not the Mac file system someone mentioned. The drives are a 2009 WD "My Passport Elite" and La Cie 2007 d2 Quadra,
    In terms of other hardware available, we do have another MacBook Air but it has  started rejecting both drives as well (without the Snow Leopard upgrade). We have an old Dell but it wouldn't have the disk space to help out much.
    Any thoughts on the process involved would be welcome.  Any ideas on the iPhone rejection would be helpful as well! It is a 30gig iPhone 4 that has 20 or so gigs free (not clear as iTunes says that there are abour 18 Gigs on the phone but 24 free gigs? I may be bad at math but that's 40 gigs...).
    I am checking out iCloud but apparently there are only 55 gigs available?
    Will be glad to hear any thoughts. Thanks!

    Good afternoon Lyssa,
    Phew. First of all, thanks in advance...these blogs are always comforting help!
    So, to answer your questions: For the age of the hard drive.Well, I added memory a couple of years ago (RAM and hard drive). Being a mom leads me to eat up a fair amount of gigs with photos of my kids and, in fact, I think I entirely replaced the original drive, so it is a couple years younger than 2008 since I did that in March 2010. If there is some way to verify that (whether or not I replaced the entire drive), I'm all ears. I have 311 Gigs free, so it is not a space issue. I verified the startup disk on Disk Utilityand nothing showed up.
    Question 1- What formats...
    The La Cie is format Windows NT Filesystem 3G ....At the time that I bought it I was still using a PC as well as a Mac and was told by afriend to use this format...
    The WD is Mac OS Extended (Journaled). I again tried to repair the WD last night and this is the error message: "Error: DiskUtility can’t repair this disk. Back up as many of your files as possible, reformat the disk, and restore your backed-up files."
    Also, Time Machine tried again to back-up and gave  me this error: "Files can't becopied onto the backup disk because it appears to be 'read only'. You may needto repair or reformat the disk using Disk Utility. If the disk can't berepaired, you must use a different disk for backups. Open Time Machinepreferences to select a different backup disk."
    Question 2. Other cables...
    I used two other cables with the WD and that didn't change anything.  
    Question 3... Fire Wire from the La Cie
    Yes, I used the Firewire cable from the La Cie and it is indeed present, though still not visible in Finder. Since it is not Mac OSExtended I know that I can't use Time Machine with it.  
    So, in summary...
    I can plug in the La Cie and it is functional on the MacBook, visible on Disk Utility but not visible in Finder. The WD drive is not visible and not functional. So we can think it is indeed the WD that is not working.... Also, the iphone photos did, in the end, get downloaded, so it is not something more general.
    Causes...
    I forgot to mention that there is a "lost+found" file on the WD which apparently points to a UNIX /OS issue?   
    Some kind of "insurance"?....
    I'm curious about how people avoid this kind of issue. You just regularly replace back-up drives and hard drives before problems come up? Time Machine is great and saves many of us from disasters, however, knowing that your Time Machine back-ups are vulnerable makes the whole system insecure. No way to have alarms ring before the drive goes out?   
    As for ways ahead...
    It seems that I ought to be able to copy off of the WD to the MacBook then erase it and reformat it and start over again. However, I haven’t been able to see its contents except on random occasions. If you have any ideas on how to copy the Time Machineback-ups from the WD, again, I'm all ears!
    Good afternoon Lyssa,
    Phew. First of all, thanks in advance...
    So, to answer your questions:
    For the age of the hard drive. Well, I added memory a coupleof years ago (RAM and hard drive). Being a mom leads me to eat up a fair amountof gigs with photos of my kids ….and, in fact, I think I entirely replaced theoriginal drive, so it is a couple years younger than 2008 since I did that inMarch 2010. If there is some way to verify that, I'm all ears. I have 311 Gigfree, so it is not a space issue. I verified the startup disk on Disk Utilityand nothing showed up.
    Question 1- What formats...
    The La Cie is format Windows NT Filesystem 3G ....At thetime that I bought it I was still using a PC as well as a Mac and was told by afriend to use this format...
    The WD is Mac OS Extended (Journaled). I again tried torepair the WD last night and this is the error message: "Error: DiskUtility can’t repair this disk. Back up as many of your files as possible,reformat the disk, and restore your backed-up files."
    Also, Time Machine tried again to back-up and gave me thiserror: "Files can't be copied onto the backup disk because it appearsto be 'read only'. You may need to repair or reformat the disk using DiskUtility. If the disk can't be repaired, you must use a different disk forbackups. Open Time Machine preferences to select a different backup disk."
    Question 2. Other cables...
    I used two other cables with the WD and that didn't changeanything.
    Question 3... Fire Wire from the La Cie
    Yes, I used the Firewire cable from the La Cie and it isindeed accessible, though still not visible in Finder. Since it is not Mac OSExtended I know that I can't use Time Machine with it.
    FYI...
    So, in summary... I can plug in the La Cie and it is “functional” on theMacBook but not visible in Finder. The WD drive is not visible and notfunctional. So we can think it is indeed the WD that is not working.... ALSO,the iphone photos did, in the end get downloaded.
    As for ways ahead…
    It seems that I ought to be able to copy off of the WD tothe MacBook then erase it and reformat it and start over again. However, Ihaven’t been able to “see” its contents except on random occasions…
    Any further thoughts are welcome!

  • ITunes and iCloud no longer recognize Outlook on my computer

    Since I got my iPhone several years ago, I have used Outlook via iTunes to sync my calendar, contacts, and other information.
    I currently have an iPhone 4 with OS 5; I unfortunately have iTunes 10.5.2 running on a Windows 7 operating system.
    I say "unfortunately" because despite my satisfaction with how these things all worked together, I am now totally fed up with Apple and it's supposed updates.
    Today is Dec. 14, 2011. Two days ago, Apple released an "update" to supposedly address an audio issue. This morning, my computer and iPhone spoke to each other using iTunes -- I chose not to use iCloud when I downloaded the new OS 5.0 because I was not satisfied that it was consistently updating what I needed on my phone. It seems all it wants to do is update to iCloud.
    This morning, an Apple alert about a new update showed up on my screen and I said okay to install because in the past there have been been few issues. NONE have caused my iTunes to insist there is no supported calendar program or to not show Outlook as an option for contacts.
    This morning pre-update: everything worked as it was supposed to; after the update: NOTHING is working the way it is supposed to.
    This ***** and is stupid, APPLE. It is very easy to get another kind of smartphone and these are all catching up with iPhone.
    Issuing updates that make the system not work and WASTE HOURS OF MY TIME is no way to keep me as a customer or a way to encourage me to buy more apple products.
    IN SUMMARY:
    iPhone 4 with OS 5.0
    iTunes 10.5.2 with Dec. 14 update
    NO LONGER RECOGNIZES OUTLOOK ON MY SYSTEM.
    I have wasted hours trying to fix this.

    Hi, Linda from Folsom. Thanks for the message.
    While I do run iolo system mechanic, my issues did not start until *after* I downloaded iTunes 10.5.2.
    On the same date I updated iTunes, I also downloaded a Java update. I did these one after the other so didn't now which updated started the issue.
    I later found that my issues were also related to iCloud usage for syncing, which I resolved this week by eliminating iCloud from my life (other than backing up my iPhone).
    I posted something in the community about how I undid everything iCloud did to my Outlook, but my solution is only for those who no longer want to use iCloud with Outlook.
    That's an interesting point about the iolo system because I didn't have any issues at all with it (until I updated iTunes).
    I had a very similar system setup at the time as you do:
    iPhone 4 with OS 5.0.1
    Outlook 2007 (now I have 2010 version)
    iTunes 10.5.2
    Windows 7 home premium (now I have the Windows 7 ultimate version).
    I will be interested to hear if your iolo system caused some issues as I do like using it for clean up on my hard drive. When I couldn't use Outlook, I went to "JustAsk.com" and paid the small fee to find out that you can repair office from the control panel programs list; this is what solved my issue. 
    If you haven't tried it, it's pretty easy:
    Open Control Panel
    Select Programs
    Find Office on the programs list
    RIGHT click on it
    Select repair
    Windows installer runs, then restart
    After I did that, iPhone could see Outlook again. That could be where the registry issue is happening with iolo.
    Hope this is helpful,
    Cecilia

  • Installed latest itunes update and computer tried to burn a playlist to CD and realized computer no longer recognizes my CD/DVD drive. This is an APPLE Itunes issue. Help!. HPPavillion DV6 64 bit, windows 7

    Installed latest itunes update and computer tried to burn a playlist to CD and realized computer no longer recognizes my CD/DVD drive. After doing some data mining, found out from community this is an long standing APPLE problem- which doesn't get much tech support in terms of fixes. I have an HPPavillion DV6 64 bit, Windows 7 OS . After reading an earlier complaint from 2009 in the support community,  I ran diagnostics from ITunes which gave the following result. Can someone please help? (I'm not enough of a techie to know what I'm doing or how to locate /reinstall CD drivers. I am searching for driver disc but cannot locate.)
    Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
    Hewlett-Packard HP Pavilion dv6 Notebook PC
    iTunes 10.6.3.25
    QuickTime 7.7.2
    FairPlay 1.14.43
    Apple Application Support 2.1.9
    iPod Updater Library 10.0d2
    VoiceOver Kit 1.4.2 (222093/222742)
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 5.2.0.6
    Apple Mobile Device Driver 1.59.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 0043AC7C0368E428
    Current user is not an administrator.
    The current local date and time is 2012-07-24 23:43:08.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    Video Display Information
    ATI Technologies Inc., AMD M880G with ATI Mobility Radeon HD 4250
    **** External Plug-ins Information ****
    No external plug-ins installed.
    iPodService 10.6.3.25 (x64) is currently running.
    iTunesHelper 10.6.3.25 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.

    Doublechecking ... did you have CD/DVD drive tests checked when you ran those diagnostics? (I'm not seeing the CD/DVD test results down the bottom of the results where I'd expect to see them.)
    For example, here's what I get:
    Microsoft Windows 7 x64 Ultimate Edition Service Pack 1 (Build 7601)
    Acer Aspire X3400
    iTunes 10.6.3.25
    QuickTime 7.7.2
    FairPlay 1.14.43
    Apple Application Support 2.1.9
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 5.2.0.6
    Apple Mobile Device Driver 1.59.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 003CAD7C0A1258F8
    Current user is not an administrator.
    The current local date and time is 2012-07-26 10:42:53.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is disabled.
    HDCP is supported.
    Core Media is not supported. (16008)
    Video Display Information
    ATI Technologies Inc., AMD Radeon HD 6570
    **** External Plug-ins Information ****
    No external plug-ins installed.
    Genius ID: d6a87ba725121aa1240b1ce936c23470
    iPodService 10.6.3.25 (x64) is currently running.
    iTunesHelper 10.6.3.25 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** CD/DVD Drive Tests ****
    No drivers in LowerFilters.
    UpperFilters: GEARAspiWDM (2.2.0.1),
    E: ATAPI DVD A  DH16ABSH, Rev YA12
    Data or MP3 CD in drive.
    Found 1 songs on CD, playing time 255:57 on CDROM media.
    Track 1, start time 00:02:00
    Get drive speed succeeded.
    The drive CDR speeds are:   4.
    The drive CDRW speeds are:   4.

  • TS1363 Updated to iTunes to latest version 11.1.4.62 on my Windows 8 machine.  iTunes no longer recognizes my 5th Gen Ipod.  It does however recognize my 80gb Ipod Video.  I've uninstalled and reinstalled iTunes as directed (twice) & rebooted pc. no luck.

    I just updated iTunes to the 11.1.4.62 (as the pop up directed me to) on my Windows 8 machine. As a result iTunes will no longer recognize my 5th generation Ipod Nano (yes two).   I receive a pop up saying "Ipod has been detected but could not be identified properly"   I've followed the recommendations seveal times: a) disconnected and reconnected. b) rebooted computer c) unistalled and reinstalled iTunes d) tried different cables e) tried different USB porst f) rebooted Ipod.... the window keeps popping up like a middle finger (you get the point)
    iTUnes WILL however,  recognize my 4th gen Nano and my 80gb Video (classic) without problem
    Needless to say, I'm frustrated and ticked off over all of this wasted time.
    Anyone solved this issue yet?
    Any good suggestions?
    Please advise
    Kindest regards,

    c) unistalled and reinstalled iTunes
    Doublechecking. Have you also tried a complete uninstall of both iTunes and all the other related software components and then a reinstall? If not, try the instructions from the following document:
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8

  • Windows 7 no longer recognizes my Pre

    Not sure when it happened, maybe after I updated to OS 1.4.1.1, but my Windows 7 PC no longer recognizes my Pre.  It used to, but now it doesn't.   I have tried a cold restart for both the Pre and the laptop but still no success.   Has this happened to anyone else?  Any ideas from anyone? 

    Hello Luke and welcome to the forums;
    There are several possible solutions to this issue, and we have a fairly comprehensive KB article that describes the available fixes. I recommend going through each step in order, testing for a connection after each step.
    http://kb.palm.com/wps/portal/kb/common/article/25​017_en.html
    Hope this helps,
    TreoAide

  • ITunes no longer recognizes my iPhone 4

    I have had 3 iOS devices connecting to iTunes on Windows for more than 4 months.  For some reason iTunes no longer recognizes my iPhone 4.  My iPad and iPhone 4S still work as they should.  Windows sees the iPhone 4, but it never shows up in iTunes.  I followed the advice for getting services restarted in Windows, but since it's only one device that's an issue I'm thinking there may be an issue in the iPhone 4.  Ideas?

    try this, it worked for me...
    http://support.apple.com/kb/TS1538

  • TA24326 My HP desktop running Windows Vista 32-bit no longer recognizes my iPhone 4 when I connect it. How do I correct this?

    My HP desktop running Windows Vista 32-bit no longer recognizes my iPhone 4 when I connect it. How do I correct this?

    Device not recognized in iTunes

  • MacBook Pro will no longer recognize new SSD via USB

    I just received a brand-new 512 GB Samsung 840 Pro SSD from Newegg this morning.
    I own a 15-inch MacBook Pro (Mid-2012) with 16 GB of RAM and a 2.3 GHz Core i7 running Mavericks (10.9.1).
    Earlier today, I plugged in the SSD via a third-party USB-to-SATA adapter that I also purchased from Newegg at about the same time. The machine recognized the new drive, and I opened up Disk Utility to format the drive as Mac OS Extended (Journaled).
    Once that finished, I used Carbon Copy Cloner to clone my existing HDD to the SSD. Before it began, the program asked me to create the Recovery HD, so I enabled that option. The rest of the process proceeded smoothly. I quit CCC, ejected the drive, and put it away for the rest of the workday.
    When I arrived home tonight, I plugged the SSD back into the Mac in hopes of test-booting it externally. Unfortunately, the machine will no longer recognize that anything is plugged into the Mac. I find it highly unlikely that the USB adapter could be malfunctioning; I unboxed it this morning and it's been mere hours since the successful clone attempt. I also find it hard to believe that the SSD could be broken, either.
    I tried to disable rEFIt and manually invoke the boot selection screen, but even when that happens, the drive fails to mount. For the same reason, I can't erase the drive to start over, either. I've tried both USB ports, as well as rebooting with the SSD connected and unconnected.
    My research tells me that people often have problems trying to get SSDs to boot when they've been installed in the drive bay, but nothing I've seen suggests anyone's had a problem booting from the external SSD after a successful clone attempt. What am I missing?

    I'd start by resetting the SMC. Follow the method for "a battery you should not remove yourself."
    http://support.apple.com/kb/ht3964
    I have no experience with Samsung SSD's, but I've read a number of posts here of people having problems with some of them. That could be a possibility.
    The other thing you could try at this point is to swap the drives. If it's cloned already and the drive is good, it should boot. That would indicate the enclosure failed after the copy.

  • Macbook pro no longer recognizes external hard drive

    Hi everyone,
    My Macbook Pro (2013) running OS X 10.8.5 will no longer recognize my external hard drive.
    The hard drive, a Maxtor OneTouch 4, is granted quite old (c. 5 years) but has been working fine with my Macbook pro since I bought it 2 years ago. It is too full to do time machine backups but I just need to get some files off of it. It doesn't appear in Finder or in Disk Utility when connected and turned on.
    Since it's only stopped working recently I suspect some software update may have rendered it obsolete. I have also noticed some glitchiness with my USB ports, but some things work fine.
    If anyone has any suggestions of what to try, I would really appreciate it! I really need to access those files.
    Thanks very much in advance!

    Ari343 wrote:
    No, the external hard drive does not show up on Disk Utility. I don't have another computer to try it on.
    Perform a PRAM reset:
    http://support.apple.com/kb/ht1379
    Have you tried all the ports?
    Have you tried with a different cable?
    Have you tested all the ports with other devices to see that they are functioning?
    Ciao.

  • After upgrading to mountain lion aperture 3.3 no longer recognizes DNG files.  Is this going to get fixed?

    After upgrading to aperture 3.3 on mountain lion aperture no longer recognizes DNG files. 
    I have many DNG files already in my library.  Aperture shows the thumbnail and will briefly flash what I think is the preview of the file but quickly changes to a gray triangle saying "unsupported image format".  After which the thumbnail is replaced with an all black thumbnail.
    Needless to say this is extremely disconcerting.  I am concerned that aperture is not only refusing to display the existing DNG files but is also simultaneously corrupting the library and destroying my existing images.
    fwiw, these DNG files were generated with a leica.
    I have not attempted to import DNG images into my aperture library but I assume that would not go well.

    Susan,
    if it is the native raw format, that no longer is recognized, then try, if registering the CoreTypes.bundle with the OS again will help. This will tell MacOS which raw format types (and other media types) are supported.
    Open a Terminal window and paste following line into the window, hit return. This is one very long line:
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchSe rvices.framework/Versions/A/Support/lsregister -R /System/Library/CoreServices/CoreTypes.bundle/Contents/Library
    Regards
    Léonie
    P.S: Some browsers cause a blank to be inserted between /Frameworks/LaunchSe rvices.framework/Versions
    But it is "LaunchServices.framework", without blank. All in one line - the only blanks are needed between "lsregister" and "-R" and after "-R" .

  • How can I transfer files from one external HD (WD My Passport) to another external HD (Seagate Backup Plus)?  WD drive was improperly ejected and Finder no longer recognizes it.  Tried fixing with Disk Utility but failed.

    How can I transfer files from one external HD (WD My Passport 2T) to another external HD (Seagate Backup Plus 2T)?  WD drive was improperly ejected (although we did tell it to eject) and now Finder no longer recognizes it.   Using MacBook Pro and I just upgraded to Yosemite before this happened. Was told at Apple Store to use Disk Utility to repartition, but it failed.  It says to backup files and restore.  But how do I backup files?  Or would appreciate any other suggestions to repair drive.

    You may drag & drop between external hds. 
    Should you run into trouble.
    Take the exernal drive appart.  Take out the harddrive.  Try reading the data via a usb adapter. Put a household finan on the hd.
    http://www.cablewholesale.com/products/usb-firewire/usb-2.0-products/product-40u   2-01000.php?utm_source=Nextag&utm_medium=cpc&zmam=54972865&zmas=1&zmac=4&zmap=4 4 77

Maybe you are looking for

  • How to create both a XML file and a check

    Hi, I'm currently implementing the use of XML files for payments in the USA and I run into a problem for check payments. We need to generate both an XML file, which needs to be sent to the bank for validation and the checks, which are printed by the

  • No iChat Effects Available

    I installed Leopard on both my G5 PowerMac as well as my daughter's iMac G5. She has no effects button on her iChat display window at all and "Show Video Effects" is grayed out of the video menu. I have the 2 pages of effects on my PowerMac. She does

  • Nooooooo (Nomad Zen Xtra 30GB Emerge

    Right, I tend to be a little clumsy, and have dropped my Zen before, nothing ever happened until a week or so ago when it bumped itself on the head and wiped the memory. I managed to reboot, and all was well again, but for the fact although there wer

  • Peoplesoft Query Outer join with MAX EFFDT

    I have this criteria in my PS Query where A.emplid = B.emplid and B.effdt = (select max( B1.effdt ) from PS_TABLE_B B1 where B1.effdt <= SYSDATE ) Need to do an OUTER JOIN for B. Ie. If no row found in B, then return blank so that row in A can be ret

  • Broken Download link for JDeveloper Preview 3

    http://otn.oracle.com/software/products/jdev/htdocs/soft903.html?src=855007&Act=101 This link has been broken every day since Jdeveloper 3 Preview has been announced. Any chance someone can fix this. I've put in several trouble tickets to get a fix.