Autorouter bus cryptic error......again

I'm trying to autoroute a databus, I created an bus group with the 8 data lines, it crashed......keep getting error
"failed to route a main segment"
Yeah thanks for that useless message.....no idea how to fix it.
So i figure, I'll create a net group, now it routes one bus set to one IC and many other main segment errors.
How hard is it for the autorouter to work correctly? I've followed the help file exactly......do I need to consult my local witch doctor?
I've attached a picture for all to admire the failure.
Any ideas how to FIX IT?
Message Edited by kittmaster on 11-17-2007 05:58 PM
Message Edited by kittmaster on 11-17-2007 05:58 PM
Signature: Looking for a footprint, component, model? Might be here > http://ni.kittmaster.com
Attachments:
ScreenShot6000014.png ‏354 KB
ScreenShot6000015.png ‏351 KB

I figured out what it was, its a huge oversight on UB part.
When you create the net group with a bus group, it give a SUBSET of options for the group that is outside the parameters of the main net list values......in other works when it routes the bus and you have 10 mil traces but 20 mil for the main pcb, if the two values are not equal then it chokes on it!!
UB should be providing warnings or just plain old use the pcb board net list values instead of a subset.....so its real screwed up, i found this out accidently.....boy it needs a major overhaul....my patience are wearing thin.
Signature: Looking for a footprint, component, model? Might be here > http://ni.kittmaster.com

