Is the URL case sensitive??

I published a website for a family reunion and when I mailed the URL to people I listed it in all lower case. For some reason you have to use a capital "W" when typing the URL in the address bar: /Welcome in order to get to the first page of the site. If you use a lowecase "w" then you get a "Page Not Found" Message. I didn't realize that URL's were case-sensitive. Anyone know how I can fix this? Note: I don't have emails for all of the reunion attendees and sent snail mail letters to Canada, Nova Scotia etc. and really want them to be able to use the lower case option as it was written in the letter. Thanks!

The URL is case-sensitive. At least the sitename and pagenames are.
HTTP://WEB.MAC.COM/DOTMACID/
will work.
Better send this:
http://web.mac.com/dotmacid/
Message was edited by: Wyodor

Similar Messages

  • The volume has the wrong case sensitivity for a backup

    Updated to OS X Yosemite 10.10.1 and when trying to restore my backup (using TM) into my iMac (27-inch, Mid 2011) get the following message: "The volume has the wrong case sensitivity for a backup."
    Any help would be appreciated!

    That's not how you restore.
    Move your data to a new Mac - Apple Support
    OS X Yosemite: Recover your entire system

  • My Time Machine backup keeps failing.  I get a message the "Volume has the wrong case sensitivity for a backup".  Please advise.

    My Time Machine backup keeps failing.  I get a message the "Volume has the wrong case sensitivity for a backup".  Please advise.
    Thanks, Howard

    You can change the case sensitivity of the sparsebundle.. but I really doubt the error is real.
    See A8 here.
    http://pondini.org/TM/Troubleshooting.html
    The sparsebundle should have case sensitivity turned on.
    I cannot even fathom how it could have changed.
    Let me recommend before you start fooling around with the sparsebundle.
    Do a full network start.
    Power everything off.. start up modem.. wait 2min.. power up the TC.. wait 2min.. power up any other network gear like switches.. wait..
    Now power up the computer and try it.
    If the error is the same.. I would do a factory reset of the TC.. give it all short names, no spaces and pure alphanumeric. Then reset TM .. see A4 in the same reference as above.. and do a verify of the backups.. A5 above and try the backup again..
    No luck..
    Then erase the TC and start over.. it is sometimes necessary as TM does get itself in a knot.

  • HT1553 My motherboard failed and was replaced at the Apple store but I did not have my backup with me for the tech to download. When I try to download, a window comes up that the volume has the wrong case sensitivity and will not download. Thank you for a

    I did not have my backup with me when my hard drive failed and was replaced at the Apple store. Now it will not download to my new hard drive. A message says that "the volume has the worng case sensitivity for a backup". How can I resore my data from the backup?
    Thank you

    This is a user-supported board. You are not addressing Apple here. Nor is it a good idea to post your private information to a public forum. You should edit your post immediately.
    Unfortunately no one here can access your support history. You must respond to the emails directly.

  • URL case sensitive

    I am using iPlanet as my app server & web server. My URLs are seems to be case sensitive. How could I eliminate this?. My OS is Windows.
    The actual folder name in windows in "AA", which in in the doc folder of iPlanet.
    while accessing
    http://localhost:81/AA/index.jsp, its working but
    http://localhost:81/aa/index.jsp is not working.
    Whats the prob.? How could I eliminate this?

    I would think getting rid of the port number in the URL is more important.

  • Web URL case sensitive

    I am using iPlanet as my app server & web server. My URLs are seems to be case sensitive. How could I eliminate this?. My OS is Windows.
    The actual folder name in windows in "AA", which in in the doc folder of iPlanet.
    while accessing
    http://localhost:81/AA/index.jsp, its working but
    http://localhost:81/aa/index.jsp is not working.
    Whats the prob.? How could I eliminate this?

    domain names are not case sensitive.
    the path after can be. I believe this depends on the server's file system. Windows machines are not case sensitive, so the path for a server on a Windows PC is usually not, but Unix system are case sensitive in the file system, so the path for a server on Unix is as well.
    However, the general rule is to always define domain names in all lower case (they are case insensitive anyway) and to assume case sensitivity for the path in the URL. Case insensitive servers/file systems won't care, and case senstive ones will be correct.

  • FMS URL - Case Sensitive? (GUI & Cmd Line)

    I'm stuck. My FME 2.5 GUI runs fine, passes video & audio
    traffic just like its supposed to. However, when running FME via
    command line, FME connects to FMS alright, and uploads A/V to the
    server, but I can't view the output. The ONLY difference is that my
    FMS server side app name is ALL CAPS. In GUI mode, the app displays
    in CAPS.
    The Startup XML file displays CAPS, .......but......when
    running FMEcmd, the console window displays LWR CASE letters for
    the application.
    Example:
    GUI FMS URL = rtmp://xxxxx.server.com:80/BUS1/xxxxxxx
    FMECMD via CMD Line = rtmp://xxxxx.server.com:80/bus1/xxxxxxx
    Startup XML File = rtmp://xxxxx.server.com:80/BUS1/xxxxxx
    Is there someway that I can change that XML file in Notepad
    so that it forces ALL CAPS for that application name?

    I guess you will have this issue with FMEcmd anyways. I am
    hoping this issue will be fixed in next release of FME.

  • URL Case Insensitive

              Hi ALL,
              How to make URL case-insensitive, I registered my servlets on WLS on UNIX system.It's very very urgent to me.
              I am giving a example to similar to my problem.
              It should invoke the same servlet using:
              www.abc.com/XYZ/welcome
              www.AbC.com/xYZ/WELCOme
              www.ABc.com/XyZ/WelCoMe
              The same servelt should invoked with the possible combinations of both cases of letters.
              Thanks,
              Venkat
              

              Hi Sam,
              I think there is a another way to handled the url case-sensitive using defaultservlet. I already done with my problem, I handled successfully using defaultservlet. It's working fine, Anyway Thank you very much.
              Venkat Ponnala
              "WebLogic" <[email protected]> wrote:
              >I found the only way to get this to work perfectly is to have a web.xml with
              >these entries:
              >
              > <servlet>
              > <servlet-name>lowercasefilter</servlet-name>
              > <jsp-file>lowercase.jsp</jsp-file>
              > </servlet>
              > <servlet-mapping>
              > <servlet-name>lowercasefilter</servlet-name>
              > <url-pattern>/a/*</url-pattern>
              > </servlet-mapping>
              > <servlet-mapping>
              > <servlet-name>lowercasefilter</servlet-name>
              > <url-pattern>/A/*</url-pattern>
              > </servlet-mapping>
              >
              >with lowercase.jsp:
              ><jsp:forward page="<%=request.getPathInfo().toLowerCase()%>"/>
              >
              >Where you register it as the default webapp. All your URLs should then
              >be prepended with either A or a to get the correct behaviour. If you were
              >to simply filter everything you get an circular fowarding loop.
              >
              >Sam
              >
              >
              >"Cameron Purdy" <[email protected]> wrote in message
              >news:[email protected]...
              >> You must implement your own mapping by creating a front servlet mapped to
              >by
              >> '*'.
              >>
              >> --
              >>
              >> Cameron Purdy
              >> [email protected]
              >> http://www.tangosol.com
              >> Consulting Services Available
              >>
              >>
              >> "Venkat Ponnala" <[email protected]> wrote in message
              >> news:[email protected]...
              >> >
              >> > Hi ALL,
              >> >
              >> > How to make URL case-insensitive, I registered my servlets on WLS on
              >> UNIX system.It's very very urgent to me.
              >> >
              >> > I am giving a example to similar to my problem.
              >> >
              >> > It should invoke the same servlet using:
              >> > www.abc.com/XYZ/welcome
              >> > www.AbC.com/xYZ/WELCOme
              >> > www.ABc.com/XyZ/WelCoMe
              >> > ...................
              >> > .....................
              >> > ...................
              >> > ..................
              >> > The same servelt should invoked with the possible combinations of
              >> both cases of letters.
              >> >
              >> > Thanks,
              >> > Venkat
              >> >
              >> >
              >>
              >>
              >
              >
              

  • I am trying to install MasterCollection_CS6_LS16. When I click the install file I get this error message: We've encountered the following issues. Installation on case-sensitive volumes is not supported. Please choose a different volume for installation.

    I am trying to install MasterCollection_CS6_LS16. When I double click the install file I get this error message: We've encountered the following issues. Installation on case-sensitive volumes is not supported. Please choose a different volume for installation. What does that mean? How should I proceed?

    Hey iraravitz,
    Could you please let me know what version of OS are working on.
    You might receive this error when you attempt to install on a drive with the HFS+ Case Sensitive file system, which is not supported for installation of Adobe Creative Suite 6.
    So, please try installing on a drive that has been formatted with a supported file system.
    You might refer the KB doc link mentioned below for the same:
    Error "Case-sensitive drives not supported" or similar install error | Mac OS
    Let me know if this helps.
    Regards,
    Anubha

  • I recent la format the drive and create a case sensitive jornal and put a password. How I undo it if I just see the whole drive as the recovery disk

    I want to format my computer and I start to do that but I fondo a copy of the boot folder on the drive, not the recovery drive. I formated and make it case sensitive jornal with a password. Then I put a password in main too. So the drive the entre drive become my recovery drive.So I have two recovery drive I think.I learn almost all the diskutil comando and I don know how to fin it. The disks are not showing the one with the passwords.

    Hi Kappy,
    Just wondering if you had any advice for my situation . . .
    My time machine backup was backing up to a drive that was "Mac OS X Enteded Journaled, Case Sensitive."  I had no idea what this meant, or that it would even cause issues.
    I took my computer to the Apple store yesterday, and they wiped it clean.  When they tried to restore it from the Time Machine backup drive, it would not work.  Their guess is that Time Machine cannot restore from a drive that is "case sensitive."
    Any thoughts on how I can convert my time machine backup data from a "case sensitive" state, to a "non-case sensitive" state?  I've tried to just drag and drop the files from the case sensitive formatted drive to a new drive that I have that is formatted non case sensitive, but I get the following error message:
    "The volume has the wrong case sensitivity for a backup"
    I just really want my data back - I thought TimeMachine was the way to go (and was supposed to work) but unfortunately it is not.
    Any help you can provide would be greatly appreciated.
    Thanks,

  • How can I backup data from a case-sensitive volume to a NON-case-sensitive volume?

    The case-sensitive volume in this instance being a desktop-mounted disk image volume.
    A tragi-comedy in too many acts and hours
    Dramatis Personae:
    Macintosh HD: 27" iMac 3.06GHz Intel Core 2 Duo (iMac10,1), 12 GB RAM, 1 TB SATA internal drive
    TB1: 1 TB USB external drive
    TB2: 2 TB USB to Serial-ATA bridge external drive
    Terabyte: a .dmg disk image and resulting desktop volume of the same name (sorry, I don't know the technical term for a .dmg that's been opened, de-compressed and mounted -- evanescently -- on the desktop)
    Drive Genius 3 v3.1 (3100.39.63)/64-bit
    Apple Disk Utility Version 11.5.2 (298.4)
    Sunday morning (05/08/11), disk utility Drive Genius 3's drive monitoring system, Drive Pulse, reported a single bad block on an external USB2.0 1TB drive, telling me all data would be lost and my head would explode if I didn't fix this immediately. So I figured I'd offload the roughly 300 GB of data from TB1 to TB2 (which was nearly empty), with the intention of reinitializing TB 1 to remap the bad block and then move all its data BACK from TB 2. When I opened TB1's window in the Finder and tried to do a straight "Select All" and drag all items from TB1 to TB2, I got this error message:
    "The volume has the wrong case sensitivity for a backup."
    The error message didn't tell me WHICH volume had "the wrong case sensitivity for a backup," and believe me, or believe me not, this was the first time I'd ever heard that there WAS such a thing as "case sensitivity" for a drive. I tried dragging and dropping some individual folders -- some of them quite large, in the 40GB range -- from TB1 to TB2 without any problem whatsoever, but the majority of the items were the usual few-hundred-MB stuff that seems to proliferate on drives like empty Dunkin' Donuts coffee cups on the floor of my car, and I didn't relish the idea of spending an afternoon dragging and dropping dribs and drabs of 300GB worth of stuff from one drive to another.
    Being essentially a simple-minded soul, I had what I thought was the bright idea that I could get around the problem by making a .dmg disk image file of the whole drive, stashing it on TB2, repairing and re-initializing TB1, and then decompressing the disk image I'd made of TB1, and doing the "drag and drop" of all the files in resulting desktop volume to TB1. So I made the .dmg of TB1, called "Terabyte," stashed that .dmg on TB2 (no error messages this time), re-initialized and then rebooted the iMac from my original Snow Leopard 10.6.1 disks and used Disk Utility to erase and initialize TB1 -- making sure that it was NOT initialized as case-sensitive, and installed a minimal system on TB1 from the same boot. Then I updated that 10.6.1 system to 10.6.7 with System Update, and checked to see that Disk Utility reported all THREE drives -- internal, 1TB, and 2TB -- as Mac OS Extended (Journaled), and no "case sensitive" BS. I also used Drive Genius 3's "information" function for more detailed info on all three drives. Except for the usual differing mount points, connection methods, and S.M.A.R.T. status (only the Macintosh HD internal, SATA 1TB drive supports S.M.A.R.T.), everything seemed to be oojah-***-spiff, all three drives showing the same Partition Map Types: GPT (GUID Partition Table.) Smooth sailing from here on out, I thought.
    Bzzzzt! Wrong!
    When I opened the Terabyte .dmg and its desktop volume mounted, I tried the old lazy man's "Select All" and drag all items from the desktop-mounted drive "Terabyte" to TB1, I got the error message:
    "The volume has the wrong case sensitivity for a backup."
    I then spent the next three hours on the phone with AppleCare (kids -- when you buy a Mac ANYTHING, cough up the money for AppleCare. Period.), finally reaching a very pleasant senior tech something-or-other in beautiful, rainy Portland, OR. Together we went through everything I had done, tried a few suggestions she offerred, and, at the end of three hours, BOTH of us were stumped. At least I didn't feel quite as abysmally stupid as I did at the beginning of the process, but that was all the joy I had gotten after two solid days of gnawing at this problem -- and I mean SOLID; I'm retired, and spend probably 12 hours a day, EVERY day, at the keyboard, working on various projects.
    The AppleCare senior tech lady and I parted with mutual expressions of esteem, and I sat here, slowly grinding my teeth.
    Then I tried something I don't know why I was so obtuse as to not have thought of before: I opened Apple's Disk Utility and checked the desktop-mounted volume Terabyte (Mount Point: /Volumes/Terabyte), the resulting volume from opening and uncompressing the .dmg "Terabyte".
    Disk Utility reported: "Format : Mac OS Extended (Case-sensitive)." Doh!
    Obviously, TB1, the 1 TB USB external drive I'd actually bought as part of a bundle from MacMall when I bought my 27" iMac, and which I had initialized the first day I had the iMac up and running (late November 2009), had somehow gotten initialized as a Case-sensitive drive. How, I don't know, but I suspect the jerk behind the keyboard. Whatever the case, when I created the Terabyte disk image (the drive's original name: when I erased and re-initialized it -- see above -- I renamed it "1TB" for quick identification), the original drive's "Case-sensitive" format was encoded too. So when I tried to drag and drop EVERYTHING from the desktop-mounted volume "Terabyte" to the newly initialized and "blessed" (now THERE's a term from the past!), the system recognized it as an attempt as a total volume backup, and hit me with "The volume [the desktop-mounted volume "Terabyte" -- BB] has the wrong case sensitivity for a backup." And, of course, the reinitialized TB1 was now correctly formatted as NOT "case-sensitive."
    Well, that solved the mystery (BTW, Disk Utility identified the unopened Terabyte.dmg as an "Apple UDIF read-only compressed {zlib}, which is why the .dmg file could be copied to ANY volume, case sensitive or not), but it didn't help me with my problem of having to manually move all that data from the desktop-mounted volume "Terabyte" to TB1. I tried to find a way to correct the problem at the .dmg AND opened-volume-from-.dmg level with every disk utility I had, to no avail.
    Sorry for the long exposition, but others may trip over this "case-sensitive" rock in the road, and I wanted to make the case as clear as possible.
    So my problem remains: other than coal shovel by coal shovel, is there any way to get all the data off this case-sensitive desktop-mounted volume "Terabyte" and onto TB1.
    Not that I know whether it would made any difference or not, one of the things that got me into this situation was my inability to get "Time Machine" properly configured so it wasn't making new back-ups every (no lie) 15 minutes.
    Philosophical bonus question: what's the need for this "case-sensitive," "NOT case-sensitive" option for disk initialization?
    As always, thanks for any help.
    Bart Brown

    "Am I to understand that you have a case-sensitive volume with data that you want to copy to a case-insensitive volume? And the Finder won't let you do it? If that's what the problem is, the reason should be obvious: on the source volume, you may have two files in the same folder whose names differ only in case. When copying that folder to the target volume, it's not clear what the Finder should do."
    Yes, I understand all that... NOW.
    What I had (have) is a USB external 1TB drive (henceforth known as "Terabyte") that I bought with my 27" iMac. I formatted, and put a minimal (to make it bootable) system on Terabyte the same day back in late November 2009 that I set up my 27" iMac. Somehow -- I don't know how -- Terabyte got initialized as "case-sensitive." I didn't even know at the time that there WAS such a thing as "case-sensitive" or "NOT case-sensitive" format.
    Sunday morning (05/08/11), Drive Pulse, a toolbar-resident utility (that's Part of Drive Genius 3) that monitors internal and external drives for physical, problems, volume consistency problems, and volume fragmentation, reported a single bad block on the volume Terabyte, advising me that it would be best if I re-formatted Terabyte ASAP. I thought I could open Terabyte in a Finder window, Select All, and drag everything on the drive to ANOTHER USB external drive of 2 TB capacity (henceforth known as TB2). When I tried to do that, I got an error message:
    "The volume has the wrong case sensitivity for a backup."
    First I'd heard of "case sensitivity" -- I'm not too bright, as you seem to have realized.
    Oddly enough (to me), I could move huge chunks of data, including a folder of 40GB, from Terabyte to TB2 with no problem.
    Then the scenario unfolded per my too-convoluted message: several hours of trying things on my own, including making a .dmg of Terabyte (henceforth to be known as Terabyte.dmg) -- which left me with the exact same problem as described in the previous 4 paragraphs; and my 3 hours on the phone with AppleCare, who at least explained this case-sensitive business, but, after some shot-in-the-dark brainstorming -- tough to do with only one brain, and THAT on the OTHER end of the line --  the very pleasant AppleCare rep and I ended up equally perplexed and clueless as to how to get around the fact that a .dmg of a case-sensitive volume, while not case-sensitive in its "image" form (Terabyte.dmg), and thus able be transferred to TB1 or TB2 with no problems whatsoever, when opened -- either by double-clicking or opening in Disk Utility -- produced a desktop-mounted volume (henceforth known as the volume "Terabyte," the original name of the case-sensitive volume from which TB1.dmg had been made) that had the same case-sensitivity as the original from which it was made.
    In the meantime, having gotten the data I needed to save off the physical USB "case-sensitive" volume Terabyte in the form of Terabyte.dmg, I erased and re-initialized the physical USB "case-sensitive" volume Terabyte, getting rif of the case sensitivity, and renaming it TB1. But it all left me back at square one, EXCEPT I had saved my data from the original "Terabyte" drive, and reformatted that drive to a NON- case-sensitive data now named TB1. The confusion here stems from the fact that problem case-sensitive drive, from which I made Terabyte.dmg, was originally named "Terabyte". When I re-initialized it as a NON case-sensitive drive, I renamed it TB1. I'm sorry about the confusing nomenclature, which I've tried to improve upon from my original message -- usual text-communication problem: the writer knows what he has in mind, but the reader can only go by what's written.
    So, anyway, I still have the same problem, the desktop-mounted volume "Terabyte" still cannot be transferred in one whole chunk to either my internal drive, TB1, TB2, as the Finder interprets it as a volume backup (which it is), and reads the desktop-mounted volume "Terabyte" as case-sensitive, as the original volume -- from which the disk image Terabyte.dmg was made -- had been at the time I made it. 
    "As long as that situation doesn't arise, you should be able to make the copy with a tool that's less fastidious than the Finder, such as cp or rsync."
    I'm afraid I have no idea what "cp or rsync" are. I'd be happy to be educated. That's why I came here.
    Bart Brown
    Message was edited by: Bartbrn
    Just trying to unmuddy the water a bit,,,

  • How do i reformat a case sensitive external hard drive without losing data

    I know there are a lot of posts about this, and i have spent hours trying to find a soloution / understand what people have responded to others, but i can't work this out.
    I also have a Buffalo HD (let's call it HD1) that stores my itunes library.
    I have a WD My Passport for Mac (let's call it HD2) that backs up my Mac Book Pro.
    I have an older WD that has older TM back ups on it from previous computers (let's call it HD3)
    I have one spare completely 'clean' WD hard drive (let's call it HD4).
    My laptop was really slow and full so i went to Genius bar, they sold me the Buffalo HD and they moved my itunes to it and set it up so it now has my itunes. I used this disk to run two TM Backups before i realised the drive was nearly full, so i bought the WD My Passport HD2.
    I now use WD My Passprt HD2 for TM.
    I want to MOVE the backups on HD1 to My Passport HD2 as there is lots of space on it. I also want to move my itunes library from HD2 as a back up.
    But i can't!!!
    After reading for hours, apparently this is because my HD1 is case sensitive, journaled. And it needs to be Journaled to work with TM/OSX or something very confusing. I have read lots of threads about re-formatting / partitioning and all things that are way over my head. But the one thing i do understand is if i reformat HD1, it erases the data.
    This is NOT an option as it holds my WHOLE itunes. The Itunes is WAY too big to drag onto my mac book pro and then move it over to HD2 and make that my itunes folder.
    HOW THE **** ARE YOU SUPPOSED TO BACK UP THE CASE SENSITIVE DRIVE BEFORE REFORMATTING IT IF IT'S TOO BIG TO FIT BACK ON YOUR COMPUTER? Surely that's the whole point of having an external drive... to back up AND give you more space?
    I'm so mad that the apple store did this to me... they should know that case sensitve wouldn't work with a passport... that i would have problems. UGh.
    I have options to move the files from HD1 as i have HD2 and HD3 and then also the completely unused HD4... but i can't move anything anywhere due to this case sensitive nightmare.
    Someone PLEASE HELP ME.
    thanks.

    Hi Kappy,
    Just wondering if you had any advice for my situation . . .
    My time machine backup was backing up to a drive that was "Mac OS X Enteded Journaled, Case Sensitive."  I had no idea what this meant, or that it would even cause issues.
    I took my computer to the Apple store yesterday, and they wiped it clean.  When they tried to restore it from the Time Machine backup drive, it would not work.  Their guess is that Time Machine cannot restore from a drive that is "case sensitive."
    Any thoughts on how I can convert my time machine backup data from a "case sensitive" state, to a "non-case sensitive" state?  I've tried to just drag and drop the files from the case sensitive formatted drive to a new drive that I have that is formatted non case sensitive, but I get the following error message:
    "The volume has the wrong case sensitivity for a backup"
    I just really want my data back - I thought TimeMachine was the way to go (and was supposed to work) but unfortunately it is not.
    Any help you can provide would be greatly appreciated.
    Thanks,

  • How do I make search case sensitive

    I created a search region of type "query" using a simpleSearchPanel. The instructions say the search is case-sensitive when running the page but it appears it is not. Can anyone tell me how to make the search case sensitive?

    Please check if you have followed these guidelines
    Rule 2 : If your view attribute is of type String(VARCHAR2), and if the item has the Selective Search Criteria property set to false, then OA Framework generates a case-insensitive simple WHERE clause based on the CRITERIA_CONDITION and the CRITERIA_VALUE.
    Rule 3: If your view attribute is of type String(VARCHAR2), and the item has the Selective Search Criteria property set to true, then OA Framework generates a case-insensitive WHERE clause using a four-way join to ensure that the index is used.

  • Can't restore from case sensitive TM back-up

    I'm in the final stages of restoring my system following a complete rebuild, and am having an issue stop me from restoring all of the files from my TM backup.
    Prior to the rebuild it appears that I had my main drive formatted as Extended (case sensitive). Likewise, my TM backup drive was also formatted as case sensitive.
    Since the rebuild my main drive is now not formatted as case sensitive, and while I can restore most of the files from the TM backup, there are a small number that won't restore, giving the error message:
    +"You cannot copy 'ABCDE' to the destination because its name is the same as the name of an item on the destination, except for the case of some characters."+
    As I'm restoring to what was an erased drive, the files can't already exist somewhere else on the drive. Also, it seems odd that most files aren't affected by this, while some are - both data and applications.
    I've tried to restore to another case sensitive drive, change the file name something unique so that I could then copy to the non-case sensitive drive, but in the process of copying, the same message appears and the copy fails.
    Is there some way to restore individual files from a case sensitive TM backup to a non-case sensitive drive, or to change whatever is causing this within Terminal (note that I'm a complete Terminal novice)
    Thanks in advance.

    +"You cannot copy 'ABCDE' to the destination because its name is the same as the name of an item on the destination, except for the case of some characters."+
    As I'm restoring to what was an erased drive, the files can't already exist somewhere else on the drive.
    The files weren't on the drive before the restore started. The restore created them. If the case-sensitive backup has multiple files of the same name (except for case) in a folder, the first will be restored, then you will get the error message when it tries to copy the second.
    Also, it seems odd that most files aren't affected by this, while some are - both data and applications.
    Most files have different names.

  • Time Machine:  Case Sensitivity?

    On a mission of relative innocence, i ran into a (COPY) Error Message that made me wonder if more serious problems lay down the road.
    I don't have Time Machine on, or my external drive connected, all the time, I prefer to back up about once a week. Today, I wanted to rename my latest backup, "Final 2010 Backup," but when I tried to drag that folder from the ext drive to the Mac, the following message appeared:
    "COPY
    The volume has the wrong case sensitivity for a backup"
    Does anyone know what this means? Will it affect my ability to restore in the future? Is there another, better way to accomplish my original mission? Thanks!

    Chris Field wrote:
    I tried to drag that folder from the ext drive to the Mac
    Be very glad it stopped you. That would have made a complete copy of your entire system!
    And you should +*Never, ever move, change, or delete anything in your backups+* via the Finder or Terminal. That can corrupt them, perhaps beyond repair.
    They have a very complex and unusual structure, and cannot be modified except by Time Machine. See [How Time Machine works its Magic|http://web.me.com/pondini/Time_Machine/Works.html].

Maybe you are looking for

  • How do I use this StringManip method?

    I want to be able to use the following method: java.lang.Object | --SSF.OS.BGP4.Util.StringManip public class StringManip extends java.lang.Object This class contains public utility methods useful for manipulating character strings. static java.lang.

  • Using single repository for Customer and Vendor

    Hi All Has anyone worked in scenario where a single repository was used to store both Customer and Vendor records? The source and Target systems are SAP ECC and MDM will have both Basic as well as contextual data. I would like to know the likely chal

  • SD EDI with many partners / best practice

    I need some input on how best to approach a large EDI project. We will be accepting orders from about 80 customers.  Each one will be drop-shipping products from our warehouse to their customers.  I've set up the config for one location to take advat

  • Prepare List with text file fields

    Hi, This is rama krishna. I need to convert text file fields to a List. My requirement is to read a text file and prepare one list depending up on the fields. For example I want to read the following foollowing text fields into list(it may be list or

  • DPM Servers for server protection and SQL

    As per article TechNet article(Preparing the DPM SQL Server database)  http://technet.microsoft.com/en-us/library/jj852163.aspx , observed following notes on this TechNet section,    Ø  You cannot use an instance of SQL Server running in a cluster fo