Help needed concerning the read write permission on audio.

I'm currently trying to edit a Voice over I recorded and whilst the Read/write permission is enabled on all the audio I keep getting the error message 'Read/write permission doesn't allow writing Result code = -61' when I try and add a simple fade out to the audio file. Could anyone help me stop this from happening.
Thanks.
Power Mac G5   Mac OS X (10.3.9)  

Thanks for your advice, I've recently got a new raid
hard drive system and this is the first time I've
used it for my logic projects. I have the permission
to read and write to the drive although I'm not the
owner, do you think this may be the problem?
Hi Mark,
You are very welcome.
I am pretty sure it's related to permissions or your new drive. I had similar issues. What is your drive named? I ask, as when my mac was shipped from factory it had two drives identically named. This caused similar issues until I renamed the second drive.
It shouldn't matter that you are not the owner as long as you have permission to read and write to the drive ... I think. Anyone else ... ?
Anyway ... next question ... check the name of the new drive.
Cheers
Dee

Similar Messages

  • How to change the permission of a folder of a website hosted on Microsoft Azure. I would like to know how to enable read write permission for this folder

    How to change the permission of a folder of a website hosted on Microsoft Azure. I would like to know how to enable read write permission for this folder
    Regards,
    John

    Hi,
    Please try to setting Folder Permissions on Web Publish, and then deploy it with Web Deploy, as far as I know, if we do that, Web Deploy will use the SetAcl operation to change permissions. Please have a look at the article below.
    #http://sedodream.com/2011/11/08/settingfolderpermissionsonwebpublish.aspx
    Best Regards,
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Is it possible to change the read/write permissions on a time machine back-up of iTunes? I need to restore it, but old version is locked....

    Is it possible to change the read/write permissions on a time machine back-up of iTunes? I'm needing to restore it as my phone deleted half our playlists during sync  & am not seeing a way to unlock the permissions. I have the current version unlocked, but can't seem to get the backed-up version. When I click on restore I get a pop-up that says iTunes can't be deleted as it is part of the OS. I'm not even trying to delete, just restore the old version. Any suggestions?

    Hmmm, ok I'll give it a shot. I've always had the iTunes sync w/ my phone set up to only load selected playlists to the phone b/c there's a lot more in iTunes than I have room or desire for on my phone. A few months back I started having trouble w/ trying to sync everything & subsequently adding more to the phone than it could hold. The quickest thing at the time was to unclick the sync music option in iTunes so I could still backup the phone to the computer & not have a problem.
    When I asked about it during one-to-one session shortly after, they advised me to delete the music off my phone & then re-sync it to the computer, run a backup of the phone & redownload the music to the phone. When I tried this it ended up deleting all my playlists (but not my husband's) from iTunes. Irritating, but I've been rebuilding the playlists since. I had also unclicked sync music again & an Apple person told me the most likely best fix was to delete & reload iTunes completely.
    A few days ago I realized I hadn't backed up the phone to the computer in over a month so after deleting & reinstalling iTunes, & w/o changing anything (sync music was STILL unchecked) I ran a backup & my phone went from having 4 GB free space to being 2 GB over capacity due to iTunes trying to download the entire music library to the phone. I made a one-to-one appt again & it was suggested AGAIN that I delete all the music off my phone & then resync it to the computer & redownload the music. We did this (though a few random songs that had previously been purchased somehow remained on the phone), I got home, connected the phone & instead of the music that shows  as 'on my device' disappearing from iTunes it just sat there, so, as the guy had told me I MIGHT have to do, I threw all those songs showing in iTunes as being on my phone, in the trash so that it was completely clear.
    At this point I checked sync music, made sure the options were 'selected playlists only', checked the ones from my own list that I wanted (I usually have one playlist of comedians from my husband's folder that I also have on the phone, but didn't check it at this point). It uploaded all my stuff just fine, but for whatever reason when it saw that I wasn't uploading that comedy playlist any longer, it not only didn't upload it but proceeded to delete my husband's entire folder of playlists from iTunes. -_- I got on the phone w/ an Apple support person right away but he wasn't able to tell me anything .. basically said we'll have to rebuild everything. I asked about the possibility of using time machine, he said he's not qualified to answer that, so that's when I started looking around online & found, among others, the link I referenced a couple replies ago.
    I hope this all makes sense. It's been a long-term issue so I'm trying to go from memory as I figured to begin w/ that I had just made a mistake somewhere, so didn't try to document anything. Now w/ it having happened a 2nd time, I'm not sure if it was 'user error' or something else.......

  • How can I correct the error Write Permission Open so that I can finalize a project in I Movie?

    How can I correct the error Write Permission Open so that I can finalize a project in I Movie?

    Post in the iMovie forum.

  • Finding exception with the read-write-backing-map-scheme configuration.

    Finding exception with the <read-write-backing-map-scheme> configuration, that is setup against a simple database cache store implementation. The class SimpleCacheEventStoreImpl implements CacheStore interface.
    Exception in thread "main" java.lang.UnsupportedOperationException: configureCache: read-write-backing-map-scheme
         at com.tangosol.net.DefaultConfigurableCacheFactory.configureCache(DefaultConfigurableCacheFactory.java:995)
         at com.tangosol.net.DefaultConfigurableCacheFactory.ensureCache(DefaultConfigurableCacheFactory.java:277)
         at com.tangosol.net.CacheFactory.getCache(CacheFactory.java:689)
         at com.tangosol.net.CacheFactory.getCache(CacheFactory.java:667)
         at Sample.SimpleEventStoreConsumer.main(SimpleEventStoreConsumer.java:10)
    The cache store is interfaced to the program SimpleEventStoreConsumer(where I have a put and get operation) through the following cache configuration descriptor. On running the SimpleEventStoreConsumer, the exception happens on trying to get the Named cache from the cache factory
    <cache-config>
         <caching-scheme-mapping>
              <cache-mapping>
                   <cache-name>Evt*</cache-name>
                   <scheme-name>SampleDatabaseScheme</scheme-name>
              </cache-mapping>
         </caching-scheme-mapping>
         <caching-schemes>
              <read-write-backing-map-scheme>
                   <scheme-name>SampleDatabaseScheme</scheme-name>
                   <internal-cache-scheme>
                        <local-scheme>
                             <scheme-ref>SampleMemoryScheme</scheme-ref>
                        </local-scheme>
                   </internal-cache-scheme>
                   <cachestore-scheme>
                        <class-scheme>
                             <class-name>com.emc.srm.cachestore.SimpleCacheEventStoreImpl</class-name>
                             <init-params>
                                  <init-param>
                                       <param-type>java.lang.String</param-type>
                                       <param-value>{cache-name}</param-value>
                                  </init-param>
                             </init-params>
                        </class-scheme>
                   </cachestore-scheme>
              </read-write-backing-map-scheme>
              <local-scheme>
                   <scheme-name>SampleMemoryScheme</scheme-name>
              </local-scheme>
         </caching-schemes>
    </cache-config>

    you are missing <backing-map-scheme>. Do like following:
    <caching-schemes>
              <distributed-scheme>
                   <scheme-name>distributed-scheme</scheme-name>
                   <service-name>DistributedQueryCache</service-name>
                   <backing-map-scheme>
                        <read-write-backing-map-scheme>
                             <scheme-ref>rw-bm</scheme-ref>
                        </read-write-backing-map-scheme>
                   </backing-map-scheme>
    <autostart>true</autostart>
              </distributed-scheme>
              <read-write-backing-map-scheme>
                   <scheme-name>rw-bm</scheme-name>
    <internal-cache-scheme>
         <local-scheme>
                        </local-scheme>
                   </internal-cache-scheme>               
              </read-write-backing-map-scheme>
    </caching-schemes>

  • Could you explain how the read-write-backing-map-scheme is configured in...

    Could you explain how the read-write-backing-map-scheme is configured in the following example?
    <backing-map-scheme>
        <read-write-backing-map-scheme>
         <internal-cache-scheme>
          <class-scheme>
           <class-name>com.tangosol.util.ObservableHashMap</class-name>
          </class-scheme>
         </internal-cache-scheme>
         <cachestore-scheme>
          <class-scheme>
           <class-name>coherence.DBCacheStore</class-name>
           <init-params>
            <init-param>
             <param-type>java.lang.String</param-type>
             <param-value>CATALOG</param-value>
            </init-param>
           </init-params>
          </class-scheme>
         </cachestore-scheme>
         <read-only>false</read-only>
         <write-delay-seconds>0</write-delay-seconds>
        </read-write-backing-map-scheme>
    </backing-map-scheme>
    ...Edited by: qkc on 30-Nov-2009 10:48

    Thank you very much for reply.
    In the following example, the cachestore element is not specified in the <read-write-backing-map-scheme> section. Instead, a class-name ControllerBackingMap is designated. What is the result?
    If ControllerBackingMap is a persistence entity, is the result same with that of cachestore-scheme?
    <distributed-scheme>
                <scheme-name>with-rw-bm</scheme-name>
                <service-name>unlimited-partitioned</service-name>
                <backing-map-scheme>
                    <read-write-backing-map-scheme>
                        <scheme-ref>base-rw-bm</scheme-ref>
                    </read-write-backing-map-scheme>
                </backing-map-scheme>
                <autostart>true</autostart>
            </distributed-scheme>
            <read-write-backing-map-scheme>
                <scheme-name>base-rw-bm</scheme-name>
                <class-name>ControllerBackingMap</class-name>
                <internal-cache-scheme>
                    <local-scheme/>
                </internal-cache-scheme>
            </read-write-backing-map-scheme>

  • HELP needed with the MSI Mega PC 651 !!!

    Hi there,
    It seemes to me the previous thread concerning the MEGA PC is no longer visited... and besides that, I need help.
    I have a problem getting to install a HD in the machine.
    I tried a 200 GB HD, which gives me an error when I try to load windows... immediately after the first restart in Windows Setup, I get a "Disk error. Press Ctrl+Alt+Del to restart"
    I tried a smaller HD (120 GB), thinking there might be something to do with the 137 GB Windows limitation... I get the same error.
    And then I try a 4.3 GB HD (an old one), and it works perfectly!
    I'm at my wits' end... can someone please tell me how to fix this, before I go crazy?

    Yes... as long as the boot partition is smaller than 32 GB, the computer is happy.
    BTW, Stu, I'm using a Mobile Celeron, and it works perfectly, with zero modifications... Stock speed is 1.8, but I keep the FSB at 133, so it's running at 2.4 GHz now...

  • Help needed for THE decision

    Hi everyone ☺
    I’m finally planning to start recording what I play, and after some hours of wandering on the web I found some interesting possibilities. Now what I need is to decide which one is more suitable for my needs, and here comes the moment for apple discussions
    Basically, I will record my own music one track/instrument at a time (I’m still not able to play more than one…and I dont’ want to spend 2.000$ to buy a 24-ins device just to record drum tracks), I’d like to have a software with built-in effects for guitar/bass/voice, integrated soundtrack possibilities (to play with video recordings), mixing options for both stereo and surround mixing, and I don’t want any card to be placed into my mac. Well, and obviously the sound quality must be pro-like…as anyone probably wants.
    So, here’s what I came up with:
    a) getting logic pro studio 8 and apogee duet
    b) getting pro tools m-powered and mbox 2
    c) getting one of the two softwares and a Monster iStudioLink Instrument cable and plug instruments directly into the mac
    Now, the questions are:
    if I can plug an instrument directly into my mac and control all parameters via one of the two softwares, what do tools like duet and mbox2 serve for?
    In the case this tools are useful [ ☺ ], why ☺ … and which is the couple software/hardware that can best suit my needs?
    I assume that every software has a proprietary file extension in which audio tracks are saved, so that it should be impossible to record an audio track with one software and edit it with another that has different functions/plugins (ex. from logic to pro tools, from pro tools to cakewalk sonar which I have on a pc etc.). Am I right, or is there any “standard”, non compressed high quality file type in which track can be saved and exported to be edited with different softwares?
    I know that from this post it may easily seem that I’m a hopeless digital idiot, but I swear the situation is not really that bad so no need for the kind of explanations with drawings like the ones you find in the “for dummies” guides lol so every experts’ advice will be greatly appreciated
    Neptune

    Thank you Bee Jay and Pancenter for the lighting-fast and useful answers
    now I am aware that an interface IS NEEDED lol (that means they are not produced without a reasons, are they?). I know Pro Tools is the industry standard but I don't like anyone/anything to tie me to their choices/interests (so that's why I was asking about Pro Tools, knowing that there's some sort of "hardware threat"). What I look for is just quality and if I understood what you both mean, as far as this aspect is concerned, Logic and Pro Tools are substantially comparable...isn't it? On the interfaces side, I already checked the Saffire ones (they seem quite good, and cross-platform use is definitely a plus), I will check the others mentioned and will let you know In fact, I didn't consider the "platform problem" but, as I wrote, I also own a PC with an Audigy 2 soundcard (midi/analog/optical/digital inputs/outputs and firewire port...not Madonna's private studio, but not as sad as Mac's little hole) and Sonar 6 Producer Edition, so that has been a really good point to ponder. And now, in the middle of this software/hardware battle...any personal suggestions based on tests/personal experience?

  • Help needed regarding the updation of "Relationships" in BP

    Hello Guys,
    This is to request you to kindly help me regarding the following.
    We have a scenario where all the employees assigned to an Organizational unit (in PPOMA_CRM) are not showing in the "Relationships" ("Has Employee")in the BP transaction of that Organizational Unit.
    Could anyone let me know whether there is any update program that updates the "Relationships" from the Organizational asssignment. Or we need to enter the employees manually in BP "Relationships". Please help. Thanks in anticipation.
    Regards,
    Kishore.

    Hi Amit,
    Thanks alot for your reply. Its really helpful for me.
    So,we usually enter these relationships manually only, right? Before going ahead with the custom program, could you please let me know whether there is any SAP note related to this.Once again thanks alot for you help.
    Regards,
    Kishore.

  • I need a DVD reader/writer to connect to my iMac

    I need to add a DVD reader/writer to connect to my new iMac.
    Any suggestions or good things to know?
    Janice

    You can buy cheap optical drives or more expensive ones that may or may not last longer.
    I prefer tray loading drives over slot loading drives as the discs don't jam in tray loading drives and the loading mechanisms in slot loading drives can have issues and be problematic.
    I would look at various optical drives from the OWC ( macsales.com).
    http://eshop.macsales.com/shop/firewire/optical-drives/
    Good Luck!

  • Dumb question....presentation layer "read / write" permission

    Hi, I'm curious to understand what exactly happens when you grant users "read / write" permissions on presentation layer objects? "Read" is self-explanatory...but what exactly does the "write" allow them to do?
    Thanks!
    Scott

    Hi Scott,
    Yeah agree with you. Deepika's answers makes more scense.
    By any chance have you looked/try at my answer for the post
    11g Help please - action links don't update when target reports move

  • Need to set read/write permissions to ALL subfolders

    So I have a clients folder created on the server, and workgroup with employees setup to access the shared clients folder. You can log onto it from outside, and access the folders. However they all need to be able to write as well; save files, move files, etc.
    I have the permissions set for the workgroup to read/write on the clients root folder, but it only applies to that folder. Any folders underneath it dont take effect. And there are hundreds of folders and subfolders.
    Obviously there must be an option so that i the permissions i set to the root clients folder are applied to ALL subfolders! How do i do it?!
    Please and thanks!

    Server Admin>File Sharing>Share Points, Permissions tab, click on the gear icon and select "Propagate Permissions..."

  • How do i change read/write permission on an external hard drive?

    how do i change read/write permissions for an external hard drive?

    If, on the otherhand, you are trying to write to a drive that is formatted NTFS (for Windows), and can't.
    You have two choices...
    1. Reformat the drive. Either Mac OS format, if you are using this only on your Mac. Or ExFAT, or FAT 32 if you intend to use it on both a Mac OS computer and a Windows unit. note: ExFAT is not suported by XP.
    2. Install one of the drivers necessary for the Mac to write to a NTFS volume. Unless you want the experience of having the support for this being one that is sporadic, avoid this. I used to be a strong proponent of NTFS-3G, until I started having the problems with Lion, that many users warned us about. Go this route only if you find you must use NTFS on your drive. Paragon and Tuxtera are the sources for these.

  • I'm looking for the read/write speeds for my Mac's.

    I'm looking for read/write speeds for my Macs, but I can't find consistent data. Does anyone know the speeds or know where I can look? I have three computers:
    iMac late 2013 Fusion/3TB i7
    iMac late 2009 1TB i7
    Macbook Air 256GB i5
    Thanks,

    I think the feature is called Voice Over, and I think it's now compatible with Reader:
    http://support.apple.com/kb/HT3598?viewlocale=en_US&locale=en_US

  • Help in getting the Read receipt in external mails ( like yahoomail , gmail

    Hi Experts,
    Scenario : We are sending notification mail to our external vendors for example abc.hotmail.com. We expect a Read acknowledgement to ensure the external vendor has gone through our notification generated from our SAP system. Point to consider is the two mail servers are different, sending mail server is configured to Outlook where as the receiving server will differ each time.
    It would be better if anyone lets me know whether SAP ensure that we get read receipt (
    acknowledgement) from other mail servers also?
    Steps followed are:
    Process 1: Using the function Module: SO_DOCUMENT_SEND_API1
    Populating the fields:
        wa_receivers-receiver   = <External Email address>.
        wa_receivers-rec_type   = 'U'.
        wa_receivers-notif_read = 'X'.
    Passing this structure to the Tables parameter: Receivers.
    However the read receipt is not obtained.
    Process 2: Using the class and the method:
    cl_send_request_bcs=>create_recipient_from_soos1
    The structure is getting populated as:
            recipient_soos1-recesc = 'U'.
            L_recipient_soos1-recextnam = < External email>
            l_recipient_soo1s-read      = 'X'.
    Also passing:
    I_requested_status = u2018Au2019.
    I_status_mail = u2018Au2019.
    CALL METHOD send_request->set_status_attributes
                EXPORTING
                  i_requested_status = i_requested_status
                  i_status_mail      = i_status_mail.
    However the read receipt is not obtained.
    Basis Settings:
    SCOT->Settings->Confirmation of Receipts -> the first option is checked.
    However still we are not getting the read receipt. The Delivery receipt is obtained but not the read-receipt
    Thanks
    Papiya

    Hi,
    Using the FM : SO_DOCUMENT_SEND_API1
    When you pass values to
    RECIEVERS
    for Delivery reciept : notif_del  = 'X'
    for Read reciept : notif_ndel = 'X'
    Try shceduling the report : RSCONN01 with default job name : SAPCONNECT ALL SEND
    and check if this helps.
    Cheers,
    Remi

Maybe you are looking for

  • Ipod touch won't start, just shows screen saying to connect to itunes.

    Ipod touch won't start or charge, or do anything other than when I plug it in, the screen shows a picture of the usb cord connecting to itunes. When I tried to connect to itunes using my computer, nothing happened. Any suggestions?

  • Finder Issue

    After iMac (10.6.8) has been running for a few hours, sometimes less than that Garageband and iTunes won't open. I have been keeping track of different scenarios when this happens and every time it happens I have noticed that the Finder won't allow m

  • Dragging tabbed window leaves ghost?

    OK, this is really more of an annoyance, but it's odd, and I'm wondering if anyone else has noticed it. When I Cmd-open a window (to make it open in a new window, it goes to a tab. Normally this is fine, but if I'm sorting files from folder to folder

  • Cannot Open .SWF file

    Hi Expert, I am a fresh man to Xcelsius I met a issue which may be very simple to you but I do not know how to solve it I create one Dashboard via Xcelsius 2008 SP3 then export it into .SWF file Then when I open .SWF file vie IE8, it always ask me to

  • Does anyone know if the Nike+iPod kit works with the new 2G Nano?

    The reason I ask is that Gizmodo says the bottom dock attachment is offset on the 2G Nano.