One last try on my  pioneer dvr( it only spits discs out)

My piuoneer dvr is only spitting out discs , it says in system profiler
PIONEER DVD-RW DVR-108:
Firmware Revision: 1.10
Interconnect: ATAPI
Burn Support: Yes (Vendor Supported)
Profile Path: VendorSupport.drprofile
Cache: 2000 KB
Reads DVD: Yes
CD-Write: -R, -RW
DVD-Write: -R, -RW, +R, +RW, +R DL
Burn Underrun Protection CD: Yes
Burn Underrun Protection DVD: Yes
Write Strategies: CD-TAO, CD-SAO, CD-Raw, DVD-DAO
Media: No
Question is isnt it apple supported and how can i Fix this as a last try before I order a new one. Mark

it accepts discs keeps them for a minute and than spits them out. I tried the slap. I reset pram and nvram both in pram reset on start up and resetting nvram in open firmware on start up . just tried the sleep thing and after a minute of being awake it spits disc out. If i open optical drive any thing dangerous about that?
p.s. here are stats after resetting vnram( i dont think it worked)
PIONEER DVD-RW DVR-108:
Firmware Revision: 1.10
Interconnect: ATAPI
Burn Support: Yes (Vendor Supported)
Profile Path: VendorSupport.drprofile
Cache: 2000 KB
Reads DVD: Yes
CD-Write: -R, -RW
DVD-Write: -R, -RW, +R, +RW, +R DL
Burn Underrun Protection CD: Yes
Burn Underrun Protection DVD: Yes
Write Strategies: CD-TAO, CD-SAO, CD-Raw, DVD-DAO
Media: No
Any other suggestions is there a way to unflash nvram? as in through the terminal window?
g4 Sawtooth 1ghz   Mac OS X (10.4.6)  

