Solved Error 2123

I followed the advice someone gave on the forum and got rid of the Error 2123 I used to get when burning a CD in iTunes. It seems like many people have this problem. Here is what I did (again someone whose alias I don't remember posted this somewhere, but his message kind of got lost among the many replies, etc. Here it is again)
Go to Control Panel / System / Hardware / Device Manager
Uninstall everything under CD / DVD Rom Drives
Uninstall everything under IDE / ATAPI Controllers
When you restart your computer the drivers will automatically reload.
This solved the problem for me. I no longer get the errors while burning CDs.

I followed someone else's advice and bought CD-R for music, burned perfectly! worked for me, may work for others.

Similar Messages

  • Adobe photoshop cc 2014 crashes at startup / GC driver up to date (nvidia 740M) / windows 8 / uninstalled software reinstalled disconnected creative cloud and reconnect /  nothing solved /error report ready to send

    Help
    in this for 3 and a half hours now and really nervous bout it.
    adobe photoshop cc 2014 crashes at startup /
    solely photoshop : lightroom illustrator indesign okay /
    GC driver up to date (nvidia 740M) /
    windows 8 /
    uninstalled software and reinstalled from creative cloud app /
    disconnected profil creative cloud and reconnect /
    moved preferences out /
    I just have installed a fresh OS windows 8 and nothing but the adobe apps /
    nothing solved /error report ready to send
    (edit)
    funny cannot send the image of the errors because i DO NOT have a photoshop working version !)
    (did the screen copy, exported in jpeg srgb  from illustrator)

    exported the error log from lightroom still not working as it seems like the file (it's a screenshot) is more than a 8mo size file !
    i ignored i was using a 8k screen till now
    please help
    Cheers,
    Arnaud.

  • I can't burn a CD "Error 2123" always comes up!! HELP!!!!

    I try to burn a disc and all it says is "The attempt to burn a disc failed. Error 2123." The website articles didn't help, and the phone lady didn't help (Apparently i'm only allowed 1 phone call.) so please help me!!!!!!!!!!

    If you don't have Nero, check out http://discussions.apple.com/message.jspa?messageID=9229334#9229334. I think some people have found a way to get just the Burn Rights program.
    If that doesn't work, some people seem to have luck with editing the registry or messing with filters or gear drivers. Check out this discussion starting with Tytus (he came up with the Nero fix) on March 22:
    http://discussions.apple.com/thread.jspa?threadID=1939904&tstart=0
    Hope this helps!

  • HT201263 How do I solve error no. 1050? I can't restore my iphone! What do i do next?

    How do I solve error no. 1050? I can't restore my iphone! What do i do next?

    ERROR 1015...
    This Error Code is indicative of the Device being jailbroken / Hacked...
    Sorry... But...
    The discussion of Jailbroken Devices is against the Terms of Use of this Forum.
    You will need to look elsewhere.

  • Error #2123 bitmap.draw à partir d'un flux HDS dans une application Flex

    Bonjour à tous,
    Je suis en train de développer un player vidéo en Flex qui doit prendre en charge le HDS.
    J'essaie en vain depuis hier de créer une une image Bitmap à partir d'un flux HDS que je récupère d'Akamai.
    J'ai essayer avec un Flux RTMP, aucun problème, j'arrive bien à créer une image bitmap à partir du flux vidéo. Mais dès  que j'essaie avec un flux HDS, j'ai une erreur # 2123 qui correspond à une violation de sécurité.
    le message complet :
    Error #2123: Violation de la sécurité Sandbox : BitmapData.draw : http://192.168.0.194/test-hds/testHDS.swf ne peut pas accéder à null. Accès refusé à tous les fichiers de régulation.
    J'ai créer un serveur avec Wowza en version trial pour avoir un exemple de flux HDS. Même problème qu'avec le flux d'Akamai
    Mon Code :
    Fichier testHDS.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                    xmlns:mx="library://ns.adobe.com/flex/mx"
                    xmlns:s="library://ns.adobe.com/flex/spark"
                    minWidth="955" minHeight="800" creationComplete="init()" layout="absolute">
            <!-- Placer ici les éléments non visuels (services et objets de valeur, par exemple). -->
        <fx:Declarations>
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                import mx.controls.Alert;
                import mx.core.FlexGlobals;
                import mx.core.UIComponent;
                private var osmfPlayer:OSMFPlayer;
                public function init():void{         
                    Security.allowDomain("*")
                    Security.loadPolicyFile("http://192.168.0.194/crossdomain.xml");              
                    osmfPlayer = new OSMFPlayer();
                    this.addChild(osmfPlayer);
                protected function myBtn_clickHandler(event:MouseEvent):void
                    try {
                        var dpo:DisplayObject = osmfPlayer.player.displayObject;      
                        var imgBD:BitmapData;
                        var imgBitmap:Bitmap;
                        imgBD = new BitmapData(100,100);
                        imgBD.draw(osmfPlayer.player.displayObject as DisplayObject);
                        imgBitmap=new Bitmap(imgBD);              
                        var comp :UIComponent = new UIComponent();
                        comp.addChild(imgBitmap);
                        comp.x =0  ;
                        comp.y = 720;
                        addChild(comp);
                        Alert.show("ok");              
                    catch(e:Error){
                        Alert.show(e.message);
            ]]>
        </fx:Script>
        <s:Button id="myBtn" x="0" y="720" label="MyButton" click="myBtn_clickHandler(event)">      
        </s:Button>
    </mx:Application>
    Fichier OSMFPlayer.as
    package
        import mx.core.UIComponent;
        import org.osmf.containers.MediaContainer;
        import org.osmf.media.DefaultMediaFactory;
        import org.osmf.media.MediaElement;
        import org.osmf.media.MediaPlayer;
        import org.osmf.media.URLResource;
        public class OSMFPlayer extends UIComponent
            //URI of the media
            public static const PROGRESSIVE_PATH:String =
                "http://192.168.0.194:1935/vod/mp4:sample.mp4/manifest.f4m";       
            public var player:MediaPlayer;
            public var container:MediaContainer;
            public var mediaFactory:DefaultMediaFactory;  
            public function OSMFPlayer()
                initPlayer();
            protected function initPlayer():void
                //the pointer to the media
                var resource:URLResource = new URLResource( PROGRESSIVE_PATH );
                // Create a mediafactory instance
                mediaFactory = new DefaultMediaFactory();      
                //creates and sets the MediaElement (generic) with a resource and path
                var element:MediaElement = mediaFactory.createMediaElement( resource );
                //the simplified api controller for media
                player = new MediaPlayer( element );
                //the container (sprite) for managing display and layout
                container = new MediaContainer();
                container.addMediaElement( element );
                //Fit the player size
                container.width =  1280;
                container.height = 720 ;//- FlexGlobals.topLevelApplication.actionBar.height;
                //Adds the container to the stage
                this.addChild( container );
    crossdomain.xml
    Emplacement :  à la racine du serveur
    <?xml version="1.0"?>
    <cross-domain-policy>
    <site-control permitted-cross-domain-policies="master-only" />
    <allow-access-from domain="*" />
    <allow-access-from domain="*.adobe.com" />
    <allow-access-from domain="*.macromedia.com" />
    </cross-domain-policy>
    //fin de code
    J'ai d'abord pensé que c'était lié au crossdomain.xml, j'en ai testé un certains nombre, ca ne change rien.
    Je ne sais plus trop quoi faire
    Si quelqu'un avait une idée ou une piste, je suis à cours !
    Merci d'avance

    Perhaps if you are going to use a foreign language in your post, you should use it in the title, also, so as otherw will know what to expect... you will be more likely to get responses from those who speak the same language also... not a criticism, just a suggestion. and no need to repost again...

  • ITunes 6.0 burning error 2123

    Has anyone figured out what error 2123 is all about? A few versions ago, I was able to burn some CDs but occasionally got the message "please insert a blank CD" when in fact, there was a blank CD in the drive. Now, with v.6, nothing; except "error 2123." Any revelations yet?

    Adding my voice to the chorus as well.
    I downloaded iTunes 6.0.1 yesterday afternoon and was quite pleased with it... until trying to burn a new playlist to a CD. Once the burn initialization started, error 2123 popped up and resulted in my disc being spat back out at me.
    I've tried everything. I fired off an e-mail to Apple support yesterday afternoon... but judging from the comments of others on here, I really don't expect to receive assistance. Very, very frustrating.
    If all else fails, I suppose it's best to remove iTunes 6.0.1 and reload iTunes 5.0.1 (didn't have any problems with this version).
    Like everyone here, I'd really appreciate some feedback, should someone discover a solution on their own... or succeeds in receiving support from Apple.

  • Sandbox Error 2123

    Hope somebody can help :X
    I've been working on a UI Automation and Testing framework
    for my AIR apps. I have an AIR application (TestRunner) which loads
    up another air application as a child component and manipulates
    properties, fires events at it, etc. and then grabs screenshots
    (actually bitmapdata.draw) and compares to bitmapdata that is
    already stored with the test's source.
    This has all been working great so far until I got to a
    particular area of the child application, which involves video and
    images. These videos and images are loaded from a content folder
    within the test application's directory and referred to as such
    (app:/content/...). At certain points within my test I get the
    exception:
    SecurityError: Error #2123: Security sandbox violation:
    BitmapData.draw: app:/TestRunner.swf cannot access unknown URL. No
    policy files granted access. at flash.display::BitmapData/draw()
    To be sure that it was not a problem between SWFs, I've
    compiled the application-to-be-tested and the tester app into one
    SWF. To clarify, the build looks like this:
    tests/
    TestRunner.swf
    TestRunner-app.xml
    bitmapData/
    content/
    I've googled this to death and tried everything I can think
    of (placing policy files everywhere, compiling the tester and the
    testee into a single SWF, app: vs. nativePath). I'm still
    struggling to understand why an AIR app, that can access the file
    system until the cows come home, can't take a screenprint of a
    video that was loaded from the application's directory.
    It's the "unknown URL" that really gets me. Why can't it
    resolve?
    I should note that I'm running the application using ADL.
    This is sort of a requirement, as I'm going to need these tests to
    be run by cruisecontrol and I can't have the build installing these
    applications on every check-in.
    Anybody seen this (#2123 error when bitmapdata.draw-ing an
    image/video that is loaded locally)? Anyone with access to the
    flash source code that can tell me why I would see "unknown URL"?
    Any help is appreciated. Thanks

    Come on, no takers? :(
    I've been diggin around in the flex source and trying
    anything I can. For instance, I've tried setting my Image control's
    source property to a Bitmap, to a ByteArray, to a local url (c:/
    and app:/). I've tried using my own loader, loadercontext, as well
    as setting every flash.system.Security setting I can find.
    At this point it seems to be a bug. Apparently, when I have a
    File object that I pulled from the app:/ directory, no matter what
    I attempt to do with the file, it's never recognized as trusted
    content (or whatever the checkpolicyfile flag is responsible for).
    I guess I'll create a bug ticket for it, but it'll take some time
    to create a test application that reproduces the problem.
    Anybody have thoughts at all?

  • How to solve error -1450?

    I have been re-installed iTunes, and it keeps pop-up with the error -1450 ( cannot save music library ), and it reloads all the playlist each time I switch on the computer and open iTunes.
    I have been re-install iTunes after the error appear, and it seems although I have re-install iTunes, the problem doesn't solve and keeps repeat.
    For any kindness, please tell how I can fix this error, as I cannot find any articles on support page about this.
    Thanks

    Does anyone know how to solve error 1450 or even what
    caused it!? This problem is killing me.
    I found this by doing a search on Google for "Error 1450": http://support.microsoft.com/kb/236964/EN-US/

  • How do you solve error "You can't use this version of the application Install Mac OS X.app with this version of Mac OS X" when trying to go back to leopard from lion?

    How do you solve error "You can't use this version of the application Install Mac OS X.app with this version of Mac OS X" when trying to go back to leopard from lion?
    Local Mac shop said to hold down "c" after inserting disk to get "disk utility" to come up in order to wipe hard drive.  I can't seem to get it to do this.

    This W7 was purchased for using Fusion, as others did - per reviews from amazon.  The technician today called their contact at VMWare - Fusion not officially for use with Lion - even though I read at the VMWare support site that others have made it work.  Apparently my setup doesn't work. 
    Do you know how to do the proceedure for bringing up the disk utility when starting the disk?
    BTW, some of the windows applications I want to continue using are Incredimail, Calendarscope, Stamps.com and a few others I have used over many years.  What do you use for email and calendar?
    Wow, sounds like another reason to not use MS Windows.
    Regarding your Disk Utility question, please elablorate I'm not sure what you're trying to do. Disk Utilty is just that...a utility, it's something most users never have to use especially on a new computer. Let me know what you're trying to do there before I give you some instructions.
    As for as your Windows apps I would recommend using Mail and iCal, both come as part of OS X and are very robust tools. Don't discount the software built right into OS X it's very robust and powerful not all like the bloatware most Windows boxes ship with. Stamps.com well I'd look for another alternative. It's clear they don't support OS X which makes me a little suspicious that they're so behind the times. 
    Also if you have not been exposed to these links before I'd strongly recommend bookmarking them and using them. They're extermely useful!
    Switch 101
    Mac 101
    Find Out How Video tutorials

  • !!Still unresolved error #2123: BitmapData.draw(), videosampleaccess, No policy files granted access

    Hello,
    I have looked all over the forums, google etc. and not found any reliable and working solution to be able to retrieve the stream bitmapdata from RTMP  or HTTPDynamicStreaming source. Please find the details below.
    I have tried everything:
    NetStream.checkPolicyFile = true
    Security.loadPolicyFile(...);
    /applications/live/main.asc has the code below:
    application.onConnect = function( client )
        client.videoSampleAccess = "/";
        this.acceptConnection(client) ;
    The Application.xml has the tag:
    <Client>
         <access>
              <VideoSampleAccess enabled="true">/</VideoSampleAccess>
         </access>
    </Client>
    But constantly, I receive this error ( both on FMS3.5 and FMS4.0 RTMP & HttpLiveDynamicStreaming):
    securityerror:Error #2123: Security sandbox violation: BitmapData.draw: http://localhost/xxyy.swf cannot access rtmpt://localhost:1935/live. No policy files granted access.
    The problem persists wherever the player.swf is placed.
    Since I'm using OSMF the video display object had to be retrieved in the way like this:
    var mediaDisplayObjectTrait:DisplayObjectTrait;
    mediaDisplayObjectTrait = media.getTrait(MediaTraitType.DISPLAY_OBJECT) as DisplayObjectTrait;
    v = new Video(mediaDisplayObjectTrait.mediaWidth,mediaDisplayObjectTrait.mediaHeight);
    loadable.netStream.checkPolicyFile = true;
    v.attachNetStream(loadable.netStream);
    The new Video part is a must because when using ( the only working http - vod setup ) the BitmapData of the DisplayObject defaults to 320x240 even though the mediaWidth and mediaHeight properties are set fine and the video itself has much higher resolution. I must note at this point its far weird and worths another post.
    Seems like the player simply doesn't know anything about where and how to obtain any kind of policy information from the stream.
    I think this issue must be resolved once and for all, it's simply not acceptable to have this poor documentation floating around an essential feature without any professional help involved.

    You don't need crossdomain policy files, you need to do the following;
    1)      Edit the Application.xml file in the host folder, within install directory/conf/... , edit the client tag, adding the attribute override=”yes”
    <Client override=”yes”>
    In a default install of Flash Media Server, the Client class is set to prevent overriding values in the application folder. This was why the settings we were trying were not holding.
    We do not need to alter anything else of the conf Application.xml
    2)      Add the client/access nodes to the root Application.xml within the content folder  ( we have already done this as far as I am aware ).
    <Application>
      <Client>
       <Access>
        <VideoSampleAccess enabled="true">/</VideoSampleAccess>
        <AudioSampleAccess enabled="true">/</AudioSampleAccess>
       </Access>
      </Client>
    </Application>
    3)      Restart the Media Server by using the administration console. This will enable the client>access values to be overridden to true.

  • How do I solve 'error compiling movie. unknown error'?

    how do I solve 'error compiling movie. unknown error' when trying to export? I think a file is damaged or conflicting but how do I know which one?
    Also, how did this happen in the first place and how can I avoid it in the future?
    Thank you very much!!

    BSHF
    The answers are in the details which are lacking in your report.
    What version of Premiere Elements are you using and on what computer operating system is it running?
    Please check out the Adobe troubleshooting documents for this issue
    Error "Error compiling movie" during render or export
    Troubleshoot damaged projects | Adobe Premiere Elements
    After you review those documents and determine if either suggested troubleshooting scheme will work for you,
    then we can discuss the immediate and future actions.
    Looking forward to your follow up. Depending on your reply, next posts may require of you details
    a. project settings
    b. properties of your source media
    c. edits and inspection of Timeline content with the Timeline expanded with the -+ slider above the Timeline.
    More later.
    ATR

  • SecurityError: Error #2123: Security sandbox violation: BitmapData.draw: cannot access

    When we try to print the Google Map API for Flash component, it is throwing the Security Sandbox Violation
          SecurityError: Error #2123: Security sandbox violation: BitmapData.draw: http://ps6143:8080/aa/XYZ/Main.swf/[[DYNAMIC]]/1 cannot access  http://mt1.google.com/vt/lyrs=m@171000000&hl=en&src=api&x=1&y=1&z=1&s=Gali&flc=x3t. No policy files granted access.
    at flash.display::BitmapData/draw()
    To avoid this error we tried to use the alternate API provided by library. But that also causing cross domain issue as it loading some 3d library internally which is not able to access our application.
    SecurityError: Error #2121: Security sandbox violation: BitmapData.draw: http://maps.googleapis.com/mapfiles/lib/map_1_20_10_3d.swf cannot access http://ps6143.persistent.co.in:8080/dv/SiteOptimizer/SiteOptimizer.swf/%5b%5bDYNAMIC%5d%5d /1http://ps6143:8080/aa/XYZ/Main.swf/[[DYNAMIC]]/1. This may be worked around by calling Security.allowDomain.
    at flash.display::BitmapData/draw()
    Please help us in resolving this issue.
    Thanks & Regrds,
    Ravi Darji

    There is no redirect... Charles is a web proxy so it will look completely legitimate to the browser.
    According to the help, it's getting the access request from the SWF itself and not the crossdomain.xml file:
    In the case of a source object other than a loaded bitmap, the source object and (in the case of a Sprite or MovieClip object) all of its child objects must come from the same domain as the object calling the draw() method, or they must be in a SWF file that is accessible to the caller by having called the Security.allowDomain()method.
    http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9 b90204-7d1b.html#WS5b3ccc516d4fbf351e63e3d118a9b90204-7c4a
    So the default state accessing a SWF on a different domain is protected, unless that SWF allows some or all domains to access it via the Security.allowDomain() method.

  • TS1424 how do i solve error (-50) that stops me from connecting to i-tunes?

    how do i solve error (-50) that stops me from connecting to i-tunes?

    Maybe this will help:
    iTunes Store- "Error (-50)" when downloading purchased content
    iTunes for Mac reports error -50 when trying to authorize iTunes Store purchases

  • HT1414 how do i solve error 1015 when restoring?

    how do i solve error 1015 when restoring ios using itunes?

    You find an answer somewhere else or buy a new phone.
    You can not get help here for a jailbroken phone.

  • How can I solve error 1004?

    How can I solve error 1004?

    Did you try this for deleting photos that I posted in your thread ? Photos taken with the iPad, copied onto it via the camera connection kit, or saved from emails/websites etc can be deleted directly on the iPad - either via the trashcan icon in the top right corner if viewing the photo in full screen, or via the icon of the box with the arrow coming out of it in thumbnail view. Photos that were synced from your computer are deleted by moving/removing/de-selecting them from where they were synced from and then re-syncing.
    For '1004' then there are various 'solutions' mentioned from this post onwards which might work for you : https://discussions.apple.com/message/15652754#15652754 - different things appear to have worked for different people.

Maybe you are looking for