How to solve: Attempt to resume ApplicationContext ...

Hi,
I have a working application under jdev 11.1.1.1.0.
I upgraded to jdev 11.1.1.2.0.
Now I get the following error:
"Attempt to resume ApplicationContext when current context contains state"
Knowing that if i run it on the older version from jdev it works perfectly.
I am using the explorer template in my JSF Pages.
Any hints on how to solve this issue.
Regards
Emile BITAR

In fact , it's very strange, if i turn the power off and then on , and when i press the power button on the face of the computer, it's not booting it's just starting the initialisation sequence and then shut down immediatly when it reaches the Boot attempt ( always the same error) but i can"t restart it immediatly i have to cut the power and then replug it in order to start the computer...

Similar Messages

  • An error occured when attempting to change modules .. how to solve this ? Thanks

    Hi there,
    I installed Lightroom 5, then it asked it for some directory to create some catalogue. I changed was was given default to me to some other directory. It was a mistake.
    Then a message saying "An error occured when attempting to change modules" always popped out when I started Lightroom 5.
    In fact I uninstalled and reinstall Lightroom 5 again. Ang it gave me the same message. I am not sure why when I reinstall it, it no longer asked me the directory I wanted to create the catalogue but instead gave me the error message straight away...
    Any ideas on how to solve this is greatly appreciated as I desperately need to use this Lightroom 5 ...
    Thanks

    99jon wrote:
    Did you install from CC desktop or from an Adobe download link?
    When you click on the install button under the Apps tab within the Creative Cloud desktop app, no serial number is required.
    Hi 99Jon,
    I installed from CC desktop and you are correct. You are correct, when I install the CC, there is no serial number required or given to me.
    Let me explain again the sequence of my problem.
    1) I installed the CC desktop after I chose to pay monthly.
    2) The installation was perfectly fine, NO asking of serial number
    3) I install the Lightroom 5.7.1 without problem and NO asking of serial number too.
    4) I run Lightroom 5.7.1 for the first time and it asked me to select a folder for catalogue I didn't select the default directory that it suggested. And this caused problem because it then gives a message saying "An error occurred when attempting to change modules"
    5) so I delete the whole Lightroom 5.7.1 and reinstall from CC Apps.
    6) The problem still persists and I continue to have the "An error occurred when attempting to change modules" message
    7) So I deleted the Lightroom 5.7.1  and reinstall. Problem still persist.
    8) So, I did a software update as advised by the link you gave me (ie Solution 1). Interestingly, the update Version is 5.7.1 which I have.
    9) After the update installation, I no longer receive "An error occured when attempting to change modules" the message but instead tnow I receive message asking me for serial number. So much problem now ...
    Note:
    If you see this link, something is wrong bcos when you clicked the settings wheel, you'll see that Managed Application - Uninstall Unavailable"
    <a href="http://s32.photobucket.com/user/ryan_khoo/media/ScreenShotofAdobeCC_zpsa6c420e7.jpg.html" target="_blank"><img src="http://i32.photobucket.com/albums/d2/ryan_khoo/ScreenShotofAdobeCC_zpsa6c420e7.jpg" border="0" alt=" photo ScreenShotofAdobeCC_zpsa6c420e7.jpg"/></a>
    So now my problem has changed form one where the error message popped up to one which now asked me for serial number ...
    Any ideas ?
    Thanks

  • Note: Due to heavy load, the latest workflow operation has been queued. It will attempt to resume at a later time

    Dear all,
    sorry for opening another thread on this.
    I think I have a performance issue with workflows attached to document sets in SharePoint. And I say “I think” because people keep telling me that this is the way it just is.
    The user creates a new document set, which triggers a workflow in which the user has to confirm/review/approve a series of tasks. The time it takes from clicking the OK button on those task form to the workflow status moving to the next step is about 4 seconds.
    And visiting that status page within those 4 seconds brings up the infamous “Note: Due to heavy load, the latest workflow operation has been queued. It will attempt to resume at a later time.” message.
    Hitting Refresh in the browser after those 4 seconds will make the new workflow status appear and the red text go away.
    Is that normal? Is that the performance that everyone else is seeing as well?
    I struggle to see why simply moving a workflow from one task to another should take that on a machine that isn’t doing anything else at the time.
    (1)   
    I have a standalone (non-clustered) SharePoint box, 4 CPUs, 8 GB of memory, more than half of that available, acting as application server and wfe; only the database is on different box.
    (2)   
    The CPU only goes up to 18 or 19%, so CPU does not seem to be the bottleneck. Half the RAM is also still free.
    (3)   
    The workflow is designed with Nintex, and has about 9 flexi and review tasks – the last 2 of them in a loop iterating over typically 3 or 4 items.
    (4)   
    Looking at the logs it looks like the processing in Nintex only takes about 1 second – I don’t know where the other 3 seconds are going.
    (5)   
    There is nothing obvious in the logs.
    (6)   
    We’ve looked at all the “theoretical” improvements around throttling and batch sizes etc. – none of them appeared make any difference. And the workflow is so small that it looks like my tasks gets executed straight away. The problem appears
    to be that the execution takes too long(?) and therefore has not finished by the time the page get redrawn.
    (7)   
    I am running perfmon and I can e.g. see one(!) workflow being loaded into memory – as expected as I am the only user.
    (8)   
    I am seeing a total of 3(?) SQL queries being executed(?). I get the Bytes Sent/sec spiking at 25K, and Bytes received at 18K. But is this good or bad or a bottleneck?
    Where do I take it from here?
    I have been told that “[…] most customers have no issue with this as they are used to the way SP operates and it can be slow at times.” Is it really that bad?
    If it is worth watching more performance counters then I’d need to know what to compare them to.
    Is there something else I am missing?
    Thanks
    Martin

    Hi,
    Before considering an additional hardware try to change following configurations for workflow:
    Increase Throttle Size
    Increase Batch Size
    Time Out
    Workflow Timer Interval
    AutoCleanUpDays
    Increase Throttle Size
    The Workflow throttle setting controls how many Workflows can be processing at any one time on the entire server farm. By increasing the throttle it will allow the number of Workflows execution or can be initiated at a time.
    Use below PowerShell command to get the current Throttle Size:
    Get-SPFarmConfig | Select WorkflowPostponeThreshold
    Use below PowerShell command to set new Throttle Size:
    Set-SPFarmConfig -WorkflowPostponeThreshold 100
    Increase Batch Size
    This is the size that determines number of events processed for a single Workflow instance. Default value is 100, but it can be range from 1 to any number.
    Use below PowerShell command to get the current Batch Size:
    Get-SPFarmConfig | Select WorkflowBatchSize
    Use below PowerShell command to set new Batch Size:
    Set-SPFarmConfig -WorkflowBatchSize 200
    Time Out
    This decides the time out of the Workflow event. The default value is 5 and can be any integer. The time is in minute.
    Use below STSADM command to get the current Time Out value:
    stsadm -o getproperty -pn workflow-eventdelivery-timeout
    Use below STSADM command to get the current Time Out value:
    stsadm -o setproperty -pn workflow-eventdelivery-timeout -pv “15″
    Workflow Timer Interval
    This setting is applicable at Web Application level and not the farm level. The workflow timer interval specifies how often the workflow SPTimer job fires to process pending workflow tasks. This interval also represents the granularity of delay timers within
    your workflow. If a timer is set to delay for one minute, but the interval timer fires only every five minutes, the workflow delays for five minutes, not one minute.
    Use below STSADM command to get the current Workflow Timer Interval value:
    stsadm -o getproperty -pn job-workflow -url <Web Application Url>
    Use below STSADM command to get the current Workflow Timer Interval value:
    stsadm -o setproperty -pn job-workflow -pv “Every 10 minutes between 0 and 30″ -url <Web Application Url>
    Here is the url for reference :
    http://praveenkasireddy.wordpress.com/2013/06/14/workflow-due-to-heavy-load-the-latest-workflow-operation-has-been-queued-it-will-attempt-to-resume-at-a-later-time/

  • Due to heavy load, the latest workflow operation has been queued. It will attempt to resume at a later time.

    I have SharePoint 2010 Enterprise running SP1. Configuration is one SharePoint server in the farm and a SQL 2008 R2 database for the backend. Our user environment is 80 users with very little load on the SharePoint server. I have the workflow timer
    set to 1 minute.
    I have a SPD workflow that starts manually on a form library. Whenever I publish a new version of the workflow, the next time I start the workflow it takes the full minute to finish. If I click on the workflow status before it finishes, I see the message
    "Due to heavy load, the latest workflow operation has been queued. It will
    attempt to resume at a later time.". After the minute completes the workflow finishes.
    Here's the weird thing, the next time I start the workflow, it runs in a couple of seconds - almost instantly. I've tried up to 15 times after the inital publishing and everything seems to work fine on initiation.
    Well, that would be fine for me, however, I intermintantly get this heavy load message during task processes that are running inside the workflow. It's probably less than 5% of the time. It's really frustrating though so I appreciate some help. I'm look
    online and haven't found anything that describes my situation.
    Thank you in advance!

    Hi,
    Before considering an additional hardware try to change following configurations for workflow:
    Increase Throttle Size
    Increase Batch Size
    Time Out
    Workflow Timer Interval
    AutoCleanUpDays
    Increase Throttle Size
    The Workflow throttle setting controls how many Workflows can be processing at any one time on the entire server farm. By increasing the throttle it will allow the number of Workflows execution or can be initiated at a time.
    Use below PowerShell command to get the current Throttle Size:
    Get-SPFarmConfig |
    Select WorkflowPostponeThreshold
    Use below PowerShell command to set new Throttle Size:
    Set-SPFarmConfig -WorkflowPostponeThreshold
    100
    Increase Batch Size
    This is the size that determines number of events processed for a single Workflow instance. Default value is 100, but it can be range from 1 to any number.
    Use below PowerShell command to get the current Batch Size:
    Get-SPFarmConfig |
    Select WorkflowBatchSize
    Use below PowerShell command to set new Batch Size:
    Set-SPFarmConfig -WorkflowBatchSize
    200
    Time Out
    This decides the time out of the Workflow event. The default value is 5 and can be any integer. The time is in minute.
    Use below STSADM command to get the current Time Out value:
    stsadm -o getproperty -pn workflow-eventdelivery-timeout
    Use below STSADM command to get the current Time Out value:
    stsadm -o setproperty -pn workflow-eventdelivery-timeout -pv “15″
    Workflow Timer Interval
    This setting is applicable at Web Application level and not the farm level. The workflow timer interval specifies how often the workflow SPTimer job fires to process pending workflow tasks. This interval also represents the granularity of delay timers within
    your workflow. If a timer is set to delay for one minute, but the interval timer fires only every five minutes, the workflow delays for five minutes, not one minute.
    Use below STSADM command to get the current Workflow Timer Interval value:
    stsadm -o getproperty -pn job-workflow -url <Web Application Url>
    Use below STSADM command to get the current Workflow Timer Interval value:
    stsadm -o setproperty -pn job-workflow -pv “Every 10 minutes between 0 and 30″ -url <Web Application Url>
    Here is the url for reference :
    http://praveenkasireddy.wordpress.com/2013/06/14/workflow-due-to-heavy-load-the-latest-workflow-operation-has-been-queued-it-will-attempt-to-resume-at-a-later-time/

  • I have an IMac 10.5.2 from about 5 years ago and recently my flash player stopped responding.  I tried to update my flash player but it tells me I need an updated system to install the player.  Can anyone help me figure out how to solve this problem?

    I have an imac osx 10.5.2 from about five years ago and recently my flash player stopped operating/responding.  Does anyone know if I have to install a new flash player?  I have attempted it several times and it won't let me.  I would appreciate any suggestions on how to solve this problem.  Do I need a new operating system?

    Why have you not updated to 10.5.8?
    You can check here:  http://www.adobe.com/products/flash/about/  to see which version you should install for your Mac and OS. Note that version 10,1,102,64 is the last version available to PPC Mac users*. The latest version,10.3.183.23 or later, is for Intel Macs only running Tiger or Leopard, as Adobe no longer support the PPC platform. Version 11.4.402.265 or later is for Snow Leopard onwards.
    * Unhelpfully, if you want the last version for PPC (G4 or G5) Macs, you need to go here:  http://kb2.adobe.com/cps/142/tn_14266.html  and scroll down to 'Archived Versions/Older Archives'. Flash Player 10.1.102.64 is the one you download. More information here:  http://kb2.adobe.com/cps/838/cpsid_83808.html
    You should first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb2.adobe.com/cps/909/cpsid_90906.html
    and also that you follow the instructions closely, such as closing ALL applications (including Safari) first before installing. You must also carry out a permission repair after installing anything from Adobe.
    After installing, reboot your Mac and relaunch Safari, then in Safari Preferences/Security enable ‘Allow Plugins’. If you are running 10.6.8 or later:

  • Backing up - how to solve after copying whole system - login incorrect

    Hello,
    I have done an script to backup the whole filesystem and restore it. I am making tests before using forever.
    For Windows I use ntfsclone and it works perfect, but for ArchLinux I am doing:
    I use Knoppix cd-live to manage everything. I load the script from /dev/sda4 (data partition in ntfs) and the main commands to backup and restore are:
    Without doing chroot (because it is not possible)
    sudo mount /dev/sda5 /media/sda5 #This is the / of ArchLinux
    sudo rsync -aAXv /media/sda5/* /media/sda4/seccopy/ --exclude={/media/sda5/dev/*,/media/sda5/proc/*,/media/sda5/tmp/*,/media/sda5/run/*,/media/sda5/mnt/*,/media/sda5/media/*,/media/sda5/lost+found,/media/sda5/home/*,/media/sda5/var/lib/pacman/sync/*}
    cd /media/sda4/seccopy/
    sudo tar -zcvf /media/sda4/arch_copy.tar.gz ./*
    To restore:
    sudo mount /dev/sda5 /media/sda5
    sudo rm -r /media/sda5/*
    sudo tar -zxvf /media/sda4/arch_copy.tar.gz -C /media/sda5
    I can check that the files are copied correctly.
    I can do (and really do) the same with the home partition, same process but changing sda5 by sda6, and instead of arch_copy.tar.gz, arch_home_copy.tar.gz
    When I restart to boot in the new copied system... the problem:
    I go to the normal grub option for Arch Linux and I try again to put the password for ussr1, and nothing.
    I type it, enter, wait some seconds and prompt me again.
    I try with the root user, and its password, and the same problem. Not access to the system.
    I try in tty1, and the same problem, it says:
    Login incorrect
    First question: How to solve this situation?
    I think maybe the problem is something about /etc/passwd or /etc/shadow, and also I try to make chroot to see if it works.
    If I try to do chroot from Knoppix to the ArchLinux restored, it is not possible, everything goes ok from this wiki:
    https://wiki.archlinux.org/index.php/Change_Root
    but fails in this:
    Note: If you see the error chroot: cannot run command '/bin/bash': Exec format error, it is likely that the two architectures do not match.
    I don't know what is "architectures". I installed x86_64 in ArchLinux.
    Second question: Is because the Knoppix 7.0.4 (debian based) uses other? Like i686?
    I see in Internet this:
    http://www.cyberciti.biz/tips/recoverin … -file.html
    It is not my problem, but maybe it is a way to know if is correct or not,...-
    mode "recovery", edit, add to linux line after "ro single": init=/bin/bash
    Ctrl+x
    Logged as root automatically:
    Third question: Why is not prompted the password? And illegitimate user can see everything doing this.
    $ mount -rw -o remount /
    $ mount -rw -o remount /home
    mount: /home not mounted or bad option
    In some cases useful info is found in syslog -try
    dmesg | tail or so
    Fourth question: Why i cannot mount the home? It is in the /dev/sda6, but for the / it didn't say anything to me. I cannot see the /home directory.
    $ cat /etc/passwd
    #- Has the root user and the ussr1 user
    $ cat /etc/shadow
    #- Has the root and ussr1 password coded.
    $ passwd
    Enter new UNIX password:
    Retype new UNIX password:
    Fifth question: Why is not prompted for the before password?     (following the steps i can imagine that this doesn't work, so, is not a security problem)
    $ passwd ussr1
    Enter new UNIX password:
    Retype new UNIX password:
    $ sudo reboot:
    sudo: /usr/lib/sudoers.so must be only be writable by owner
    sudo: fatal error, unable to laod plugins
    $ reboot
    Failed to talk to init daemon.
    $ exit
    exit
    [ 377.105707] Kernel panic - not syncing: Attempted to kill init! exitcode=0x00000100
    [ 377.105707]
    Sixth question: Why I cannot exit correctly? It also happen if I use the Arch in Live mode (and try to exit).
    The only way to avoid this problem is unpluging from electrical power (not even with the power button).
    I start the system again, I go to the normal grub option for Arch Linux and I try again to put the password for ussr1, and nothing.
    I type it, enter, wait some seconds and prompt me again.
    The same as first question: How to solve this situation?
    My idea is only use Knoppix live-cd to use as backup/restore system, but if it is not possible, I would like to know how to solve.
    The idea of using rsync instead of dd is because I want to save only the data, and not all the sectors (not enough space in the hard disk).
    I don't mind to have to use arch linux usb installation media as it is "knoppix live-cd", the only thing I would like to use is the same media to do all the operations, because I want to teach normal users how to do it by themselves.

    cfr wrote:What's the exit value when you run passwd? (man passwd will show what the exit values mean.)
    value 0 -> success
    cfr wrote:Have you tried changing the password to something *other* than the existing password?
    tried for example with "something" for both, "root" and "ussr1"
    but if I go to /etc/shadow, I see that the passwords coded for root and ussr1 are not the same, so must be coded with other things too.
    cfr wrote:Have you tried creating a new user and logging in as that user?
    I added another user, for example "try"
    useradd -m -g users -s /bin/bash try
    passwd try & echo "$?"
    .. (something)
    0
    Ok, after just add the user, if I go to /home/ I can see some files created automatically, and if I compare those files with the files that I pasted in my ussr1 account, there are two that are missed:
    .xinitrc
    .xsession
    xinitrc is executed by startx (so, it is because the X11..)
    and..ok, xsession the same (xdm/gdm/kdm). So nothing here.
    I also add "try" to the groups: lp, games, video, audio, optical, storage, scanner   with:
    gpasswd -a try lp
    cfr wrote:Have you run pwck and grpck to check the integrity of the files? (I doubt this is the issue but it seems an easy step to do just on the off chance.)
    Ok, if I do:
    $ pwck; echo "$?"
    0
    $ pwck /etc/passwd; echo "$?"
    0
    $ pwck /etc/shadow; echo "$?"
    invalid password file entry
    delete line 'root:ahskldfhajksdfkahsjkdhf...asdkfhjashdkfjh:15795::::::'?
    invalid password file entry
    delete line 'bin:x:14871::::::'?
    so forth..with: root, bin, daemon, mail, ftp, http, uuidd, dbus and nobody
    user 'ussr1': directory '7' does not exist
    user 'polkitd': directory '7' does not exist
    user 'usbmux': directory '7' does not exist
    user 'mysql': directory '7' does not exist
    invalid password file entry
    delete line 'kdm:!:15793::::::'?
    invalid password file entry
    delete line 'avahi:!:15793::::::'?
    user 'try': directory '7' does not exist
    pwck: no changes
    2
    $grpck /etc/group; echo "$?"
    0
    $grpck /etc/gshadow; echo "$?"
    invalid group file entry
    delete line 'root:::root'?
    invalid group file entry
    delete line 'root:::root'?
    invalid group file entry
    delete line 'root:::root'?
    ...so forth
    with: root, bin, daemon, sys, adm, tty, disk, lp, mem, kmem, wheel, ftp, mail, uucp, log, utmp, locate, rfkill, smmsp, http, games, lock, uuidd, dbus, network, video, audio, optical, floppy, storage, scanner, power, nobody, users, systemd-journal, polkitd, usbmux, mysql, kdm, avahi
    grpck: no changes
    2
    So, cat /etc/gshadow | wc -l    = 40 lines
    And grpck /etc/gshadow | wc -l  = 40 lines
    And the same for /etc/shadow = 16 lines and the pwck were 11 "delete line" and 5 "directory '7' does not exist"
    But as we see, even the try has some error... in this case with directory '7'.
    I don't understand why errors... theoretically they were copied and pasted without modifications
    NOTE** Ok, my fault, I have to execute the command like this: $ pwck -r /etc/passwd /etc/shadow; echo "$?"    and now it answers: 0         So, the integrity of both files are correct! And the same with group and gshadow
    ewaller wrote:
    Inside the chroot, run pacman -Qk | grep -v ", 0 missing"
    And see if there are any packages that should be reinstalled.
    If not, reinstall pam, just for good measure
    With
    $pacman -Qk | grep -v ", 0 missing"
    no results.
    I execute it without doing anything before with pacman, no updating, absolutely nothing.
    pam?
    i search for pam, and i find "pam mount", something like "encrypted home". But Was it activated by default?
    Last edited by Zzipo (2013-03-31 21:57:57)

  • "The disk you inserted was not readable by this computer". how to solve this problem?

    "The disk you inserted was not readable by this computer." this message  apear on my imac any idea how to solve this problem?

    It means the disc is not in a format your computer can read or it is not formatted at all. You can remove the disc or you can attempt to format the disc. If the disc has data on it, then I would not format it.

  • How to solve launch_msg not connected

    my powerbook g4 wont boot ;error launch_msg not connected how to solve this issue

    There may be a way to start in single-user mode, enter the correct command
    and then restart from there into the normal GUI. However the info in your post
    suggests two different products, as PowerBookG4 cannot run Mt Lion 10.8.5...
    If your computer is a MacBook, running a more recent OS X than a PPC G4
    can, then your topic could be moved by a Host into the correct ASC area.
    •Start up in Single-User or Verbose Mode:
    Mac OS X: How to start up in single-user or verbose mode - Apple Support
    •7 Mac Startup Options Every OS X User Should Know:
    http://www.tekrevue.com/tip/mac-startup-options/
    Depending on how you arrived at the message, the path should be clear.
    If you have a complete or duplicate backup of your computer content, a
    different path could be taken to attempt to erase & install a new OS X.
    More information may be needed; esp. if host should relocate your post.
    Good luck & happy computing!

  • HT201405 how to solve time machine error-1

    how to solve time machine error-1

    I checked the pondini fixes and ended up doing the following - in case this could help someone else with OSX Lion and Time Capsule... http://pondini.org/TM/Troubleshooting.html
    First, I downloaded and used Airport Utility 5.6 instead of 6.1 - BTW, I had to attempt download and installation THREE times before the program actually installed.  Be persistant.
    Pondini #5: It's possible some names (of all things!) may be a problem.    See item C9.  I had to re-name my Mac, Time Capsule, network, etc... to remove all apostrophes and spaces.
    Pondini #7:  If you have WD SmartWare installed on Lion, it's not compatible, per RoaringApps, and there are reports it can cause this problem as well.   Use Western Digital's uninstaller, or delete the app from /Applications and the files com.wdc.WDDMservice.plist and com.wdc.WDSmartWareServer.plist from /Library/LaunchDaemons.   There may also be a file in Library/Application Support.
    I then had to shut down computer, unplug Time Capsule, unplug modem; plug everything in again, then reboot computer; then had to go to Apple- System Preferences- Network- and reselect my Time Capsule to connect to WiFi again.
    Then opened Time Machine preferences again and attempted back up - it worked!

  • HT4623 how to solve the error 1015

    hi how to solve error 1015 that i got during updating

    Read Errors related to downgrading iOS
    The required resource cannot be found: This alert message occurs when your device has a newer version of iOS than what is available in iTunes. When troubleshooting a device that presents this alert message, go to Settings > General > About and check the version of iOS on the device. If it is newer than the latest released iOS version, the device may have a prerelease developer version of iOS installed. Installing an older version of iOS over a newer version is not supported.
    Error 1015: This error is typically caused by attempts to downgrade the iPhone, iPad, or iPod touch's software. This can occur when you attempt to restore using an older .ipsw file. Downgrading to a previous version is not supported. To resolve this issue, attempt to restore with the latest iPhone, iPad, or iPod touch software available from Apple. This error can also occur when an unauthorized modification of the iOS has occurred and you are now trying to restore to an authorized, default state.

  • I was updating my iphone 3g and suddenly  an error occurs (1015) plz tell me how to solve it

    i was updating my iphone 3g through itunes 11 then then suddenly an error occurs no.(1015) plz tell me guys how to solve this?

    Here is what Apple has to say.
    "Error 1015: This error is typically caused by attempts to downgrade the iPhone, iPad, or iPod touch's software. This can occur when you attempt to restore using an older .ipsw file. Downgrading to a previous version is not supported. To resolve this issue, attempt to restore with the latest iPhone, iPad, or iPod touch software available from Apple. This error can also occur when an unauthorized modification of the iOS has occurred and you are now trying to restore to an authorized, default state."

  • TS3694 how to solve 1015 error message

    how to solve 1015 error messege

    Error 1015: This error is typically caused by attempts to downgrade the iPhone, iPad, or iPod touch's software. This can occur when you attempt to restore using an older .ipsw file. Downgrading to a previous version is not supported. To resolve this issue, attempt to restore with the latest iPhone, iPad, or iPod touch software available from Apple. This error can also occur when an unauthorized modification of the iOS has occurred and you are now trying to restore to an authorized, default state.
    Pull up itunes on a computer and plug the iPad cord into the USB but the the device, hold the "Sleep/Wake" button and the "Home" button at the same time and count to 8.  then let go the Sleep/Wake button BUT KEEP YOUR FINGER ON THE HOME BUTTON. while holding the home button connect the device to the cable thats plugged into the computer and keep holding the home button
    AT NO TIME SHOULD YOU LET GO OF THAT HOME BUTTON until you see the message pop up in itunes saying "iTunes has discovered your iPad in recovery mode" then just go through the screens to restore the device.
    if that message doesn't pop up after about 20 seconds, then call apple care, let them know you tried to perform the DFU mode restore (Deivce Firmware Update) and it was a no go. and ask them if you're in warranty to replace it for free.

  • When opening software under lion, multiple (previous) documents open at the same time.  How to solve?

    when I open various software, under Lion, more than one document opens.  Issue with multipe software (Word, Excel, Preview, Quicktime, etc.  Do you know how to solve?

    This is a new feature called 'resume' that you resume from where you left off.
    There is a way to turn it off, go to system preferences>general>uncheck restore windows

  • I update I cloud in my computer but i forget plug my device iphone 5s in my computer, suddenly my device shut down automatically, what's wrong, now I can turn on my iphone 5s. How I solve the problem

    I update  icloud in my computer but i forget plug my device iphone 5s in my computer, suddenly my device shut down automatically, what's wrong, now I can turn on my iphone 5s. How I solve the problem

    Hi fransiscasanti28,
    If you are unable to power on your iPhone you may want to troubleshoot using the steps in this article -
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Specifically -
    Will not turn on, will not turn on unless connected to power, or unexpected power off
    Verify that the Sleep/Wake button functions. If it does not function, inspect it for signs of damage. If the button is damaged or is not functioning when pressed, seek service.
    Check if a Liquid Contact Indicator (LCI) is activated or there are signs of corrosion. Learn about LCIs and corrosion.
    Connect the iPhone to the iPhone's USB power adapter and let it charge for at least ten minutes.
    After at least 30 minutes, if:
    The home screen appears: The iPhone should be working. Update to the latest version of iOS if necessary. Continue charging it until it is completely charged and you see this battery icon in the upper-right corner of the screen . Then unplug the phone from power. If it immediately turns off, seek service.
    The low-battery image appears, even after the phone has charged for at least 20 minutes: See "iPhone displays the low-battery image and is unresponsive" symptom in this article.
    Something other than the Home screen or Low Battery image appears, continue with this article for further troubleshooting steps.
    If the iPhone did not turn on, reset it while connected to the iPhone USB power adapter.
    If the display turns on, go to step 4.
    If the display remains black, go to next step.
    Connect the iPhone to a computer and open iTunes. If iTunes recognizes the iPhone and indicates that it is in recovery mode, attempt to restore the iPhone. If the iPhone doesn't appear in iTunes or if you have difficulties in restoring the iPhone, see this article for further assistance.
    If restoring the iPhone resolved the issue, go to step 4. If restoring the iPhone did not solve the issue, seek service.
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • I recieve SMS and i hear established melody and I do't hear the person on all over SMS. How to solve this problem?

    Problem with an incoming message. For example, during my conversation the second line receives a call, I hear the sound in dynamics such as "piiiip piiiip," but when in this situation I recieve SMS and i hear established melody and I do't hear the person on all over SMS. How to solve this problem? Perhaps someone tell me? save in advance

    Not Charge
    - See:     
    iPod touch: Hardware troubleshooting
    iPhone and iPod touch: Charging the battery
    - Try another cable. The cable for 5G iPod (lightning connector) seems to be more prone to failure than the older cable.
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar

Maybe you are looking for

  • Voice over came on and now is says my password and xyz and tells me it is disabled...how do I fix this..HELP!!!!!! It is an iPhone 4

    I was talking on my phone earlier and voice over came on and started telling me my password back to me and now it won't let me get on it. It is telling me my password is wrong. How can I fix this? HELP!!!!!

  • Driver program for FORM16

    Hi all, I am seaching for Driver program for FORM16 SMART FORM .There is one driver program for sap script , for smart form J_1IEWT_CERT IS there any driver program  . Can any one please guide me how to proceed? thanks in advance. Regards, suresh.

  • Why I cannot open an archive file

    I captured my footage using the create archive so that the fooatge would be capture st8 and does not stop on when ever I stop recording on camera. 1. since there is no log and capture is there a way I can capture my footage with the create archive an

  • Physical Interface not present in show ip route connected

    Hi, Thanks for reading my post. I have a reccurent issue with a CISCO881-K9. My WAN interface is regularly unsuable even if it's UP/UP. I can't even ping the interface from the router itself. A reboot solves the issue. But now I have time and I'd lik

  • Extension of a geometry

    the SDO_TUNE.EXTENT_OF function returns the extension(bounding rectangle) of the geometry in a table. My problem is to find the extension of the geometry after a particular query filter. Fer example: SELECT ID, GEOM FROM STATES WHERE STATE='ALABAMA';