Simply not smart enough to write this

Hey All,
You know when you want to do something, and you realize you simply do not have the brain power to pull it off? I am there, but I think maybe a little bit of help might get me over the really hard part.
GOAL: Pull scheme data from our Salesforce.com instance (a massive CRM platform, basically just a fancy relational database system). Find all related objects, parse the data, and feed it into the JIT javascript visulization framework (http://thejit.org/). I want to use CF to pull the data, parse it, and feed it to JIT, however the format JIT requires is hard for me to write programatically.
Here is an example of the what the final result will look like, instead of numbers each node would be an object name.
http://thejit.org/Jit/Examples/Spacetree/example2.html
Here is the data that powers that thing.
http://pastebin.com/n2Sv64M6
It's just JSON, but the nesting get's really brutal.
So far I have the code in place to get the data I want, and break it into chunks, but I can't think of an eloquent way to create the required JSON. Here is what I have so far.
http://portal.fpitesters.com/sfmap.cfm
Here is the code for that tool.
<cfsetting requesttimeout="5000">
<cfif isdefined("form.Flush")>
     <cfcache action="flush" >
</cfif>
<form name="FlushForm" method="post">
     <input name="Flush" value="Recalculate Relationships (Will Take a Long Time)" type="submit" />
</form>
<cfcache action="optimal">
<cfoutput>
     These results where cached at #TimeFormat(Now())#.
     <cfset GlobalObject = server.OSF.describeGlobal()>
     <cfloop from="1" to="#arraylen(GlobalObject.Results)#" index="ObjectIndex">
          <cfset Object = server.OSF.describeObject(GlobalObject.Results[ObjectIndex])>
          <cfset ObjectInfo = Object.RawSoap>
          <cfset returnStruct = structnew()>
          <cfset RelationShips[GlobalObject.Results[ObjectIndex]] = arraynew(1)>
          <cfset numRefFields = 0>
          <cfloop
               From="1"
               To="#arraylen(ObjectInfo.Envelope.Body.describeSobjectResponse.result.fields)#"
               Index="i">
               <cfset ObjectFieldReference = ObjectInfo.Envelope.Body.describeSobjectResponse.result.fields[i]>
               <cfif ObjectFieldReference.type.xmltext eq "reference">
                    <cfset numRefFields = numRefFields + 1>
                    <cfset RelationShips[GlobalObject.Results[ObjectIndex]][numRefFields] = structnew()>
                    <cfset RelationShips[GlobalObject.Results[ObjectIndex]][numRefFields].name=ObjectFieldReference.name.xmltext>
                    <cfset RelationShips[GlobalObject.Results[ObjectIndex]][numRefFields].label=ObjectFieldReference.label.xmltext>
                    <cfset RelationShips[GlobalObject.Results[ObjectIndex]][numRefFields].refto=ObjectFieldReference.referenceto.xmltext>
               </cfif>
          </cfloop>
          <a name="#GlobalObject.Results[ObjectIndex]#">RelationsShips in #GlobalObject.Results[ObjectIndex]#</a>
          <ol>
               <cfloop from="1" to="#arraylen(RelationShips[GlobalObject.Results[ObjectIndex]])#" index="relationshipFieldIndex">
                    <li>  #RelationShips[GlobalObject.Results[ObjectIndex]][relationshipFieldIndex].name# to <a href="###RelationShips[GlobalObject.Results[ObjectIndex]][relationshipFieldIndex].refto#">#RelationShips[GlobalObject.Results[ObjectIndex]][relationshipFieldIndex].refto#</a></li>
               </cfloop>
          </ol>
     </cfloop>
</cfoutput>
So instead of creating that simple dumb list, I ned to create the JSON, but how? I just can't wrap my brain around it for some reason. Any help, sample code, anything would be of use. Thank you.

Ah, again sorry, we seem to be writting our posts at the same time.
http://pastebin.com/0XPzWDHr
Try that link. Thats what my formatted JSON ends up looking like.
There, sorry, just didn't want to be making huge posts.
My JSON
        "ID": "Account",
        "DATA": "{}",
        "CHILDREN": [
                "ID": "Account",
                "DATA": "Master Record ID",
                "CHILDREN": "[]",
                "NAME": "Account"
                "ID": "RecordType",
                "DATA": "Record Type ID",
                "CHILDREN": "[]",
                "NAME": "RecordType"
                "ID": "Account",
                "DATA": "Parent Account ID",
                "CHILDREN": "[]",
                "NAME": "Account"
                "ID": "User",
                "DATA": "Owner ID",
                "CHILDREN": "[]",
                "NAME": "User"
                "ID": "User",
                "DATA": "Created By ID",
                "CHILDREN": "[]",
                "NAME": "User"
                "ID": "User",
                "DATA": "Last Modified By ID",
                "CHILDREN": "[]",
                "NAME": "User"
                "ID": "Contact",
                "DATA": "Billing Contact",
                "CHILDREN": "[]",
                "NAME": "Contact"
                "ID": "Contact",
                "DATA": "Primary Org Contact",
                "CHILDREN": "[]",
                "NAME": "Contact"
                "ID": "Contact",
                "DATA": "Primary Household Contact",
                "CHILDREN": "[]",
                "NAME": "Contact"
        "NAME": "Account"
        "ID": "AccountContactRole",
        "DATA": "{}",
        "CHILDREN": [
                "ID": "Account",
                "DATA": "Account ID",
                "CHILDREN": "[]",
                "NAME": "Account"
                "ID": "Contact",
                "DATA": "Contact ID",
                "CHILDREN": "[]",
                "NAME": "Contact"
                "ID": "User",
                "DATA": "Created By ID",
                "CHILDREN": "[]",
                "NAME": "User"
                "ID": "User",
                "DATA": "Last Modified By ID",
                "CHILDREN": "[]",
                "NAME": "User"
        "NAME": "AccountContactRole"
        "ID": "AccountHistory",
        "DATA": "{}",
        "CHILDREN": [
                "ID": "Account",
                "DATA": "Account ID",
                "CHILDREN": "[]",
                "NAME": "Account"
                "ID": "SelfServiceUser",
                "DATA": "Created By ID",
                "CHILDREN": "[]",
                "NAME": "SelfServiceUser"
        "NAME": "AccountHistory"
        "ID": "AccountPartner",
        "DATA": "{}",
        "CHILDREN": [
                "ID": "Account",
                "DATA": "Account ID",
                "CHILDREN": "[]",
                "NAME": "Account"
                "ID": "Account",
                "DATA": "Account ID",
                "CHILDREN": "[]",
                "NAME": "Account"
                "ID": "Opportunity",
                "DATA": "Bid ID",
                "CHILDREN": "[]",
                "NAME": "Opportunity"
                "ID": "User",
                "DATA": "Created By ID",
                "CHILDREN": "[]",
                "NAME": "User"
                "ID": "User",
                "DATA": "Last Modified By ID",
                "CHILDREN": "[]",
                "NAME": "User"
        "NAME": "AccountPartner"
        "ID": "AccountShare",
        "DATA": "{}",
        "CHILDREN": [
                "ID": "Account",
                "DATA": "Account ID",
                "CHILDREN": "[]",
                "NAME": "Account"
                "ID": "Group",
                "DATA": "User\/Group ID",
                "CHILDREN": "[]",
                "NAME": "Group"
                "ID": "User",
                "DATA": "Last Modified By ID",
                "CHILDREN": "[]",
                "NAME": "User"
        "NAME": "AccountShare"
        "ID": "ActivityHistory",
        "DATA": "{}",
        "CHILDREN": [
                "ID": "Account",
                "DATA": "Account ID",
                "CHILDREN": "[]",
                "NAME": "Account"
                "ID": "Contact",
                "DATA": "Contact\/Lead ID",
                "CHILDREN": "[]",
                "NAME": "Contact"
                "ID": "Admin_Projects__c",
                "DATA": "Bid\/Account ID",
                "CHILDREN": "[]",
                "NAME": "Admin_Projects__c"
                "ID": "User",
                "DATA": "Assigned To ID",
                "CHILDREN": "[]",
                "NAME": "User"
                "ID": "User",
                "DATA": "Created By ID",
                "CHILDREN": "[]",
                "NAME": "User"
                "ID": "User",
                "DATA": "Last Modified By ID",
                "CHILDREN": "[]",
                "NAME": "User"
        "NAME": "ActivityHistory"
        "ID": "AdditionalNumber",
        "DATA": "{}",
        "CHILDREN": [
                "ID": "CallCenter",
                "DATA": "Call Center ID",
                "CHILDREN": "[]",
                "NAME": "CallCenter"
                "ID": "User",
                "DATA": "Created By ID",
                "CHILDREN": "[]",
                "NAME": "User"
                "ID": "User",
                "DATA": "Last Modified By ID",
                "CHILDREN": "[]",
                "NAME": "User"
        "NAME": "AdditionalNumber"
        "ID": "Admin_Projects__c",
        "DATA": "{}",
        "CHILDREN": [
                "ID": "Group",
                "DATA": "Owner ID",
                "CHILDREN": "[]",
                "NAME": "Group"
                "ID": "User",
                "DATA": "Created By ID",
                "CHILDREN": "[]",
                "NAME": "User"
                "ID": "User",
                "DATA": "Last Modified By ID",
                "CHILDREN": "[]",
                "NAME": "User"
                "ID": "User",
                "DATA": "Project Lead",
                "CHILDREN": "[]",
                "NAME": "User"
        "NAME": "Admin_Projects__c"
        "ID": "ApexClass",
        "DATA": "{}",
        "CHILDREN": [
                "ID": "User",
                "DATA": "Created By ID",
                "CHILDREN": "[]",
                "NAME": "User"
                "ID": "User",
                "DATA": "Last Modified By ID",
                "CHILDREN": "[]",
                "NAME": "User"
        "NAME": "ApexClass"
        "ID": "ApexTrigger",
        "DATA": "{}",
        "CHILDREN": [
                "ID": "User",
                "DATA": "Created By ID",
                "CHILDREN": "[]",
                "NAME": "User"
                "ID": "User",
                "DATA": "Last Modified By ID",
                "CHILDREN": "[]",
                "NAME": "User"
        "NAME": "ApexTrigger"
Their JSON (a small sample anyway)
    id: \"node02\",
    name: \"0.2\",
    data: {
    children: [
            id: \"node13\",
            name: \"1.3\",
            data: {
            children: [
                    id: \"node24\",
                    name: \"2.4\",
                    data: {
                    children: [
                            id: \"node35\",
                            name: \"3.5\",
                            data: {
                            children: [
                                    id: \"node46\",
                                    name: \"4.6\",
                                    data: {
                                    children: [
                            id: \"node37\",
                            name: \"3.7\",
                            data: {
                            children: [
                                    id: \"node48\",
                                    name: \"4.8\",
                                    data: {
                                    children: [
                                    id: \"node49\",
                                    name: \"4.9\",
                                    data: {
                                    children: [
                                    id: \"node410\",
                                    name: \"4.10\",
                                    data: {
                                    children: [
                                    id: \"node411\",
                                    name: \"4.11\",
                                    data: {
                                    children: [
                            id: \"node312\",
                            name: \"3.12\",
                            data: {
                            children: [
                                    id: \"node413\",
                                    name: \"4.13\",
                                    data: {
                                    children: [
                            id: \"node314\",
                            name: \"3.14\",
                            data: {
                            children: [
                                    id: \"node415\",
                                    name: \"4.15\",
                                    data: {
                                    children: [
                                    id: \"node416\",
                                    name: \"4.16\",
                                    data: {
                                    children: [
                                    id: \"node417\",
                                    name: \"4.17\",
                                    data: {
                                    children: [
                                    id: \"node418\",
                                    name: \"4.18\",
                                    data: {
                                    children: [
                            id: \"node319\",
                            name: \"3.19\",
                            data: {
                            children: [
                                    id: \"node420\",
                                    name: \"4.20\",
                                    data: {
                                    children: [
                                    id: \"node421\",
                                    name: \"4.21\",
                                    data: {
                                    children: [
                    id: \"node222\",
                    name: \"2.22\",
                    data: {
                    children: [
                            id: \"node323\",
                            name: \"3.23\",
                            data: {
                            children: [
                                    id: \"node424\",
                                    name: \"4.24\",
                                    data: {
                                    children: [
            id: \"node125\",
            name: \"1.25\",
            data: {
            children: [
                    id: \"node226\",
                    name: \"2.26\",
                    data: {
                    children: [
                            id: \"node327\",
                            name: \"3.27\",
                            data: {
                            children: [
                                    id: \"node428\",
                                    name: \"4.28\",
                                    data: {
                                    children: [
                                    id: \"node429\",
                                    name: \"4.29\",
                                    data: {
                                    children: [
                            id: \"node330\",
                            name: \"3.30\",
                            data: {
                            children: [
                                    id: \"node431\",
                                    name: \"4.31\",
                                    data: {
                                    children: [
                            id: \"node332\",
                            name: \"3.32\",
                            data: {
                            children: [
                                    id: \"node433\",
                                    name: \"4.33\",
                                    data: {
                                    children: [
                                    id: \"node434\",
                                    name: \"4.34\",
                                    data: {
                                    children: [
                                    id: \"node435\",
                                    name: \"4.35\",
                                    data: {
                                    children: [
                                    id: \"node436\",
                                    name: \"4.36\",
                                    data: {
                                    children: [
                    id: \"node237\",
                    name: \"2.37\",
                    data: {
                    children: [
                            id: \"node338\",
                            name: \"3.38\",
                            data: {
                            children: [
                                    id: \"node439\",
                                    name: \"4.39\",
                                    data: {
                                    children: [
                                    id: \"node440\",
                                    name: \"4.40\",
                                    data: {
                                    children: [
                                    id: \"node441\",
                                    name: \"4.41\",
                                    data: {
                                    children: [
                            id: \"node342\",
                            name: \"3.42\",
                            data: {
                            children: [
                                    id: \"node443\",
                                    name: \"4.43\",
                                    data: {
                                    children: [
                            id: \"node344\",
                            name: \"3.44\",
                            data: {
                            children: [
                                    id: \"node445\",
                                    name: \"4.45\",
                                    data: {
                                    children: [
                                    id: \"node446\",
                                    name: \"4.46\",
                                    data: {
                                    children: [
                                    id: \"node447\",
                                    name: \"4.47\",
                                    data: {
                                    children: [
                            id: \"node348\",
                            name: \"3.48\",
                            data: {
                            children: [
                                    id: \"node449\",
                                    name: \"4.49\",
                                    data: {
                                    children: [
                                    id: \"node450\",
                                    name: \"4.50\",
                                    data: {
                                    children: [
                                    id: \"node451\",
                                    name: \"4.51\",
                                    data: {
                                    children: [
                                    id: \"node452\",
                                    name: \"4.52\",
                                    data: {
                                    children: [
                                    id: \"node453\",
                                    name: \"4.53\",
                                    data: {
                                    children: [
                            id: \"node354\",
                            name: \"3.54\",
                            data: {
                            children: [
                                    id: \"node455\",
                                    name: \"4.55\",
                                    data: {
                                    children: [
                                    id: \"node456\",
                                    name: \"4.56\",
                                    data: {
                                    children: [
                                    id: \"node457\",
                                    name: \"4.57\",
                                    data: {
                                    children: [
                    id: \"node258\",
                    name: \"2.58\",
                    data: {
                    children: [
                            id: \"node359\",
                            name: \"3.59\",
                            data: {
                            children: [
                                    id: \"node460\",
                                    name: \"4.60\",
                                    data: {
                                    children: [
                                    id: \"node461\",
                                    name: \"4.61\",
                                    data: {
                                    children: [
                                    id: \"node462\",
                                    name: \"4.62\",
                                    data: {
                                    children: [
                                    id: \"node463\",
                                    name: \"4.63\",
                                    data: {
                                    children: [
                                    id: \"node464\",
                                    name: \"4.64\",
                                    data: {
                                    children: [
            id: \"node165\",
            name: \"1.65\",
            data: {
            children: [
                    id: \"node266\",
                    name: \"2.66\",
                    data: {
                    children: [

Similar Messages

  • Suddenly i got a white screen on my ipod. cannot be restored, doesnt open. warranty pased 40 days ago and i was not smart enough to go before (i didnt know).

    suddenly i got a white screen on my ipod. cannot be restored, doesnt open. warranty pased 40 days ago and i was not smart enough to go before (i didnt know).
    can this be resolved?

    Let the battery fully drain. After charging for an hlour try the reset and restore via iTunes.

  • I am unable to sync my iPad with iTunes. I get a message telling me I do not have enough privileges for this operation

    i am unable to sync my ipad 4th generation with iTunes. I get a message saying I do not have enough privileges for this operation

    To be honest I'd be very tempted to ring Applecare and explain that prior to downloading iOS5 your iPod Touch worked perfectly however since downloading Apple's new iOS5 it's "bricked" therefore can they as a matter of decency try to help put things right warranty situation notwithstanding.  Afterall it does appear to be one of Apple's products that has broken your previously working iPod Touch.

  • TS3694 Hello, I have an error while trying to add move music into my itunes library. 'The itunes library file cannot be saved. You do not have enough previledges for this operaion? help - what does this mean?

    Hello, I have an error while trying to add move music into my itunes library. 'The itunes library file cannot be saved. You do not have enough previledges for this operaion? help - what does this mean?

    Hi luxmi01,
    Here is some information and troubleshooting on the permissions issues you are seeing:
    Trouble adding music to iTunes library or importing audio CD
    http://support.apple.com/kb/ts1387
    Cheers!
    - Ari

  • I keep getting a message as follows, the i tunes library file cannot be saved. you do not have enough privileges for this operation

    I keep getting a message as follows, the i tunes library file cannot be saved. you do not have enough privileges for this operation

    I didn't know that iTunes had a 64bit download. I have Windows 7 Home Premium with 64bit operation system. I downloaded the iTunes for 64bit and it seems to have corrected the problem. I haven't received the message yet since I did this.

  • When I try to sync my iPhone I'm receiving an error msg that I do not have enough privileges for this opreation.

    When I try to sync my iPhone I'm receiving an error msg that I do not have enough privileges for this opreation. Any advice how this can be resolved?

    Google is your friend as this gets asked a lot.
    http://www.google.com/search?source=ig&hl=en&rlz=&q=site%3Adiscussions.apple.com +iphone+privilages&aq=f&aqi=&aql=&oq=#hl=en&newwindow=1&safe=off&sa=X&ei=g97CTd6 YM432gAe6momCAg&ved=0CBYQvwUoAQ&q=site%3Adiscussions.apple.com+iphone+privileges &spell=1&biw=1680&bih=896&bav=on.2,or.r_gc.r_pw.&fp=c9365e657b732f11

  • The Ipod cannot be synced you do not have enough access for this operation

    My Ipod cannot be synced to itune "you do not have enough access for this operation"

    thx much, it worked and i can now sync my ipod touch fine. 
    Maybe you can help me with another issue i'm having with itunes album D/L of Sgt. Peppers album purchase.  I got nowhere with iTunes support, but everytime i click on "check for available downloads" from the Store menu in itunes, i get the following error:

  • What does it mean when I get a message that says you do not have enough privileges for this operation

    What does it mean when I get a message that says You do not have enough access privileges for this operation

    To be honest I'd be very tempted to ring Applecare and explain that prior to downloading iOS5 your iPod Touch worked perfectly however since downloading Apple's new iOS5 it's "bricked" therefore can they as a matter of decency try to help put things right warranty situation notwithstanding.  Afterall it does appear to be one of Apple's products that has broken your previously working iPod Touch.

  • IPod cannot be synced You do not have enough access for this operation

    Hi,
    We have one computer. My daughter & I have our own seperate user accounts via Vista through which we each have our own ITune accounts. ITunes music appears to be filed through C>User>Music>ITunes/ITunes Music (User being both myself & my daughter).
    I have tried copying music from User Me to User daughter, but I keep getting the following message: -
    *The User Ipod cannot be synced. You do not have enough access priviledges for this operation.*
    Can anyone help me please? The music is legitimate either from ITunes or other audio CD's.
    An idiots guide to correcting this would be appreciated.
    Thx again

    Are you trying to use two itunes libraries on one iPod? If I'm not mistaken, you can't do this. You can try adding the songs from her library to yours and then syncing. It's just a guess so I may be completely wrong. There may already be a thread that addresses this so if you haven't tried already you should do a search to see if anyone else has already covered this topic.

  • You do not have enough privileges for this operiction

    you do not have right privileges for this operiction

    I should have explored other threads before writing this, as I found the answer elsewhere. Turns out, the folder I was saving the podcasts to had been changed to 'read only'. Changed to 'read and write' and podcasts download successfully now. I'm not sure how that changed during the upgrade, but no matter, I'm back at it now.

  • Yahoo email account not open after i write this code in c#

    Hi guys i make send email by this code 
    but after one week the yahoo account  not open why 
    the yahoo account not open is [email protected]
    and this is my code 
    string smtpAddress = "smtp.mail.yahoo.com";int portNumber = 587;
    bool enableSSL = true;
    string emailFrom = "[email protected]";
    string password = "passw#rd";
    string emailTo = "[email protected]";
    string subject = "Working Finish today" + label6.Text;
    string body = "Summary for Date" + "" + label6.Text + "" +
    "Quantity Required" + "" + "(" + label17.Text + ")" + "/" +
    "Quantity Shipped""/" + "(" + label18.Text + ")" + "/" +
    "Quantity Remaining" + "/" + "(" + label19.Text + ")";
    using (MailMessage mail = new MailMessage())
    mail.From = new MailAddress(emailFrom);
    mail.To.Add(emailTo);
    mail.Subject = subject;
    mail.Body = body;
    mail.IsBodyHtml = true;
    mail.Attachments.Add(new Attachment("I:\\gridview" + DateTime.Today.ToString("dd-MM-yyyy") + ".csv"));
    System.Net.Mail.SmtpClient smtp = new SmtpClient(smtpAddress, portNumber);
    smtp.Credentials = new NetworkCredential(emailFrom, password);
    smtp.EnableSsl = enableSSL;
    smtp.Send(mail);
    What is wrong in this code 
    I create account by yahoo two times 
    and after this open may be 6 days and after this not open
    and cannot open your yahoo account after this i try from another computer but not open
    i check caps lock and every thing and language and i write in files before i open 
    but not accept to open
    Why 

    @ahmedsalah2012
    >>IF problem is limitation How i now the limitation finish or still exist
    I've just do a quick search. Please refer  to
    http://group-mail.com/sending-email/email-sending-limits-for-isp-web-hosting-and-free-email-providers/
    For more information about the options available to send more email than allowed by your current outgoing SMTP mail server, read
    Email Send Limits and Options.
    Based on your scenario, your Email is Yahoo, please also consider to post in Yahoo official website for more specific response.
    Note: This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience
    to you. 
    Microsoft does not control these sites and has not tested any software or information found on these sites;Therefore, Microsoft
    cannot make any representations regarding the quality, safety, or suitability of any software or information found there.
    There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure that you
    completely understand the risk before retrieving any software from the Internet.
    Best regards,
    Kristin
    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.

  • Itunes library.itl is locked, on a locked disk, of you do not have permissio to write this file

    itunes library.itl is locked, on a locked disk, or you do not have write permission to this file

    Same problem happened to me. Go to Music (on windows). Then to iTunes folder. Right click on "iTunes Library". Properties. Then click on security tab. Where it says "To change Permissions, click edit" Click Edit. Then under "Permissions for system" Check the box for Full Control ALLOW. Click Apply. Then run iTunes it should work.

  • The error message says, "There was a problem downloading 'X'.  You do not have enough privileges for this application."  Any suggestions?

    I have recently added an iPhone 4s, and cleaned out the hard drive of my eMac to use solely for iTunes, but now it will not let me download iCloud items from iTunes Match.  Do I need to change settings on the iPhone, or did I erase something I shouldn't have from my hard drive?

    I should have explored other threads before writing this, as I found the answer elsewhere. Turns out, the folder I was saving the podcasts to had been changed to 'read only'. Changed to 'read and write' and podcasts download successfully now. I'm not sure how that changed during the upgrade, but no matter, I'm back at it now.

  • The iPhone cannot be synced. You do not have enough privileges for this operation

    On a Win7 PC and iTunes I'm trying to sync my wife's phone while signed in under our Apple iTunes account. It connects, backs up but then displays the following message:
    The WIndoew accout has full admin privileges and the iTunes account is valid. Ideas?
    Thanks!
    Larry

    Thank you.
    I actually figured it out a while ago.
    Turns out it is not an issue with the iPhone or iTunes.
    By process of elimination I deduced it could be a permissions issue with the hard drive and/or folder that holds the contents of my Music Library.
    For example, if the "Sharing & Permissions" settings (found in the "Get Info" Window) are set to "Read Only" on the internal or external drive that contains your Music Library for iTunes then you can not write to the disk. Therefore, you do not have privelges to make changes to the internal or external drive and you get the error message when you try to sync with the information on that drive.
    Here's the kicker and million dollar questions:
    How did the "Sharing & Permissions" settings get changed on my Hard Drive without me doing it?
    Why did my iPhone sync fine yesterday and suddenly today the Hard Drive is doing this?
    I have to set all priveleges to all drives to "Read & Write" and that just doesn't seem very secure to me.

  • You do not have enough privileges for this operation

    This is what I tunes says when i open it.
    Then it works most of the time.  sometimes freezes...
    Also can't find lots of songs...

    I should have explored other threads before writing this, as I found the answer elsewhere. Turns out, the folder I was saving the podcasts to had been changed to 'read only'. Changed to 'read and write' and podcasts download successfully now. I'm not sure how that changed during the upgrade, but no matter, I'm back at it now.

Maybe you are looking for

  • [SOLVED] lib32-libgpg-error and lib32-libgcrypt no longer working

    The Dell 1320c printer requires a workaround of using it with a FujiXerox DocuPrint C525a driver, which only exists for 32bit systems.  In order to get it running, you need to manually copy the files to the proper locations.  With the new upgrade on

  • Duplicate database from active database in 11g?

    Does anyone know if it's possible to clone a database from stby by issuing RMAN duplicate database FROM ACTIVE DATABASE command in 11g? I know it's possible from primary to create stby. Thanks in advance

  • Can't locate fiiles with Itunes 9.0.1.8 then after 30minute period can.

    My library said it couldn't locate the music putting the ! point on a bunch. I re-added the folder and it created duplicates for every file. Then I sorted by added date and deleted all the files I just added. 30 minutes later all the files could be l

  • Data not exist in FF Log Report

    Hello GRC Experts, I have a problem in FF log report. Iam using SPM Ver 5.3 Under Tab Reports => User Reports => Reason / Activity Report => I select System Name then i mention the date, for example a month. I execute, i get all the details of users

  • List IPs/MACs of devices and switchport where they are plugged in

    Hi there, I'll be going out to an installation with a 6504 and a couple of dozend access switches to check for stuff that's plugged into the wrong port. What I want to do is to create a list: what client-device (IP) is connected to what port. Unfortu