Similar Messages

  • I need a recommended way of recovering from Bus Off errors

    I have write problems when a UUT is instructed to reset. When the UUT in the reset state I get Error Passive warnings and Bus Off errors after attempting to write extended CAN messages using the Frame API.
    In brief the test goes like this,
    1. I send extended message 0x500 with 8 data bytes containing information to tell the UUT to go into reset.
    2. I wait 400ms hopeing that the UUT get's at least 1 of the 3 possible messages. It always does and does a reset.
    3. I then MUST send message 0x500 with updated data telling the UUT to come out of reset.
    Problem is the write fails with a Bus Off error (can't remember the error code as I am typing this at home). I can get this to work in a brute force kind of way by repeating these steps below several times in a loop,
    1. reopen the network object
    2. reopen all perodic tx objects,
    3. do a ncAction NC_OP_RESET on the network object,
    4. do a ncAction NC_OP_RESET on all periodic tx objects,
    5. do a ncAction NC_OP_START on the network object,
    6. do a ncAction NC_OP_START on all the periodic tx objects,
    (no warnings or errors so far from these calls allthough occasionally ends up with an exception and NI-CAN internal driver errors. I'm probably abusing the CAN standard and API with all the rapid opening and closing of all these handles and blindly ignoring errors.)
    7. then do a ncWrite for all periodic tx objects (we usually get Error Passive warnings here, if the write is repeated it frequently gets a Bus Off error).
    When the UUT (by chance in all honesty) gets the 0x500 message and comes out of reset, CAN operations are fine, but the problem lies when the UUT is in reset, I can't send the updated 0x500 message to tell it to come out of reset. I get randomly Error Passive errors and Bus Off errors.
    Found out today this is what the UUT is doing when in reset (written in PDL),
    while not received 0x500 with data indicating to come out of reset
       possibly repower most of the UUT circuitry (I can't remember)
       reset Bosch CANBUS controller circuitry on ASIC (takes 2us I'm told)
       do some unit reset processing, takes up to 100ms
    wend
    (yes, it resets the CANBUS controller roughly every 100ms!)
    I need a sensible way of recovering from a Bus Off error and retry sending that 0x500 message again.
    Any thoughts, comments, solutions?
    Regards.

    Hi Flump,
    The idea here is that many CAN devices will "sleep" after some predetermined period of inactivity (not receiving a frame). In such cases, the device usually wakes up after seeing activity on the bus, where the amount of time it takes to go from the "sleep" state to an "active" state will inevitably vary from device to device. Well, suppose the controller on a CAN network sends a frame to a device which is "sleeping," and the device takes, for arguments sake, 10 seconds to "wake up" and become active again. By definition in the CAN standard, frames which are not acknowledged will be retransmitted. Also in the CAN standard is the requirement that a device or controller implement transmit and receive "error counters" in order that an "errant" device or controller can be "silenced" if it continues to generate errors. There are 3 basic error states, the last (worst) of which is the Bus Off Error State, which occurs when the error counter exceeds 255. Herein lies the problem; if a device takes a long time to wake up, then a controller will send, and subsequently resend, the frame while it attempts to communicate with the "sleeping" device. Since the controller's transmit error counter will increase by 8 for each frame which is sent and NOT acknowledged, and it will continue sending frames until acknowledged, the controller can actually reach a Bus Off Error state before the device fully "wakes up." This is usually undesirable, and can be prevented.
    For more information about the CAN standard, see Appendix B of the NI-CAN Hardware and Software Manual linked in the Related Links section below.
    The solution may be to send a single wake-up frame (just one time), then delay to allow the device to "wake-up," and then continue normal communication. It is important to realize that when a device "sleeps," it actually relies on the fact that a CAN controller will send frames multiple times. That is, the first frame received when a device is "sleeping" is NOT processed. The sudden voltage change on the bus caused by a frame transmission is sensed by a CAN device and will cause it to resume active operating conditions, but the frame which initiates the wakeup cannot be processed because the hardware was previously asleep (some of it literally not powered). Thus, if we have a mechanism for sending a single "wake-up" frame, and then delay until all devices (or at least the one we intend to communicate with) wake up, we can resume normal communications while knowing deterministically that subsequent commands should/will be processed by the device to which we wish to communicate.
    In the NI-CAN API, the way to transmit a single frame - one time only - is by setting the Single Shot Transmit attribute to 1 (using the set attribute function: in LabVIEW use the ncSetAttr.vi for the Frame API and CAN Set Property.vi for the Channel API). For Frame API users, the Network Configuration object (programmed explicitly) can be used, where of course we must stop and start the task (using ncAction.vi) around the attribute setting. The sequence of events would generally be: Network Config (should have happened anyway at some point), Network Open, Stop, Set Attribute, Start, Write "wakeup frame," proceed with the program after sufficient delay. Please note that the required delay may be very small; the "10 second" wake-up time suggested for a device above is much much longer than a normal device's "wake-up period". Of course, the baud rate used on a given network will factor into how many frames can be sent by a controller in a given period, and therefore how fast a corresponding error counter will increment as a result of unacknowledged frames.
    Attached is an example, which will write a single "wake-up" frame using the technique described above, where the write will take place when a "Wake-Up" button is clicked.
    Is this what you are looking for?
    AdamB
    Message Edited by AdamB on 12-12-2006 04:47 AM
    Applications Engineering Team Leader | National Instruments | UK & Ireland
    Attachments:
    SendSingleWakeUpFrame.vi ‏73 KB

  • Why is it when I go to open a file in Photoshop cc I get a "Could not complete your request because of a program error".  I have uninstalled and re-installed software,  It works for a short time then I get that error again when i go to open a file.  Thank

    @Why is it when I go to open a file in Photoshop cc I get a "Could not complete your request because of a program error".  I have uninstalled and re-installed software,  It works for a short time then I get that error again when i go to open a file.  Thank you!

    Without proper system information and other details like what files you work with  nobody can tell you much. From corrupted prefs to issues with your PS swap file to actual problems with the fiel storage this could be anything.
    Mylenium

  • The cryptic error - element cannot be found in a collection ?

    I have encountered this error in the script task a few times. The causes are - Variable is present in code,  but not added to task list OR, you try to create a DataColumn with the wrong column name, OR the variable in the task list has been deleted.
    When you make such mistakes, you get the cryptic error - 
    Error: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. 
    ---> Microsoft.SqlServer.Dts.Runtime.DtsRuntimeException: The element cannot be found in a collection. This error happens when you try to retrieve an element from a collection on a container during execution of the package and the element is not there.
     ---> System.Runtime.InteropServices.COMException (0xC0010009): The element cannot be found in a collection. This error happens when you try to retrieve an element from a collection on a container during execution of the package and the element is not
    there.
    How do I guess the EXACT source of the problem from this cryptic error message ?
    I am sure that I am a beginner compared to the developers who made SSIS. But, what amazes me is that they could not even show which element was missing ? As a result, the developer has to look at all the variables in his code and see if they are in the list.
    Is this error so cryptic in even SSIS 2012 ? This should not have been too hard for the highly paid programmers to figure out.

    The thing is the variables are stored as an array or to be precise a collection so the variable name is the key and as you might have noticed in other programming languages that the values are not displayed in the error or the stack trace so according to
    the base engine the variable name is just a string value and nothing more so it will throw the error 
    "The element cannot be found in a collection"
    instead of showing which which variable.
    Surender Singh Bhadauria
    My Blog

  • I am loading 0material_attr, getting error again and again

    Hi Guru's
    I am loading 0material_attr, getting error again and again as mentioned below:
    Error message from the source system
    Diagnosis
    An error occurred in the source system.
    System Response
    Caller 09 contains an error message.
    Further analysis:
    The error occurred in Service API .
    Refer to the error message.
    Procedure
    How you remove the error depends on the error message.
    Note
    If the source system is a Client Workstation, then it is possible that the file that you wanted to load was being edited at the time of the data request. Make sure that the file is in the specified directory, that it is not being processed at the moment, and restart the request.
    please anybody help me in this regard.

    Hi Manna,
    goto the path Environment -> Transact. RFC -> Source System as mentioned in the error. It will ask for source system ID & password. Enter & login. check if anything is struck over there. If so, execute it manually or press F6.
    You can also check SM58 trans for tRFC in BW system. If it is in Red, execute it manually.
    You can also refer the below thread:
    Missing data packages for PSA Table (BI 7.0 2004s)
    Hope it helps & resolves your issue!
    Regards,
    Pavan
    Edited by: PavanRaj_S on Jan 17, 2011 5:05 PM

  • Interal Muxer Error (Again)

    So I'm trying to build a rather large DVD and I'm getting the dreaded Internal Muxer Error. I've read through the other threads asking for help with this problem and turned up nil so far. Hopefully someone can help me ASAP as I'm fast approaching a deadline.
    The backstory...I had 23 DVDs that were submitted for a film festival. My job is to create one DVD melt that can serve as a screener for the judges. I used Cinematize 2.0 to extract the .m2v and .aif files for what was to go on the screener. I converted the .aifs to .ac3 with Compressor. Each is about 10 minutes or less. The total size of all the files is 8.69 GB when viewing info in Finder.
    When added to DVDSP the total disc size actually says 9.5 GB. I have 2 tracks, with each having about half the clips, so 14 clips and 11 chapters in track 1 and 12 clips/12 chapters in Track 2. I have two menus that link to each of the chapters. Two VTS folders each with a menu and the track it links to.
    I know I can't fit the reported 9.5 on a dual layer disc (i have the proper media and drive) but I wanted to create a build of it and then use DVD2oneX2 to shrink it down so it would fit on a Dual Layer DVD+R. Since my build keeps cancelling at about 14% I haven't even gotten this far. I tried eliminating all the chapter markers and that didn't help. Have dumped the PAR folders, nada. Fix invalid markers on build is checked in Prefs. Assets on external firewire, have built to both external and interal with same results. Here is the log:
    Starting DVD Build AXE_SCREENER...
    Compiler Initializing...
    Precompiling Project AXE_SCREENER
    Compiling VMG Information...
    Created 7 PGCs in VTSM1
    Created 6 PGCs in VTSM2
    Created 8 PGCs in VMG.
    2 Menu(s) will be created...
    Compiling Menu PGCs...
    Compiling Menu#1 (Menu 1)...
    Writing VIDEO_TS.VOB
    Compiling Menu PGCs...
    Compiling Menu#2 (Menu 2)...
    2 VTSs and 2 Titles will be created...
    Compiling VTS#1 (Track 1)...
    Muxing VTS011.VOB
    Internal Muxer Error
    Build cancelled
    Please help! Thanks in advance!

    I've begun the process of eliminating assets to find a potentially corrupt one. So far I think I've localized it. It cancels on the 4th chapter, which is the 5th clip in the timeline. After that everything builds okay, so I know there are no problems in my second VTS.
    What's the best approach to fix my problematic asset? Hopefully after I do that there won't be other corrupt assets further down the timeline that I find out about. I guess I could add all the other ones in there and see if it builds okay, then I would know if it was completely isolated to that asset. Will try that now and hope it works! I'll be up all night, so if anyone is around, please chime in, thanks!
    EDIT: I put my other assets in, minus the 4th one which I think to be corrupt, and it gave me the error again. Now I think that perhaps its not that asset, but anything beyond that certain point on the DVD. What kind of problem might I be having in a specific point on the Track? I know I read earlier something about faulty GOP structure/boundaries and an easy way to fix them. FWIW, the point in the timeline that the build can't seem to get past is around 00:30:48:07. I know frames are irrelevant in DVD spec, but the more info the better I guess.
    EDIT #2: Ugh, I just tried making the track ~equal to the length of the failed build, but only using the assets that were in the timeline that built successfully (AKA known to not be corrupt). It cancelled. This gives credence to the idea that its that particular point in the timeline causing the issue and maybe not the assets afterall. Hopefully I've narrowed it enough for someone to swoop in with a fix. hopefully.

  • I tried to compile the SDL port, but i got an Undefined sym error again..

    I tried to compile the SDL port, but i got an Undefined sym
    error again, like in an other project yestarday.. Maybe the problem
    is not with alchemy but me? Any Tips?

    You just use FlashCS4?The first thing you need to check
    quote:
    Posted By: joesteele (Member)
    Alchemy is a technology preview and its features are not
    supported in the FlexBuilder or Flash authoring environments yet.
    This issue looks like it is caused by interaction between the Flash
    CS4 compilers optimization pass and Alchemy-specific bytecodes.
    Checking the "Export SWC" option skips this optimization pass and
    avoids the problem. Be aware that this issue impacts other tools
    which can generate SWCs containing Alchemy-specific bytecodes (e.g.
    Haxe).
    Describe the problem in more detail, you can copy and paste the
    error message directly as it is.

  • HP ENVYX2 - SD Bus inetrnal error

    Hi,
    My HP envy tablet, after upgrading to Windows 8.1 gets hang up frequently with the message SD BUS Internal error.
    It is a nightmare to use the tablet for  internet transactions
    I tried the hot patch from Microsoft. still same. Called HP support, they r even not aware of the problem.
    Can anybody help me
    thanks

    HI vet274:
    Thank you for your post. I will do my best to assist you!
    I understand that after updating to Windows 8.1 you are getting a SD BUS Internal error. This usually is caused by a driver.  This is a link to a third party(batcmd.com) site that has a work around   click here. Here a link to "Downloading or Updating Software and Drivers for HP Computers" click here. If this has not helped would you please provide the exact model of Envy x 2 you have."How Do I Find My Model Number or Product Number?"  click here. When you open Device Manager do you see any bangs on the hardware?  If no, would you open System devices and then look for your buses. Right click on the bus and choose properties and look for the vendor ID and post that information. Once I have that info I can check for an updated driver for you.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • HT1212 I do the same that is instructed in "If you have never synced your device with iTunes ".Everything works fine and itunes start restoring it and updating my ipad.But after 5 mints , same error again appears on itune screen.What should i do ? Somebod

    I do the same that is instructed in "If you have never synced your device with iTunes ".Everything works fine and itunes start restoring it and updating my ipad.But after 5 mints , same error again appears on itune screen.And also ipad goes into same disabled postion.What should i do ? Somebody help please.

    See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...
    Some users have reported as many as 8 or 9 attempts were necessary before success.
    Be sure to Follow ALL the Steps...
    But... if the Device has been Modified... this will Not necessarily work.

  • Bus/io errors after resume from suspend to ram

    Something very strange happened today. When I woke my computer out of suspend today, the BIOS made a bad beep sound (once, high pitched, the error kind of), but booted anyways.
    After starting up, I tried starting programs like sonata, gnome-mplayer, but both failed with either an "io error" or "bus error". Strangly, I also tested "df" an it worked.
    That happened the first time, but I'm worried it's gonna happen again, because I have NO idea what could have failed.
    pm-suspend log looks fine
    Initial commandline parameters:
    Sa 27. Mär 02:30:54 CET 2010: Running hooks for suspend.
    /usr/lib/pm-utils/sleep.d/00auto-quirk suspend suspend: Adding quirks from HAL: --quirk-dpms-on --quirk-dpms-suspend --quirk-vbe-post --quirk-vbemode-restore --quirk-vbestate-restore --quirk-vga-mode-3
    success.
    /usr/lib/pm-utils/sleep.d/00logging suspend suspend: Linux segfault 2.6.32-ARCH #1 SMP PREEMPT Mon Mar 15 20:44:03 CET 2010 x86_64 AMD Phenom(tm) II X4 940 Processor AuthenticAMD GNU/Linux
    Module                  Size  Used by
    it87                   18948  0
    hwmon_vid               2756  1 it87
    ipv6                  283335  30
    nfs                   295530  0
    lockd                  65788  1 nfs
    fscache                39679  1 nfs
    nfs_acl                 2335  1 nfs
    auth_rpcgss            40448  1 nfs
    sunrpc                186318  5 nfs,lockd,nfs_acl,auth_rpcgss
    nvidia               9515743  48
    cryptd                  6076  0
    aes_x86_64              7420  1
    aes_generic            26178  1 aes_x86_64
    fuse                   58757  2
    joydev                  9800  0
    usbhid                 38471  0
    hid                    75813  1 usbhid
    arc4                    1354  2
    ecb                     1953  2
    snd_seq_dummy           1439  0
    snd_seq_oss            29023  0
    snd_seq_midi_event      5316  1 snd_seq_oss
    snd_seq                50558  5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
    snd_seq_device          5181  3 snd_seq_dummy,snd_seq_oss,snd_seq
    snd_pcm_oss            39011  0
    snd_mixer_oss          17299  1 snd_pcm_oss
    nouveau               428060  0
    ttm                    46450  1 nouveau
    drm_kms_helper         23817  1 nouveau
    drm                   159774  3 nouveau,ttm,drm_kms_helper
    i2c_algo_bit            4935  1 nouveau
    snd_ctxfi              90523  1
    ath5k                 125370  0
    ohci_hcd               21485  0
    snd_pcm                70222  2 snd_pcm_oss,snd_ctxfi
    mac80211              166738  1 ath5k
    ath                     8400  1 ath5k
    snd_timer              18799  2 snd_seq,snd_pcm
    cfg80211              122783  3 ath5k,mac80211,ath
    rfkill                 15228  1 cfg80211
    edac_core              34056  0
    snd                    57408  10 snd_seq_oss,snd_seq,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_ctxfi,snd_pcm,snd_timer
    soundcore               6095  1 snd
    snd_page_alloc          7033  2 snd_ctxfi,snd_pcm
    edac_mce_amd            6785  0
    led_class               2577  1 ath5k
    firewire_ohci          23601  0
    firewire_core          43019  1 firewire_ohci
    crc_itu_t               1273  1 firewire_core
    ppdev                   5910  0
    i2c_piix4               8680  0
    ehci_hcd               35082  0
    usbcore               140517  4 usbhid,ohci_hcd,ehci_hcd
    i2c_core               18137  6 nvidia,nouveau,drm_kms_helper,drm,i2c_algo_bit,i2c_piix4
    r8169                  36214  0
    mii                     3738  1 r8169
    parport_pc             31260  1
    button                  4714  1 nouveau
    thermal                11834  0
    evdev                   8825  10
    sg                     25275  0
    lp                      8684  0
    parport                29923  3 ppdev,parport_pc,lp
    pcspkr                  1795  0
    cpufreq_ondemand        8101  0
    powernow_k8            11886  0
    freq_table              2331  2 cpufreq_ondemand,powernow_k8
    processor              30310  1 powernow_k8
    rtc_cmos                8904  0
    rtc_core               14631  1 rtc_cmos
    rtc_lib                 1810  1 rtc_core
    ext3                  125021  2
    jbd                    46334  1 ext3
    mbcache                 5466  1 ext3
    sr_mod                 15043  0
    cdrom                  36354  1 sr_mod
    sd_mod                 26313  5
    pata_acpi               3288  0
    ata_generic             3111  0
    ahci                   34929  4
    pata_atiixp             3633  0
    floppy                 55998  0
    libata                152308  4 pata_acpi,ata_generic,ahci,pata_atiixp
    scsi_mod               92676  4 sg,sr_mod,sd_mod,libata
                 total       used       free     shared    buffers     cached
    Mem:       2056776    1645468     411308          0     590048     414652
    -/+ buffers/cache:     640768    1416008
    Swap:       522072       5776     516296
    success.
    /usr/lib/pm-utils/sleep.d/00powersave suspend suspend: success.
    /usr/lib/pm-utils/sleep.d/01grub suspend suspend: not applicable.
    /usr/lib/pm-utils/sleep.d/11netcfg suspend suspend: :: default down    [BUSY]    [DONE]
    success.
    /usr/lib/pm-utils/sleep.d/49bluetooth suspend suspend: not applicable.
    /usr/lib/pm-utils/sleep.d/55NetworkManager suspend suspend: success.
    /usr/lib/pm-utils/sleep.d/75modules suspend suspend: not applicable.
    /usr/lib/pm-utils/sleep.d/90clock suspend suspend: not applicable.
    /usr/lib/pm-utils/sleep.d/94cpufreq suspend suspend: success.
    /usr/lib/pm-utils/sleep.d/95led suspend suspend: not applicable.
    /usr/lib/pm-utils/sleep.d/98smart-kernel-video suspend suspend: success.
    /usr/lib/pm-utils/sleep.d/99video suspend suspend: kernel.acpi_video_flags = 0
    success.
    Sa 27. Mär 02:30:56 CET 2010: performing suspend
    Any other useful log files to check out?
    I just put the system to sleep and woke it up again, no problem. I only notice that yesterday it took way longer than usual to go into sleep mode. Except for funky graphic patterns, all worked flawlessy now.
    What could cause bus and io errors after wakeup?
    Last edited by Sadface (2010-03-27 10:55:35)

    Yes, im using systemd. I tried also downgrading xf86-video-intel to a version from some weeks ago, with no result.
    PS: no difference between systemclt suspend or pm-suspend from comand line.ùù
    PS2: I tried fluxbox session and there was no flickering, so it had to be something kde-session related, and I found it: it was the image pile xscreensaver, just switching to another one solved my problem.
    Thanks for your interest, wonderwoofy!
    Update: nothing solved, it was just temporarly by case... same issue as before...
    Last edited by steff (2012-11-09 21:04:39)

  • Automator Workflow Fails with Cryptic Error Message

    I'm updating an Automator workflow for OS X Lion that I initally developed and used, without issue, in OS X Tiger. The workflow asks for a name, creates a folder for the name, takes a digital image with a Nikon D50 connected to the computer, and saves the image to the new folder. This aspect of the workflow works fine.
    I then have a prompt asking if we should take another. If the user says "yes," the script should take another image and save it to the folder. This is where I run into an issue. When I attempt to add another "Take a Picture Action" into the workflow, I get the cryptic (at least to me) error message in the attached screenshot.
    Here's the text:
    "Cannot update for observer <AMWorkflow 0x400458ac0> for the key path "parameters.name" from <TakePicture 0x403e3b0a0>, most likely because the value for the key "parameters" has changed without an appropriate KVO notification being sent. Check the KVO-compliance of the TakePicture class."
    The language of this error would seem to indicate a bug. Any thoughts on a fix or the means to report to Apple?

    The subject of this post is a bit misleading. The workflow wasn't failing while I was running it, but rather when I was editing it and trying to include another 'Take a Picture' action in the same workflow.
    The workaround I found was to use a 'Loop' action on the 'Take a Picture' action. It's a bit more elegant and doesn't require multiple 'Take a Picture' actions in the same workflow.
    Nonetheless, what does this error message mean?

  • So, I rented a movie on iTunes and downloaded, and then when I went to click on it, it said iTunes server not available, so I reset my laptop, and it was there but when I clicked on it it said the same error again, the movie disappeared. What do I do?

    I need help! I payed for this movie, and I don't know why it said can not connect to iTunes server, because this is not my first time watching a rented iTunes movie, and I usually do not need internet, or the need to connect to iTunes store, and the fact that the movie diappeared upsets me.. and it is nowhere in my iTunes library.  So, what happened, I clicked on the movie, it said cannot connect to iTunes sever, so exited out, and reset my computer, when it reloaded, I clicked on it again, and the same error message appeared, and then the movie disappeared.

    Hi runner_girl7585,
    Thanks for using Apple Support Communities.  If you weren't ever able to watch your rental movie, you can report this to the iTunes Store:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/ht1933
    Cheers,
    - Ari

  • HT1386 Help iphone won't connect - "device timed out" error AGAIN & AGAIN

    I recently updated my phone to IOS 7.02 and now when I try to connect to itunes I get a "device timed out" error.  Thinking it must just be my itunes out of date, I updated it too.  Again and again the " device timed out" error still happens.  What an utter mistake to have loaded the new IOS.  I have scoured the help files, I have looked at hundreds of discussion threads - nothing.  The only thing I find is many many people seem to have this issue and no one can get it solved.  obviously Apple doesnt give a crap if you are forking out every 6 months.

    Hello,
    I would run through the troubleshooting steps in the following document - which one you choose depends on the operating system you're running. You've already done some of the early steps such as updating iTunes, but there are a couple of other steps you can try, such as verifying Apple Mobile Device Support is installed:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    or
    iOS: Device not recognized in iTunes for Mac OS X
    http://support.apple.com/kb/TS1591
    Welcome to Apple Support Communities!
    All the best,
    Delgadoh

  • Cloning error again part 3

    Hi Hussein,
    I thought I mastered cloning :( but here again I'm cloning for the Nth time and still encountered new error.
    I am running :
    perl adcfgclone.pl dbTier
    But i got this error :
    Log file located at /u02/oradev/DEV/db/tech_st/10.2.0/appsutil/log/DEV_orafin/ApplyDBTier_09012003.log
      -     15% completed       RC-50004: Fatal: Error occurred in ApplyDatabase:
    RC-50014: Fatal: Execution of AutoConfig was failed
    ERROR while running Apply...
    Tue Sep  1 20:06:43 2009
    ERROR: Failed to execute /u02/oradev/DEV/db/tech_st/10.2.0/appsutil/clone/bin/adclone.plThe ApplyDBTier_09012003.log contains :
    The environment settings are as follows ...
           ORACLE_HOME : /u02/oradev/DEV/db/tech_st/10.2.0
            ORACLE_SID : DEV
              TWO_TASK :
                  PATH : /u02/oradev/DEV/db/tech_st/10.2.0/perl/bin:/u02/oradev/DEV/db/tech_st/10.2.0/bin:/usr/bin:/usr/sbin:/u02/oradev/DEV/db/tech_st/10.2.0/appsutil/jre/bin:/usr/ccs/bin:/bin:/usr/bin/X11:/usr/local/bin:/u02/oradev/DEV/db/tech_st/10.2.0/appsutil/clone/bin/../jre/bin:/u02/oradev/DEV/db/tech_st/10.2.0/appsutil/clone/bin/../jre/bin:/u02/oradev/DEV/db/tech_st/10.2.0/perl/bin:/u02/oradev/DEV/db/tech_st/10.2.0/bin:/usr/bin:/usr/sbin:/u02/oradev/DEV/db/tech_st/10.2.0/appsutil/jre/bin:/usr/ccs/bin:/bin:/usr/bin/X11:/usr/local/bin:/u02/oradev/DEV/db/tech_st/10.2.0/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/home/oradev/bin:.:.
          Library Path : /u02/oradev/DEV/db/tech_st/10.2.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/u02/oradev/DEV/db/tech_st/10.2.0/lib:/usr/dt/lib:/u02/oradev/DEV/db/tech_st/10.2.0/ctx/lib
    SQLPLUS Executable : /u02/oradev/DEV/db/tech_st/10.2.0/bin/sqlplus
    SQL*Plus: Release 10.2.0.3.0 - Production on Tue Sep 1 20:06:43 2009
    Copyright (c) 1982, 2006, Oracle.  All Rights Reserved.
    Enter value for 1: Enter value for 2: Enter value for 3: ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux Error: 2: No such file or directory
    adcrobj.sh exiting with status 1
    ERRORCODE = 1 ERRORCODE_END
    .end std out.
    .end err out.
    AutoConfig Services Phase
    Running Service Process 2 of 2 for AppsUtil
    Executing script in InstantiateFile:
    /u02/oradev/DEV/db/tech_st/10.2.0/perl/bin/perl -I /u02/oradev/DEV/db/tech_st/10.2.0/perl/lib/5.8.3 -I /u02/oradev/DEV/db/tech_st/10.2.0/perl/lib/site_perl/5.8.3 -I /u02/oradev/DEV/db/tech_st/10.2.0/appsutil/perl /u02/oradev/DEV/db/tech_st/10.2.0/appsutil/install/DEV_orafin/txkConfigDbOcm.pl
    script returned:
    Checking if OCM is already configured in: /u02/oradev/DEV/db/tech_st/10.2.0
    OCM is not yet configured in: /u02/oradev/DEV/db/tech_st/10.2.0
    Configuring OCM on the Database Tier....
    Testing database connection...
    Unable to connect to the database. OCM cannot be configured.
    ERRORCODE = 0 ERRORCODE_END
    .end std out.
    .end err out.
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution.  Errors are grouped by directory and phase.
    The report format is:
          <filename>  <phase>  <return code where appropriate>
      [PROFILE PHASE]
      AutoConfig could not successfully execute the following scripts:
        Directory: /u02/oradev/DEV/db/tech_st/10.2.0/appsutil/install/DEV_orafin
          afdbprf.sh              INSTE8_PRF         1
      [APPLY PHASE]
      AutoConfig could not successfully execute the following scripts:
        Directory: /u02/oradev/DEV/db/tech_st/10.2.0/appsutil/install/DEV_orafin
          adcrobj.sh              INSTE8_APPLY       1
    AutoConfig is exiting with status 2
    RC-50014: Fatal: Execution of AutoConfig was failed
    Raised by oracle.apps.ad.clone.ApplyDatabasePlease help .....Thanks

    ohhh again ...I check the log...and I guess I entered DEV.
    The following values will be used to create the context file
      s_isWeb  =  YES
      s_db_util_filedir  =  /usr/tmp2
      s_dbhome4  =  /u02/oradev/DEV/db/apps_st/data
      s_dbhome3  =  /u02/oradev/DEV/db/apps_st/data
      s_dbhost  =  orafin
      s_db_oh  =  /u02/oradev/DEV/db/tech_st/10.2.0
      s_dbhome2  =  /u02/oradev/DEV/db/apps_st/data
      s_dbhome1  =  /u02/oradev/DEV/db/apps_st/data
      s_dbgroup  =  dba
      s_dbGlnam  =  DEV
      s_dbdomain  =  phil.com.ph
      s_dbSid  =  DEV
      s_dbuser  =  oradev
      s_isForms  =  YES
      s_database_type  =
      s_temp  =  /u02/oradev/DEV/db/tech_st/10.2.0/appsutil/temp
      s_db_ons_localport  =  6300
      s_hostname  =  orafin
      s_dbSidLower  =  dev
      s_cmanport  =  1521
      s_dbCluster  =  false
      s_domainname  =  phil.com.ph
      s_isAdmin  =  YES
      s_isConc  =  YES
      s_contextfile  =  /u02/oradev/DEV/db/tech_st/10.2.0/appsutil/DEV_orafin.xml
      s_dbport  =  1521
      s_contextname  =  DEV_orafin
      s_db_ons_remoteport  =  6400
      s_clonestage  =  /u02/oradev/DEV/db/tech_st/10.2.0/appsutil/clone
      s_base  =  /u02/oradev/DEV
    ****************************************************

  • Source file error again

    I am getting really fad up with not being able to do simple things with this prog...... all I want is a file to go into encore ......if I go to dynamic link to encore it gets so far then tell me encoding failed...... now I'm getting this error message again .
    Any help will be great
    Thanks
    Mike
    - Source File: C:\DOCUME~1\MIKERA~1\LOCALS~1\Temp\estelle show prempro4_3.prproj
    - Output File: D:\estelles show 2009\second half.m2v
    - Preset Used: PAL High Quality
    - Video:
    - Audio:
    - Bitrate:
    - Encoding Time: 04:00:28
    21/06/2009 13:49:25 : Encoding Failed
    Could not read from the source. Please check if it has moved or been deleted.

    Mike,
    its strange really as I have 2 time lines in PremPro I have already exported the first timeline to encore and its burnt off and plays ok .......Now I go to export the second timeline it plays up.
    That might indicate that there is a problem with the second Sequence/Timeline.
    Tell us all about your Project, with details paid to the Assets, where they came from, the format/CODEC, etc. The more detail provided, the more likely it will be that someone can find the problem.
    As a "test," try things the "old fashioned way," by doing an Export from your problem Sequence as elemental streams, i.e. a non-muxed stream pair of one Video-only file, and one Audio-only file. In En, Import the Video-only file as a Timeline and the Audio-only file as an Asset. From the Project Panel, drag the Audio-only file to the appropriate Timeline. Establish the proper navigation with Links, and test Burn a DVD RW, or BD RE.
    Let us know how that goes.
    Good luck,
    Hunt

Maybe you are looking for