Similar Messages

  • One  last try... emulating HTTP POST with applet

    I am trying emulate the HTTP POST method for file uploading using an applet. More specifically, I am trying to upload raw data to a PHP script by making the PHP script think it is receiving a file when in reality all it is receiving is a series of headers, some other necessary info, the data, and a closer. The PHP is then supposed to save the data into a file.
    I have looked at eight or ten threads, explanations, and sample code in this and other forums that deal with this exact same thing, some even specific to PHP, read various documents on and explanations of HTTP headers and so forth, corrected every code error and possible code error I could find, and tried a gazillion variations, but still can't get the PHP script to think that it is receiving a file.
    As far as I can tell, communication with the server is being established, the server is receiving info and sending responses back, the PHP script is defrinitely being activated to do its thing, but the PHP is not recognizing anything that looks like a file or even a file name to it.
    The following information may be relevant:
    The PHP works perfectly with real files uploaded from real HTML pages.
    The server uses Apache.
    The server has no Java support (shouldn't matter, but otherwise I would be using servlets at that end instead of PHP).
    the applet is in a signed jar, and is trying to store information in the same directory that it came from.
    I am using the Firefox browser (shouldn't matter?) .
    I am hoping that someone knowegeable about this can look at the code below and point our any errors. I've also included the response I get from the server, and the PHP code. If there are no obvious errors, can you think of anything else tthat might be going wrong besides the code itsef?
    Please don't suggest I try alternate means of doing this or grab some working code from somewhere. I may very well wind up doing that, but I'm a stubborn bastard and want to find out what the #^%R$($ is going wrong here!!!
    Here is the latest incarnation of the applet code: All it does is immediately try to send some text to the PHP script in such a way that the script thinks it is uploading text within a file. it also displays the responses it gets from the server, including what the PHP script sends back.
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.net.*;
    public class test1 extends Applet{
    DataOutputStream osToServer;
    DataInputStream isFromServer;
    HttpURLConnection uc;
    String content = "This is a test upload";
    public void init(){
    try
    URL url = new URL( "http://www.mywebpage.com/handleapplet.php" );
    uc = (HttpURLConnection)url.openConnection();
    uc.setRequestMethod("POST");
    uc.setDoOutput(true);
    uc.setDoInput(true);
    uc.setUseCaches(false);
    uc.setAllowUserInteraction(false);
    uc.setRequestProperty("Connection", "Keep-Alive");
    //uc.setRequestProperty("HTTP_REFERER", "http://applet.getcodebase");
    uc.setRequestProperty("Content-Type","multipart/form-data; boundary=7d1234cf4353");
    uc.setRequestProperty( "Content-length", ( Integer.toString( content.length() ) ) );
    osToServer = new DataOutputStream(uc.getOutputStream());
    isFromServer = new DataInputStream(uc.getInputStream());
    catch(IOException e)
    System.out.println ("Error etc. etc.");
    return;
    try{
    osToServer.writeBytes("------------------------7d1234cf4353\r\nContent-Disposition: form-data; name=\"testfile\"; filename=\"C:testfile.txt\"\r\nContent-Type: text/plain\r\n\r\n");
    osToServer.writeBytes(content);
    osToServer.writeBytes("\r\n------------------------7d1234cf4353--\r\n");
    osToServer.flush();
    osToServer.close();
    catch (Exception e) {
    System.out.println(e);
    System.out.println("did not sucessfully connect or write to server");
    System.exit(0);
    }//end catch
    try{
    String fieldName="",fieldValue="";
    for ( int i=0; i<15; i++ )
    fieldName = uc.getHeaderFieldKey(i);
    System.out.print (" " + fieldName +": ");
    fieldValue = uc.getHeaderField(fieldName);
    System.out.println (fieldValue);
    }catch(Exception e){
    System.out.println ("Didn't get any headers");
         try{        
    String sIn = isFromServer.readLine();
                        for ( int j=0; j<20; j++ )
                             if(sIn!=null)
    System.out.println(sIn);
                             sIn = isFromServer.readLine();
    isFromServer.close();
    }catch(Exception e){
              e.printStackTrace();
    }//end AudioUp.java
    Here's the response I get back from the server:
    null: HTTP/1.1 200 OK
    Date: Sun, 03 Apr 2005 18:40:04 GMT
    Server: Apache
    Connection: close
    Transfer-Encoding: chunked
    Content-Type: text/html
    null: HTTP/1.1 200 OK
    null: HTTP/1.1 200 OK
    null: HTTP/1.1 200 OK
    null: HTTP/1.1 200 OK
    null: HTTP/1.1 200 OK
    null: HTTP/1.1 200 OK
    null: HTTP/1.1 200 OK
    null: HTTP/1.1 200 OK
    null: HTTP/1.1 200 OK
    <html>
    <head>
    <title>Handling uploaded files from an applet, etc.</title>
    </head>
    <body>
    No file was uploaded.
    </body>
    </html>
    The <html> and the "No file uploaded" message is simply what the PHP script sends back when it does not detect any uploaded file.
    Here is the PHP code on the server:
    <html>
    <head>
    <title>Handling uploaded files from an applet, etc.</title>
    </head>
    <body>
    <?php
    if ($testfile)
    print "The temporary name of the test file is: $testfile<br />";
    $uplfile=$testfile_name;
    $uplfile=trim($uplfile);
    print "The filename is: $uplfile<br />";
    if ($uplfile)
    copy ($testfile, "$testfile_name");
    unlink ($testfile);
    }else{
    print "No file was uploaded.";
    ?>
    </body>
    </html>

    xyz's sample code didn't work - PHP doesn't like the getallheaders line at all. I'm going back to the manual now.
    I had another thought. When I first started using PHP, I had problems with ordinary text field uploads from web pages because somewhere in the process, extra blank lines or spurious carriage returns were being inserted into the strings. For example, if I had a place where people could enter their name, password, and brief message, and tried to store the incoming strings in an array, I'd wind up with some thing like:
    name
    password
    brief message
    instead of:
    name
    password
    brief message
    Which played havoc when trying to read out information by counting lines.
    Anyway, the problem was solved by using the trim($string) function on all incoming strings, which I now do as a matter of course. I never could figure out why it was happening though.
    Do you think something like that could be happening here?? I mean, if spurious blank lines or carriage returns were being inserted where they shouldn't be, could that be screwing things up in this way? HTTP seems to insist on having new lines and blank lines inserted in just the right places.

  • One Last Try

    Hello,
    Looking for an animation editor who can help me apply the correct settings to an animation FCP editing project (image size, FPS, etc) and then how to set the export so the image is not distorted on output and can be watched on 4:3 tv screens.
    It's a lot so even a little help would be appreciated.
    Thanks

    As chrisBG says... any more info would be helpful.
    However... let's assume you are using an animation app that lets you export as a QT movie.
    Build your animation in 720x480 space. Export via Quicktime to DV/NTSC full quality.
    IF you are using alpha channels you need to export via Quicktime Animation codec with Millions of Colors +... the + is the alpha channel.
    Also -- are you doing this in 30fsp? Make sure that matches your FCP settings.
    However... IF it is coming in a bit squished or something, load it into the Viewer... the window on the upper left and click the motion tab. Then under distort change the aspect ratio until it looks right.
    See if those few things don't help.
    Good luck,
    CaptM

  • My iPad says no service, and cannot connect to the server,cannot get mail .Sim card is locked and down to one last try.My wireless works for other pads and phones.

    IiPad says no service,and in mail says cannot connect to server.Wi Fi is working fine.

    You may not really be connected to your WiFi network.
    Your router may not have given your iPad a valid IP address. Go to Settings > Wifi > your network name and touch the ">" to the right to see the network details. If the IP address starts with 169 or is blank then your router didn't provide an IP address and you won't be able to access the Internet.
    Sometimes the fix can be as simple as restarting your router (remove power for 30 seconds and restart). Next, reset network settings on your iPad (Settings > General > Reset > Reset network settings) and then attempt to connect. In other cases it might be necessary to update the router's firmware with the latest from the manufacturer's support web pages.

  • Installing a Pioneer DVR-111D...

    Please bear with me as I have had no experience ever installing optical drives. But I am interested in upgrading my current stock combo drive to one of those spiffy new Pioneer DVR-111Ds that I keep hearing everyone talk about.
    However my intial question is, what happens to the front slide door if I install a new drive in my G5? I don't exactly know the technical hardware term for it, but the one that's mac hardware specific and opens before the actual drive bay door slides out. Does that door still operate just as normal with a new drive or do I have to manually open it and disable it?
    Lastly, whats up with all the flashing stuff I hear also? Flashing bios i presume? Which is another area in computers I have little experience in.
    Any info would be great. Thanks!

    Quite a bit about it here
    http://discussions.apple.com/thread.jspa?messageID=1900760#1900760
    and more if you enter "111D" in the search box at top right of the forum.
    The main point with keeping the silver optical drive gate operating smoothly is to remove the plastic bezel with "DVD", "CD", etc. on it from the front of the tray.
    Sometimes the 'stand-offs' can be tricky, but there is some help here
    http://www.info.apple.com/usen/cip/pdf/g5/073-0807.pdf
    Flashing is mentioned in the first link above, but shouldn't be necessary - esp. if you combo up to 10.4.7
    http://www.apple.com/support/downloads/macosxupdate1047comboppc.html
    Please post again if any of it isn't clear.

  • PIONEER DVR-105 problem only with one set of CDs

    My PIONEER DVR-105 works fine with most CDs, but when I bring NOVA Art Explosion CD set home from work, I can't get them to appear on my desktop. I've checked Pioneer website for firmwear upgrades & the last one is for Mac Classic.

    This sometimes just happens - a drive won't like a certain set of media. Happens to me with client-provided CDs/DVDs.. There's not much you can do but upgrade the drive to a newer unit.
    -Douggo

  • Help needed to track down Problem in tiger with Pioneer DVR-110D

    ok as i stated in another topic i own a Beige G3 AIO that is running OS 9.2.2 and OS X 10.4.8 and i have done allot to this system to get it to run faster and to run properly.
    part of this setup has a Pioneer DVR-110D it there and when i bought it i was running OS 9.2.2 only. at first i could not burn anything with it cause it wasn't supported and when i went to put the system to sleep it would freeze when i would wake it up it never did this before i installed the drive so i knew what was causing it.
    i turned off HDD sleep and the problem was fixed. but i didn't like the ideal of having the hdd running all the time when idle. me and a friend was talking about optical drive issues and he said he found this driver replacement for the apple cd/dvd driver called intech speed tool's 6.0 for OS 9.2.2 and that i should give it a try cause it fixed a few problems for him.
    i downloaded the demo of it and installed it and i turned on hdd sleep and put the system to sleep and woke it back up and the system was running great. so now the wake up freeze problem was cured. but still no burn support. so after a few weeks of posting on here about the problem some one came by and said he knew what the problem was and sent me a modded PioneerCDR authoring support extension. i installed it and rebooted and opened iTunes and iTunes showed Pioneer DVR-110D as the devise to burn to. so i tryed it and behold it burned a audio cd with no problems.
    later i bought a western digital SE 120gb hdd and installed it and partitioned it 3 times a 8gb first partition for OS X a second partition 10gb for OS 9.2.2 and the 3rd partition was the rest of the drives size for shared data and storage. the hdd worked great with no issues so it was time to try OS X on this system cause i was waiting to get a large HDD to do so.
    i figured that the Pioneer drive would not boot the OS X jaguar cd and is a known problem with non apple cd rom drives. so i took out the Pioneer and reinstalled the apple 24x stock cd rom drive. and the jag install cd booted without a hitch. Jag installed and was running so i updated to 10.2.8 and found out the internal screen kept going out and locking the system up. so i searched this forum for the onboard video blackout and came across the terminal work around to get the system to behave itself with having more than 192mb ram installed. i rebooted and all went fine afterward.
    i reinstalled the Pioneer drive and went to testing it all was fine everything mounted on the desktop that i put in the drive. but i lacked the ability to burn with the drive cause still the drive wasn't supported be the system so i searched the forum and came across the program called patchburn. i downloaded it and ran it and patched the driver to support iApps burning with this drive. so i put in a blank cd and went to burn in iTunes it burned flawlessly so i tryed a dvd-r with the finder it to burned flawlessly.
    o loved playing a game planeshift and then they stopped supporting 10.2.8 so i went to buy the tiger install cd's. i already knew the Beige G3 was not a supported version of Os X on this system and you had to use xpostfacto 4 to install tiger on this system. so i did what i had to do to install tiger on the system and selected use old NDRV and selected to install tiger. which installed some files to boot tiger and rebooted yet again the Pionner drive refused to boot the install cd's . i got mad and held down the command option power key's for about 10 seconds and let off. the tiger installer booted and got to where it started to copy the files to the hdd and stalled out and the drive spun down never to spin back up or show signs of life so i powered down the system and removed the pioneer drive and put the stock 24x cdrom in and installed tiger.
    after tiger was installed i shut down the system and installed the pioneer drive. and powered back on and it was in verbose mode showing what was going on one part showed that the Pioneer drive was detected but had no kernel dependencies and continued to boot. i went to repair the permitions when the onboard video went blank and the system locked up. i rembered that 10.2.8 did the same thing so i tried the 10.2.8 screen blackout fix in 10.4 and rebooted. the onboard video didnt come on but since i had a ATI Radeon 7000 i could work around in tiger to update to 10.4.7 at the time. i first repaired permitions and then ran software update and updated everything and rebooted. the onboard video came back on allong with the ATI Radeon 7000 which being used as boot video device and shown the gray apple logo with the spinning pin wheel at the bottom.
    so far tiger was running great so i put a disk in the drive and nothing it didn't mount anything so i ejected it with the button on front of the drive and tryed a dvd movie and got the same nothing as with the cd. so i rebooted with the dvd in the drive al behold tiger mounted the dvd but as soon as i would try to do anything with it the drive would stop and i would have to reboot the system to gain the drive back so i can repair permissions. and never tryed to use the drive again
    10.4.8 update came out i updated to it using software update and rebooted. the update went flawless so i thought to myself what if the pioneer drive worked now. so i put a cd in the drive and it mounted the disk. then i ejected it with amazement and put a dvd in and it to mounted. so i tryed to play the dvd and it played the dvd to the end of the movie. i took out the dvd and rebooted. i tryed to put the dvd back in but it didnt mount. which ****** me off as to why it was just working and now its not.
    i rebooted and the dvd mounted as soon as the desktop showed up so i tried to play it but this time it only played for about 10-13 minutes before the drive stopped spinning which made dvd player stop responding which made me have to force quit the dvd player and try to restart which gave me a kernel panic. so i forced restarted (got a forum to send to apple to report the KP so i did) and the dvd mounted once again as soon as the desktop showed so i ejected the dvd and put a audio cd in and it mounted and i played the hole cd. so i ejected that and put a blank cd in and treed to burn and it got to 30% and then the drive spun down and made the disk utility stop responding. so i forced quit disk utility and rebooted. once it rebooted nothing popped up so i pressed the eject button on the drive and the cd r came out.
    the OS X 10.4.8 update made the drive more stable but still wont burn anything. some times it will still not mount anything, some time it will not play anything, and still fails to copy files over to the hdd. so now im left to believe its a driver issue some where since this drive worked so flawlessly in jaguar and OS 9 but fails to work properly in tiger.
    i looked in the extensions in ASP in 10.4.8 and there is a few extensions showing errors. i made a list of them to show
    PatchedAppleNVRAM:
    Version: 3.0
    Last Modified: 8/9/05 6:07 PM
    Location: /System/Library/Extensions/PatchedAppleNVRAM.kext
    kext Version: 3.0
    Load Address: 0x4db000
    Valid: Yes
    Authentic: Yes
    Dependencies: Incomplete
    Dependency Errors:
    com.macsales.iokit.OpenOldWorldNVRAM: No valid version of this dependency can be found
    Integrity: Unknown
    OpenPMUNVRAMController:
    Version: 2.0
    Last Modified: 8/9/05 6:08 PM
    Location: /System/Library/Extensions/OpenPMUNVRAMController.kext
    kext Version: 2.0
    Load Address: 0x63a000
    Valid: Yes
    Authentic: Yes
    Dependencies: Incomplete
    Dependency Errors:
    com.macsales.iokit.OpenOldWorldNVRAM: No valid version of this dependency can be found
    Integrity: Unknown
    GossamerDeviceTreeUpdater:
    Version: 3.0
    Last Modified: 8/9/05 6:07 PM
    Location: /System/Library/Extensions/GossamerDeviceTreeUpdater.kext
    kext Version: 3.0
    Load Address: 0x63d000
    Valid: Yes
    Authentic: Yes
    Dependencies: Incomplete
    Dependency Errors:
    com.macsales.iokit.OpenPMUNVRAMController: No valid version of this dependency can be found
    Integrity: Unknown
    that is the list of extensions that are reporting some sort of errors. at first i was figuring it was a problem with the driver for the Pioneer drive but my friend brought over his digital audio G4 which was also running 10.4.8. and we decided to try the drive in his Mac to see if there was any problems. it mounted everything we threw in it. it played dvd's great and played audio cd's great, it copied files over to the hdd without fail. it even burned a flawless cd. ok now the ideal of the driver for the drive was thrown out the window. so it has to be something else causing the problem. either a driver for a part on the motherboard or what i have no clue.
    im just wondering what driver it would be causing a problem not allowing the Pioneer drive to work properly. cause its not the drive being bad cause it worked flawlessly in OS 9.2.2 and jaguar and in tiger in my friends digital audio G4
    im just wondering if anyone might know what could be done to fix this problem cause i know it can be fixed but i don't know where to begin or how. so i ask you how could i begin to fix this
    thank you all for baring with me and reading all this. i know i wrote allot but i had to explain what was going on before i could ask for help so you could better understand what was going on. i have already updated the firmware to the latest with no change the firmware use to be the old 1.11

    yea i have along time ago and also made a update to xlr8's drive database. cause i fixed the problems with the drive in OS 9.2.2 (AKA no burn support with the built in burning app or iTunes, now have full support for burning with the finder burn and iTunes thanks to a edited PioneerCDR authoring support extension that someone edited for me. found out that the Apple CD/DVD driver extension was at fault for the locking up on wake up with hdd sleep enabled that started when i installed the Pioneer drive. fixed with intech CD/DVD speedtools 6.0).
    When i did the first report on the drive database on xlr8yourmac i reported what problems i was having in OS 9.2.2 and i think i reported that i had no problems in jaguar, and was trying to obtain a driver or something to try to get it to work. but to no avail at first. after i fixed the problems i did a update report
    in jaguar the drive had no problems but no burn support. installed patchburn and the drive worked 100% in jag no problems what so ever. im thinking it has somthing to do with one or all of the extensions with errors but i can be wrong.
    i just wonder where ryan has been on the forums in OWC's site. cause i would like to submit my crash log panic log and the extensions with errors so he could help track down the problems to see if it cant be fixed. but ive tried emailing him but no replay's. and his last reply on the OWC forums was back in desember 2005 a few day's over a year
    i know it isnt the drive cause it worked flawlessly in tiger 10.4.8 on my friends Digital Audio but i know why it worked fine cause it has the proper files for the DA to work cause its a supported system. i would like to try to help to get xpostfacto to work better on the Beige G3 system
    in tiger if it is something to do with xpostfacto

  • Can't get Pioneer DVR-110D to work

    I just bought a Pioneer DVR-110D drive and installed it, but I can't get it to support burning. I tried PatchBurn 1 (I use OS 10.2.8) but to no avail. I searched this forum for posts on both PatchBurn and the drive, and I've been doing everything as detailed in the posts, but the system profiler still says burning isn't supported.
    It reads CDs fine, and DVDs show up on the desktop (I don't have DVD playing software, though). It even erased a CD-RW.
    In PatchBurn, there's 7 different Pioneer drivers listed, do I have to try replacing every one?

    "In PatchBurn, there's 7 different Pioneer drivers listed, do I have to try replacing every one?"
    In PatchBurn 1, try selecting the closest model number of Pioneer DVR drive from the list (if I remember, DVR-104). After it's unstalled, restart.
    If that didn't seem to work, try a PRAM reset.

  • Pioneer dvr-110d installed but not working properly

    hello,
    i'm new to the forum. i just purchased a pioneer dvr-110d for my my powermac g4 466mhz. it plays dvds correctly but the only thing that it doesnt do is load my osx 10.4 disc. i got the drive so i can install software without borrowing an external drive (i needed to reload my 10.4 because of other errors) so everytime i put the 10.4 disc in it reads it and says to restart but when that happens it restarts to a gray and sometimes blue screen. so the only way i get the disc back out is with restarting with the shift key held down and then i can force eject it. you guys are my last hope. it seems to working fine except with the startup disc. which is so strange to me.. and the system profiler recognizes it also

    Hi
    When you installed the drive, did you set the jumper block on the left rear of the drive to "Master"?
    Have you set Energy Saver to sleep NEVER & unchecked HDD sleep?
    Have you tried starting up w/ the "C" key?
    Have you tried updating the drive firmware? Search Discussions for DVR-110, there are many threads with links to updating on a Mac.
    Assuming you've also tried cleaning the install DVD, and updating firmware makes no difference, you should try booting from some other installer CD/DVD, to confirm that the drive is bootable; if it will not boot ANY installers, I would return it.
    EDIT: you may want to also try
    resetting PRAM & NVRAM, always a good idea when replacing hardware.

  • Tiger and pc version of the Pioneer DVR-110D problems

    ok here we go
    I have tried the Beige G3 part of this forum with no luck cause i use a Beige G3 AIO
    ok i have a Beige G3 AIO with a pc version of the pioneer DVR-110D running tiger 10.4.7 the drive will hardly work in tiger but will work flawlessly in 10.2 - 10.2.8, OS 9.x, windows 98, windows xp
    the only way this drive will work in tiger is if i reboot with a disk in the drive and then it will work. but it will some times decide to stop working after 20 minutes or until i take out the disk.
    some times it will stay working until i try to play dvd movies or try to burn with it then it will stop working and have to reboot with a disk in the drive in order to get it working again. if i don't reboot with a disk in the drive the drive will not work at all until i reboot with a disk in the drive.
    im not sure if tiger is using a wrong driver for the drive or what. i know the drive is not bad cause it works so good under OS 9 and OS X 10.2 - 10.2.8. i can burn i app's under OS 9.2.2 with a modded pioneercdr authoring extension, and i can burn under OS X 10.2 - 10.2.8 with patchburn. but tiger refuses to work with the drive.
    other than that tiger is running flawlessly on my Beige G3. the way it seems that its using a improper driver for the drive cause there is a apple branded version of the Pioneer DVR-110D with a modded firmware and a standard PC Pioneer DVR-110D with a pc firmware. if tiger is trying to use the drive as the apple version of the drive it can cause this cause the firmware is totally different from the standard pc version of the drive.
    is there any one that can shed some light on this. maybe a driver edit or something maybe firmware to the apple version so i can try to flash this pc version to the apple firmware. or something. this drive should work as is if it works so great under OS 9.x, OS X 10.2 - 10.2.8, windows 98, and windows xp.
    another problem i have is not being able to boot any OS X cd by normal means. i can get it to boot the 10.2 install cd by having the cd in the drive and hold the command option and power key's for about 5 seconds and some how the drive is tricked to boot and it does but it always fails to install cause the drive stop's working during the copy process.
    the drive will boot the tiget install cd (with help from xpostfacto) without doing the trick to get OS X 10.2 install cd to boot but will still fail during the copy process. i know the fix for this is to get ahold of the apple version firmware for the DVR-110D drive. that also might fix the problem that it has under tiger. but it weird since the drive works great under OS X 10.2 - 10.2.8
    sorry for making this a monster post but i would love to et this drive to work like it should under tiger like it does under the other OS's
    BTW tiger is running great on the old beast besides the pioneer drive problem. not once has tiger failed to boot, not once has tiger crashed, ive timed this system on its boot time into tiger (34 seconds from start chime to full working tiger)its kinda sad to have tiger working so great but has this problem with the pioneer drive

    i didnt say i used patchburn in tiger, only in jaguar did i use patchburn to gain burn support. altho i can try to use patchburn in tiger to see if it would help with the issue. AKA it seems like a driver issue to me
    on how it will mount disk's when i reboot with a disk in the drive but will only halfway work. but will not mount anything if i boot without a disk in the drive when i put a disk in . but ASP in the ATA tap will show the drive . i can select disk burning in ASP only when the drive is working in its halfway state to show info. if i try when its in its non working state is will lock ASP up and some times throw tiger into a kernel panic when i try to reboot . after all that if i leave the drive alone tiger is ok

  • Pioneer DVR-104 won't recognize/burn/eject disc. I am STUCK. Help?

    Hello.
    I bought an iMac G4 800mhz flat panel model with DVR-104 superdrive recently.
    It's was working perfectly until I tired to burn my 1st disc using Toast 7 (DVD-R). That's when things started messing up. I stuck the disc in and after "thinking" about it for a minute ejected it without any message -- it just spit it out.
    I repaired file permissions, restarted, tried another disc and now I can't get the disc out. When i push the eject button i get the eject icon on the screen but the disc doesn't come out.
    -Under Disc Burning in System Profiler it now says "No burning device was found. If you are using an external device please make sure that it is connected and powered properly".
    -Toast 7 says "no recorder found".
    -When I restart the computer I get the message "Disk Insertion - the disk you inserted was not readable by this computer". Until I tried to burn a disc the drive had been working perfectly and a lot.
    So to recap: There's a disc stuck in the Superdrive that my iMac doesn't think is there. Can I force eject?
    Any ideas??
    Thanks!!
    Oh BTW here's what is says under System Profiler about the Pioneer DVR-104:
    Model: PIONEER DVD-RW DVR-104
    Revision: A216
    Serial Number: BCDL160039WL
    Removable Media: No
    Detachable Drive: No
    BSD Name: disk1
    Protocol: ATAPI
    Unit Number: 1
    Socket Type: Internal
    OS9 Drivers: No
    S.M.A.R.T. status: Not Supported
    PowerMac FW800 (G4), iMac G4 800 SuperDrive   Mac OS X (10.4.6)  

    mrtotes thanks a lot for the suggestions! I didn't have to try the Target mode but I'll remember that one thanks.
    With blank 8X DVD-R still stuck in iMac I ran Onyx (with everything in the Automation area checked√) and went to bed.
    This morning I forgot it was in sleep mode & not turned off so I hit the power button to turn it on. It woke up, but the screen was frozen. I turned it off using the power button.
    When I turned it back on the DVD in the drive started making that "clunk clunk" noise again trying to load (it had not been making any noises at all while stuck) while the computer was booting up. I held down the eject key & the mouse until it finished booting up. THE DISC CAME OUT. Whew!
    I don't know if it was Onyx or me pushing the power button when it was asleep or that mouse/eject maneuver but it worked.
    I guess I'll need to stick to 4X DVD-R for now if I can find any. Does anyone know where to get those now? I'm in Sacramento, CA.
    Also, I have some Memorex 52X blank CDs. Do I dare try one of those or what speed should I use?
    Thanks!!
    PowerMac FW800 (G4), iMac G4 800 SuperDrive   Mac OS X (10.4.6)  
    PowerMac FW800 (G4), iMac G4 800 SuperDrive   Mac OS X (10.4.6)  

  • ONE LAST HURRAH: Before saying Goodbye to my Beloved MSI Eclipse!!!

    I already posted this  article  in the motherboard thread but seems like this is the best place to post this
    ONE LAST HURRAH: Before saying Goodbye to my Beloved MSI Eclipse!!!
    Well it has been two months since I purchased this MSI Eclipse SLI board and while waiting for its bigger brother MSI Eclipse Plus, I would like to try out a new board from another manufacturer. Before I pass this board to its new owner, I decided to give it a little review to so that other people who will be upgrading to i7 platform will have some idea how good or how bad this board is.
    A few months ago and maybe until now, Eclipse is the flagship board of MSI in terms of i7 based motherboard. Its bigger brother MSI Eclipse Plus has already been sighted in some forums but no definite date yet on when it will be available in the market.
    The Box
    The size of the box was way bigger than my old P45 motherboards. It is actually almost 2x the size of the conventional ATX board box. 
    Upon opening the panel on the box, you will see a lot of information about the board! You will also see the added stuff from MSI like the Green Power Genie as well as the awesome Creative Xfi! Yes, a creative Xfi Extreme Audio PCIe sound card was included on the package.
    Upon opening the box, you will see a plastic container (I am assuming that this is anti-static) that contains the motherboard, DLED2, Green Power Genie and creative X-fi.
    There’s another box that contains a lot of stuff! MSI is as usual generous in giving their customers all the things the need to fully populate the board. This includes the  cables needed to populate all the sata and ide slots,  cross fire and SLI cable, additional USB bracket, ESATA bracket and the M connectors. All the manuals needed to setup the boards are also included.
    The Board and Layout:
    The board for me is pretty sexy!  It comes with a black PCB. The RAM slots and the other expansion slots are only blue and black in color which is a perfect combination for an intel based platform. The IOH and the ICH10R is actually covered by a copper heatsink with heatpipes connecting them. Well, personally I do not like this design since I do know that x58 generates a lot of heat. The VRMs also come with a copper heatsink but no heatpipe . As far as I understand from the box information, this is MSI’s split thermal design as well as protection from warping.
    MSI also provided 6 RAM slots and they come in blue and black sockets. Do yourself a favor by putting the ram in the black slots. I previously ran into problems of the system hanging in “ DDR ini “ and later found out from reading the manual and searching the web that the black slots should be populated first.
    The board came with 10 sata ports! 6 of them in 90 degrees are connected to the ICH10 and the 4 are actually by the jmicron chips attached to the board and also function as
    HW raid. Connect 2 HDD on sata 7 and 8 or sata 9 and 10, do some stuff in the BIOS and you are all set to run the system in raid 1 (mirror) or 0 (stripe). I have had no chance to test the raid 0 + 1 since I don’t have 4 identical drives.  It also comes with an IDE slot for your old parallel IDE HDD and/or ODD.
    The expansion slots come with 3 pci x16 slots, 2 pci and 2 pcie x1 which I believe is more than enough to suffice your daily needs. The bottom part of the board came with a power, reset and dled switch along with MSI’s OC jumper.
    The back panel is not that good looking. Well it’s the same back panel style of their P45 series board. It doesn’t matter anyway since it is at the back of the chassis and what concerns me the most is functionality. The board came with 8 usb ports at the back, 2  Gigabit lan, 2 esata ports, a 1394 connector, a cmos reset switch and the conventional PS/2 ports for mouse and keyboard.
    Bios and overclocking
    I  just captured the most important portion on the bios which is the Cell Menu. It is the overclocking tab on MSI’s BIOS
    Overclocking and Benchmarking Results
    Since I have not installed anything yet on my new board, I decided just to compare the stock and overclock result from this board.
    Below are the lists of components that I will be using
    Intel Core i7 920 2.66ghz  ( cooled by Thermalright HR 01 plus )
    MSI Eclipse SLI – Beta BIOS 1.45
    MSI 8800gtx (well a bit old but still reliable)
    Team Extreme ddr3 1600 @ 8-8-8-25 rated 1.65V
    Western digital Raptor 74gb 16MB cache
    I tried setting up this board one last time on my  DIY open system  using the components above. And Good thing that my ever energetic and reliable  assistant is always there to help … hahahaha
    SPI Stock and 4Ghz OC  Results
    Stock =  15.313s
    4Ghz = 10.405s
    PC Mark 05 Stock and 4 Ghz OC Result
    Stock = 9745
    4Ghz = 13136
    3DMark 05 Stock and  4Ghz OC results
    Stock = 13388
    4Ghz = 14289
    3DMark vantage Stock and 4Ghz OC Results
    Stock = 8160 ( 33530 on CPU score )
    4Ghz = 8315 ( 43567 CPU score )
    Aquamark Stock and Overclock
    Stock = 131812 ( 18685 CPU score )
    4Ghz =  179261 ( 23139 CPU score )
    I tried playing with bclock  since I have seen people in several forum saying that their boards( not specific to MSi eclipse ) / i7 proc cannot go above 200 or maybe just above 200 bclock. After doing some tweak I was able to get 215 bclock and the max I was able to get is 218,  All the test that had been done are just after vista installation. No tweaks done  on windows.
    SPI = 10.343 ( 19 x 215 )
    SPI = 10.030s (  19 x 218 )
    Wrap-up / Conclusion
    I really don’t want to let this board go but I don’t have extra budget to buy and try new boards from other manufacturer so that I can compare the result. So right now I am stuck with selling this just to buy another x58 board (of which I will try to post a mini review soon)
    I did encounter IOH temperature issue when I first bought this motherboard. IOH temperature is at 65C and this still goes up while running benchmarking tests. I made minor modifications on the board and as far as I know, it did not void the warranty. Below are the modifications that I have made:
    1.   Removed the violet thermal paste that MSI used and replaced it with Artic Silver 5.
    2.   Removed the plastic pushpin and replaced it with a bolt and plastic nut.
    3.   Added a 40mmfan that is just enough to take out the heat from the IOH
    Guess what, the temperature after these is just below 55C even under benchmarking (done during night time and I would expect that this will go to probably 60 degrees during daytime given the tropical climate in the Philippines).
    I was able to overclock my i920 at 3.6ghz without even adjusting anything on the voltages. Meaning they are at stock settings!  I managed to reach 4.0 ghz by simply adding 0.040v (around 1.29 Vcore only)
    Pros
    -   Easy to overclock board
    -   Supports both SLI and crossfire
    -   No issue on bigger after market cooling
    -   90 degrees placement of ICH10’s sata port
    -   Server grade VRM’s and Capacitors used
    -   Creative Xfi included
    Cons
    -   Only one SLI bridge included. It would have been better if a tri SLI connector was given by MSi.
    -   IOH temp an issue for my board.  Need to monitor and maybe try my modifications.
    -   Power/Reset/DLED Switches location will not be accessible if a 3rd video card is installed.
    Other thoughts
    -   It would have been better if the BIOS of the eclipse comes with nominal values on the Cell Menu. This is to serve as guide for the users if they are trying to alter the voltages.
    -   Maybe swap the ide and the sata 7 to 10 ports?  It is better looking if all 10 sata ports are on 90 degrees. It will also ensure that even if you use 2 or 3 video cards, it will not hit any of the sata 7-10 cables if you use them.

    I can see you got your use out of it.   I hope the new owner tortures it, too!

  • How do I configure a Pioneer DVR-XD10 external dvd writer to my macbook pro laptop?

    How do I configure a Pioneer DVR-XD10 external dvd writer to my macbook pro laptop?
    I read online that you could use an external dvd writer on a macbook pro when the internal dvd writer died.
    Please help?
    It shows power running through the external dvd writer when I plug in the two usb ends into the respective ports, but it doesn't recognize it when I try to write media to a DVD.
    Any help would be greatly appreciated.
    Thanks in advance!

    If you have not already done so, your chances will really improve if you....
    1) Connect the printer to the USB port on the AirPort Extreme
    2) Download and install Bonjour Print Services for Windows on the PC

  • I am on my last try for my password

    I am on the final try for my password on my laptop.  I don't understand what I am doing wrong.  I am putting in the password using the number keyboard on my laptop.  And now I am on my last try before it wipes everything off my phone.  And yes it is the correct password
    Can someone please help me

    There's no telling what happened. One thing for certain, I would create a backup before enabling the password on the phone. Better safe than sorry.
    Once you get back running, I suggest that you backup your phone, then setup your password. Make sure you can get into the phone from both the phone and your laptop. If you have any problems from the laptop, make sure you stop trying from the laptop and switch to the phone with plenty of attempts left. That way, you can get back into the phone and reset the failed count (automatic with a successful login). This should help you from going back to where you were.

  • Beige G3 AIO with Pioneer DVR-110D not booting OS X 10.2 retail install CD

    for some reason my Pioneer DVR-110D wont boot the 10.2 retail install cd's i have it will boot the OS 9.2.1 retail install cd's just fine. the only way i can boot the OS X install cd's is if i hold the command-control-power key's for 5 second's after the normal attempt to boot the cd normaly.
    but during the file copying during the install it stall's out. the only way i can install OS X is if i put the orignal 24x cd-rom drive and then it will boot normaly and install normaly.
    the same goes with trying to install tiger useing Xpostfacto4 but it will boot into the installer with no problem but durring the install the Pioneer will stall and will go no further during the copy prosses i can however install useing the orignal cd-rom drive
    but after i get tiger installed i cant mount any disk's with either the normal cd-rom or the pioneer DVR-110D and the same goes with my other AIO i have. I dont have the disk mounting problem in OS X 10.2 or 10.2.8.
    also i figured out why i was having a wake up freeze in OS 9.2.2 with the Pioneer DVR-110D there is a extention conflict happening some where with the apple cd/dvd driver extention. i disables the apple cd/dvd driver extention and rebooted amd put the system to sleep and it woke up fine but it wouldent mount any disk's cause of the extention being disabled so i rebooted and back to the wakeup freeze.
    the only way to get around the wakup freeze i was having in OS 9.2.2 is to open the energy saver window and set the hdd to never fall asleep and have the monitor the only thing that sleep's and let the system idle to sleep.
    sorry for the long post guy's/and gal's

    From what I've read, many beiges had problems booting the 10.2 installer. I didn't have any problems booting 10.2 installer with this drive and it installed perfectly fine. However, after it installed, I couldn't actually boot into the OS, I got as far as the gray screen and it stopped and wouldn't go any further. I could boot the 10.4.3 disc as well, but as you said, the installation always stalled at "installing base system" and would go no further. I installed it by pulling my HD and hooking it up in my dad's G4, then brought it back to my computer. That worked great and 10.4.3 ran wonderfully. I just last night upgraded to 10.4.4 and it is snappy as well, however, I still have the problem with the DVR-110D. My drive will not copy large files (over 5MB) from a disc to the HD. I can mount discs and read them, but after a bit of time, it stops working entirely and won't mount discs at all. I have not tried the beta version of xpostfacto, I thought I had that version until I checked it just now. Perhaps a trip to the site to download the beta is in order. Also, the drive works great under 9.2.2, just as yours does, so I know it is not a drive error and has to be something with the Beige G3 architecture and Tiger, something is not communicating correctly. I've posed the question previously (which wasn't answered yet) about whether or not an 80 wire ATA cable would make a difference? Perhaps the 66mhz bus speed is not sufficient to have info flow from the drive to the HD? I don't know and I'm getting frustrated because I know this is a good drive! Hope we can figure it out!
    Mark

Maybe you are looking for

  • My safari no longer works on my mac desktop

    Safari No longer wroeks.  At first it would open up but not open any websites, now it won't even open up. This is what the CrashReporter says SafariDAVClient_2014-01-26-125107_Sues-iMac.crash SafariDAVClient_2014-01-25-135110_Sues-iMac.crash Safari_2

  • I cant get Fourth Elephant (Insider for SQL Developer)

    hi,guys please, help me. I want to user insider for sql developer of fourth elephant. but I cant access http://fourthelephant.com/sqldeveloper/download/ who used it? thanks.

  • 2008 iMac + nVidia 8800gs + 10.5.3 - Any improvement with Aperture?

    Can anyone with the latest 24" iMac (either the 2.8 or the 3.06 model) give any indication of whether the latest OS X update has improved the performance of Aperture relative to the Radeon 2600HD? Given that barefeats has undertaken a number of tests

  • Is my connection being throttled?

    Hi Up until a few weeks ago no issues but now my irc downloads crawl during peak times and go back to normal after midgnight. I am on the unlimited bt infinity 2 package and have been on it for a while and never had a problem. Tried livechat but that

  • Videos played via internet are so slow and choppy, SLOW Firefox

    Was wondering if anyone knew for sure the reason why videos/movie trailers played thru either Safari or Firefox are extremely slow and choppy on my G5 imac or G4 iBook laptop. Not sure if the outdated processors cant handle the flash embedded videos