Error message AE5 in cable box?

 Cable went out on oll three tv's, there's a message on a black screen that says 'if you want to watch Verizon Fios, press menu, otherwise turn off TV.', but when we press 'menu' on the verizon remotes, this appears on the cable box where the channel selectionhad been: AE5. Can anyone tell me what this means?
Thanks

I'm seeing the same thing.  While watching TV, picture and sound died and all boxes showed AE5, came back briefly after several minutes, then went back to AE5.  After 10 minutes or so, I tried unplugging the power cord, then re-plugging.  The box went through its diags, then came up with a display of "----" with picture and sound that appeared to be channel 2.  I then tried hitting the channel up button and the box turned off.  I hit the power button and it comes back on with display "----" with no picture or sound.
I tried the same process with the DVR box (power cycle, etc.).  When I hit the power button now, it just shows a logo on the screen with the message "Starting Up... One Moment Please."  This message remains many, many moments later.
So Verizon, can you tell us what's going on here?

Similar Messages

  • I have an iPod nano v4 or 5 and when I connect it to my Hyundai Santa Fe I get an iPod loading error message.  The cable came with the car when I purchased it and the dealer was able to get it to work with his newer ipod.  Please advise.

    I have an iPod Nano v4 or 5 and when I connect it to my Hyundai Santa Fe I get an iPod Loading error message.  The cable works with the dealer's iPod which is a newer model.  The cable came with the car when I purchased it.  Please advise.  Thanks.

    Hi Bander Bunny!
    I have a couple of articles that should be able to help you troubleshoot this issue a little further. You may want to try uninstalling and reinstalling iTunes first. This has to be done in a specific manner, and this article can help you do that:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    http://support.apple.com/kb/ht1923
    Another option is that you may want to try syncing your iPod nano manually. Here's is an article that pertains to manually managing the content of your iPod nano:
    Managing content manually on iPhone, iPad, and iPod
    http://support.apple.com/kb/ht1535
    It's also possible that this issue resides with your iPod nano. Here is a website that will help you troubleshoot the iPod nano:
    Apple - Support - iPod Troubleshooting Assistants
    http://www.apple.com/support/ipod/five_rs/
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • Error Message in a dialog box

    Hi,
    I have defined a error message in a raise application error type. Is there a way can we change this error type to message box becouse after entering data I lose data what is been entered on page.
    becouse of this error type. Please suggest me how to change
    IF wwv_flow.g_f04(vRow) IS NULL THEN
    RAISE_APPLICATION_ERROR(-20000, 'Plan Start Date is null, Cannot Insert Null');
    END IF;
    Thanks
    Sudhir

    Hi Sudhir,
    not sure ti work, but try with:
    begin
    htp.script('alert(''My message'');');
    end;

  • No display of error message log in dialog box

    Dear MM Experts,
    During enter incoming invoice (MIRO), when we click simulate after entering all necessary data, all error & warning messages are displayed in a dialog box if there is red traffic light. In our case despite red traffic light error messages are not displayed as shown in below screen shot. Only warning messages are displayed & document canu2019t be posted. Please let me know if anyone has encountered such behavior & knows the solution. We just want to see the error messages in dialog boxes so that necessary data can be entered and document can be posted.
    Additional information: 1. No GR needs to be done, 2. GR based IV is unchecked in PO, 3. No validation is active for the company code,
    Thanks & regards,
    Avinash

    Hi,
    Thanks for your response.
    Our problem is not to post a particular invoice doument, the main problem is that error log is not displayed in MIRO. For example if balance is not zero then this error should be displayed in error log dialog box, which is not happening due to which we are not able to post any invoice document as error is not known to the user. Please let me know if any suggestions.
    Additional information: We have deactivated all validations & BADis. We also tried to compare with other systems where error log is displayed properly however our ABAP consultant could not find any difference. Any Input on how to compare is also welcome.
    Thanks & best regards,
    Avinash

  • Macbook freezes with Error Message in a Black Box and asks for reboot.

    Now here is new problem (i dont know if specifically macbook related or something to do with Mac software). I have faced this thrice today.....
    Suddenly my Macbook freezes and in the center of the screen I get a black transparent box (quite big) with error message written in few languages. It simply asks me to hold down the power button for sometime to reboot the Macbook. I have found the Macbook freezes completely, no working keys, trackpad, etc all disabled. And after I push the power button the macbook shutsdown.
    On rebooting there is no problem at all, i just loose all the work that was open...
    Can someone tell if there is some remedy.. or what needs to be done.... Also is this hardware related or software...
    I must mention my macbook is also have RSD problems...

    What you are seeing is the message that results from what is known as a kernel panic: a serious error usually caused by some sort of hardware malfunction. The path to debug this is to make sure you unplug any external devices you have attached (if any) and see if the problem persists. If you still have the problem, it could mean a bad video card, logic board, RAM, RAM slot, etc. If you have RSD, then you already know you have a hardware problem, and this is just more evidence of it. Time to go to an Apple Certified Repair shop and have them look at it.
    Good luck!
    MacBook,G5 iMac,15PB,G4 iMac, G4 QS, AX, 3G iPod, Shffl, nano,shffl   Mac OS X (10.4.7)  

  • Validation error message in a confirmation box.

    To provide any validation error messages i am using the throw OAException, but that displays at the top of the page where many times users dont even notice it. i want to be able to instead display the error msg in a confirmation box that has just the OK button to make sure user has seen the message......
    how do i do that ? (i do not want to use the DialogPage becos that takes me to another page and also is not for raising exceptions).
    thank you.

    Hi,
    You have to use OADailogue region to achieve this. Please follow below code units to create a dialogue page and display an error message.
    OADialogPage dialogPage = new OADialogPage(OAException.WARNING, message, null, "", "");
    String yes = pageContext.getMessage("AK", "FWK_TBX_T_YES", null);
    String no = pageContext.getMessage("AK", "FWK_TBX_T_NO", null);
    dialogPage.setOkButtonItemName("DeleteYesButton");
    dialogPage.setNoButtonItemName("DeleteNoButton");
    dialogPage.setOkButtonToPost(true);
    dialogPage.setNoButtonToPost(true);
    dialogPage.setRetainAMValue(true);
    dialogPage.setPostToCallingPage(true);
    dialogPage.setOkButtonLabel(yes);
    dialogPage.setNoButtonLabel(no);
    java.util.Hashtable formParams = new java.util.Hashtable(1);
    formParams.put("foo","value");
    dialogPage.setFormParameters(formParams);
    pageContext.redirectToDialogPage(dialogPage);
    Thanks
    Bharat

  • After updating to ios 7.0.6 i keep getting an error message saying "this cable or accessory is not certified and will not work reliably with this iphone" every two minutes and its annoying

    What is up with this error message after updating saying our cables are not reliable?

    Thank you for this suggestion, but the message continues to display every couple of minutes. (e.g. "This cable or accessory is not certified and may not work reliably with this iPhone.)
    Not only is it annoying and concerning...this is draining my battery, as the iPhone keeps waking up to display the message over and over. Like "MartinLegodi" above, I also have no cable or accessory plugged in and only use Apple cable and products when I do.
    It's a disconcerting mystery.

  • Displaying error message in a dilog box.

    Hello experts.
    I'm trying to display an error message with the following statements. It displays the error message but not the variable pa_taxno.
    I want my goes back to the parameter field after displaying the error message. User shouldn't pass through the next field until the condition satisfied.
    Thanks in advance.
    if x = 1.
      "do some thing.
    else
      MESSAGE e003(zbc400) WITH pa_taxno
    endif

    Can you post your entire code here?
    Is this on a selection screen?
    If you want a pop up display, you will have to call one of the POPUPWITH* function modules, you can find the details in SE37.
    If this is on selection screen, I am assuming that you are implementing AT SELECTION SCREEN event.
    Regards,
    Ravi
    Note - Please mark all the helpful answers

  • Getting Error message ""This set top box does not match the account settings"

    Just ordered a new wireless receiver for the bedroom. Installed it and now getting the following error "This set top box does not match the account settings". Service was suppose to be enabled on Monday the 4th, but I recieved the hardware early and turned it on. I've since rebooted and unplugged and tried everything to no avail. Any thoughts on how I might get this to work? Regards,  Rick

    your wireless receiver is misconfigured (dirty) and need to be scrubbed clean.
    A tech (service visit) or tier 2 rep (phone or chat) can do this. The receiver needs to be unplugged, on the bottom of receiver is a GUI (long number) that will be needed to identify receiver, when instructed plug just the receiver in that gave number for, when that one is connected.
    Your choice 4 hour appointment window, or time on phone , or chat.
    If these have not been activated yet.... When screen comes up, depress OK on receiver, depress button on WAP, when the screen at receiver says try again, Depress OK button (remote or on stb) another screen for update, depress OK give about 10 minutes to load, reboot when checking depress menu to verify recordings, if no recordings menu not finished booting.
    Set aspect ratio MENU, OPTIONS, etc.
    should take about 20 minutes per receiver.

  • Browser will not start. error message in pop up box entitled XUL RUNNER platform version 2.0 is not copatible with min = 2.0.1 or max = 2.0.1

    ''locking as a duplicate - https://support.mozilla.com/en-US/questions/834467''
    the details are in the question

    Do a clean (re-)install:
    * Download a fresh Firefox copy and save the file to the desktop.
    * Firefox 4.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Firefox 3.6.x: http://www.mozilla.com/en-US/firefox/all-older.html
    * Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    * Do not remove personal data if you uninstall the current version.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere (not in the Firefox program folder) and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.

  • Error Message from Brother MFC Printer

    I have a Brother MFC-5460CN attached to my Mac (B&W G3 with G4/600 upgrade, 10.4.11) via USB. When I start up my Mac or when I plug in the printer or turn it on, I get the following error message:
    Failed to connect to the device.
    - Check the I/F cable connection between the device and your computer.
    - Please turn OFF the device once, and then turn ON the device again.
    Then try again.
    [MTW005]
    The error message has an "OK" box, but you can't click on it. All I can do is move it off to the corner of the desktop.
    The same thing happens on my daughter's eMac with a different Brother MFC, also running 10.4.11, and also happens if I boot my B&W into 10.3.9.
    Anybody know what this means and how I can get rid of it?

    Hi Bill,
    Look for a "TwainBridge" driver in Activity Monitor, then kill it/force quit it. That will get rid of that Window.
    Maybe try reinstalling it...
    http://www.brother.com/E-ftp/macosxdownloadscn.htm
    I've heard that just reinstalling was needed, so I'd try that first, if it doesn't work you can delete it.

  • I have tried uninstalling and reinstalling Firefox several times. Every time I try to open Firefox I get an error message saying "Close Firefox"," A copy of Firefox is already open. Only one copy of Firefox can be open at a time."

    I uninstall Firefox, then reinstall Firefox, try to open Firefox, and get an error message in a popup box saying,
    "Close Firefox"
    "A copy of Firefox is already open. Only one copy of Firefox can be open at a time."

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    *https://support.mozilla.com/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Tried to open Firefox and got error message: Platform version 1.9.2.15 is not compatible with minVersion 1.9.2.16, maxVersion 1.9.2.16

    Have been using Firefox several years without problem. Tried to open it today and got this error message in a XULRunner box. Tried rebooting and running in safe mode with same results. There may have been an upgrade but I don't remember.

    # Uninstall Firefox, but do not select the option to "Remove my Firefox personal data" - that option will delete your bookmarks, passwords and other user data
    # Check if the Firefox installation directory still exists, if it does delete it.The default location on 32 bit Windows is C:\Program Files\Mozilla Firefox\
    # Re-install Firefox, if you want Firefox 3.6 you can get it from http://www.mozilla.com/en-US/firefox/all-older.html

  • Adobe Flash Player 10 Error Message

    About four days ago, I started getting this error message in a dialog box. It appears even with nothing open that would even require a need for Flash. I removed Adobe Flash Player 10 and rebooted, then added it back. The problem continues however.
    Win-XP/SP3 fully patched and Malware free.
    "A script in this movie is causing Adobe Flash Player 10 to run slowly. If it continues to run, your computer may become unresponsive. Do you want to abort the script?  Yes / No.
    Checking either option only gets rid of the pop-up for a few minutes.
    Regards:
    BruceIB

    I have just recently resolved my Flash Player issue.
    My suggestion to all who have troubles with Slowing down players or error messages (like I was getting) is very similar to what has been suggested by Meln long ago.For windows machines- I don't know  mac fix. but this might work.
    1. remove/uninstall flash player from your system. ALL BROWSERS
    2. reboot your system
    3. goto the adobe site for flash player and have it check that you in fact DO NOT have flash player installed.
    4. download the latest version of flash player and let it IMMEDIATELY do the install.
    5. reboot
    6. check how flash player works. If it is buggy and slow or kicking up errrors/messages go back to step 1. repeat this cycle as many times as necessary.
    some notes:
    Be careful when doing the install -DO NOT DOWNLOAD THE FLASH DEBUGGING VERSION- it will kick up errors galore.
    Make certain you do noting else during the install and remove processes. You are problem solving -not being productive, so  just wait it out patiently.
    I know some will say, why would i remove, download and install multiple times - once should either work or not work.
    OH how I wish this were true for funky software issues. There is some glitchy thing going on and where exactly it happens is anyones guess, or it would have been fixed. Without rhyme or reason one time though it will just work. when it does do a system restore point and put GOOD FLASH PLAYER as the note. after you do this fix you will know why you want a quick way back to this point.- you don't want to do it again.
    i know this sounds stupid but after trying for months to "fix" my issue this is what worked on multiple PCs i had that had the issue(s) slowing down and messages.

  • PSE 8 constant error message

    Just got a brand new iMac and finally able to install PSE 8. I am constantly getting this error message: "This is not a valid Portable Document File (PDF) document. It cannot be opened."
    I get it when I first launch PSE and haven't even opened anything yet, and when I do open a file, I get this message constantly all the while I am editing away at it. It doesn't prevent me opening the file or using PSE as normal, but this message is constantly popping up and is very annoying.

    Hello doovy69,
    Thanks for using Apple Support Communities.
    To troubleshoot the error message that the cable or accessory may not be compatible, please follow the steps outlined below.
    If you see an alert
    When you plug in your device, you might see one of these alerts:
    “This cable or accessory is not certified and may not work reliably with this iPhone.”
    “This accessory is not supported by this device.”
    If you see one of these alerts, unplug your device try and these steps:
    Look at the connector at the bottom of your device and make sure it’s free of debris, then reconnect the USB cable.
    If you still see an alert, try a different USB cable or charger.
    Get more help
    If your device still doesn't charge or you still see an alert after trying the steps above, contact Apple Support. 
    If you can’t charge your iPhone, iPad, or iPod touch - Apple Support
    Take care,
    Alex H.

Maybe you are looking for