Problem Apache.exe, help me please!!!!!!

I have a problem, it appears to me the following error
with Dr. Watson:
Apache.exe
Exception: access violation (0xc000005), address: 0x60234d16
my versions are:
ORACLE Portal:3.0.7.6.2
db ORACLE 8i:8.1.7.0.0
how can to resolve this?
thank by any idea

Apply the 8.1.7.1 patch to the 9ias database (and I'd recommend doing it to the database where portal is installed). There were some fixes to the Net8 listener that fix this. Ever since I applied the patch I haven't had anymore Dr. Watson's.

Similar Messages

  • I cannot find the next and previous button in iTunes get info menu? Is there anyone that has also experienced this problem that can help me please

    I cannot find the next and previous button in iTunes get info menu?
    Is there anyone that has also experienced this problem that can help me please
    I have the lates version of Itunes

    I have managed to figure out how to solve this problem, after looking around I saw a lot of people kept saying makesure it is list view however this still did not work, I found the only way for me get these buttons back was to change the Movie to a TV Show and only then did the "Next" and "Previous" button appear. Right Click> Get Info > Options > Media Kind and then Select TV Show, this is extremely inconvienent but the only way that I found that has worked so far.
    Hope this works for you too!!

  • Still major stalling problem in ITUNES  **HELP ME PLEASE!!**

    OKAY, I got rid of my anti-virus program completely, and STILL iTunes takes up 100% of CPU power from 11-17 seconds, causing the playback to slow down completely and distort the songs...
    Here's my original post:
    Alright, here's my esoteric problem:
    I cannot playback songs in iTunes without 6 seconds becoming REALLY slow.
    I opened the task manager, and for some reason, even with everything else closed 100% of my CPU processing power is used from 11 until approx 17 seconds while a song is playing. If I start it at another point, it happens 11 seconds into it.
    I tried it on all 3 buffering settings, and there is no improvement on any of them.
    I have 1 GB of RAM, and the processor is 2.4GHz.
    I have 610 albums currently, with about another 100 or so to rip.
    I have no problem playing the mp3s back in WinAmp -- I have in fact been using iTunes for sorting and searching, and for my iPod (of course), and using WinAmp to playback, but it's annoying when iTunes places different tracks under different artist names, etc.
    I am completely befuddled by this problem.
    Any help would be much appreciated.
    --Seth

    What version iTunes?
    Dual processor, yes or no?
    If you do the MSCONFIG thing does it act differently
    http://docs.info.apple.com/article.html?artnum=302538

  • ITunes Library Problem!! Help Me Please!!!

    Okay. So I bought an external hard drive and transferred all my music to it and then deleted all the music from my internal hard drive to save on space. Using iTunes to manage all the music on the external. The problem is, every time I disconnect and later reconnect the hard drive, when I reopen iTunes, I get those stupid exclamation points next to the songs. I have to double click each individual track for them to go away. I can't edit multiple tags because all the songs have the ! points and individually clicking 4000 plus songs every day is just too daunting of a task. What am I forgetting to do?
    I need the hard drive to disconnect, and I need to find some way to unclick all the ! points at once. Am I missing a dll file, or a log, or something? What am I doing wrong?
    Can anybody walk me through this?

    If you make sure your external drive is always connected to your computer and recognized by Windows before you start iTunes, the exclamation marks should not be a problem.

  • From Sweeden - could you help me please ( i've tryed to do that for almost one day)

    i thing i have aloop problem, could you help me please. i trying to do if user not put in correct value (number instead of a letter or vice versa ) how can the program go back to first menu ( i have been studying for 3 weeks)
        enter code here
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    namespace @break
        class Program
            static void Main(string[] args)
                //Meny
                Console.WriteLine("\n HÄNGA GUBBE\n");
                Console.WriteLine(" 1) Lägg till ord");
                Console.WriteLine(" 2) Lista alla ord");
                Console.WriteLine(" 3) Spela");
                Console.WriteLine(" 4) Avsluta");
                int Valet;
                Console.Write("\n\tVälj 1-4:  ");
                Valet = int.Parse(Console.ReadLine());
                switch (Valet)
                    case 1:
                        Console.WriteLine("\n lägg ett till ord! ");
                        break;
                    case 2:
                         Console.WriteLine("\n Lista med alla ord :\n");
                         string[] array = { " Lev", " Skratta", " Gledje", " Gråt", " Njut" };
                         Array.Sort<string>(array);
                         foreach (var c in array)
                             Console.WriteLine(c);
                         Console.WriteLine("\n");
                         break;
                    case 3:
                        string guesses, bokstäver;
                        Console.Write("\n Hur många fel får man ha? ");
                        guesses = (Console.ReadLine());
                        Console.WriteLine(" Utmärkt, då spelar vi!\n");
                        Console.WriteLine(" Felgisningar :" + "0/" + guesses);
                        Console.Write(" Gissade bokstäver " );
                        bokstäver = (Console.ReadLine());
                        Console.WriteLine("Aktuellt ord");
                        Console.Write("Gissa bokstav : "+bokstäver+" \n");
                        break;
                    case 4:
                        Console.WriteLine("\n  HEJ DÅ! \n");
                        Console.Beep();
                        break;
                    //avbryter while loopen, avslutar spelet
                  

    What do you mean by "lots of problem"? The code I posted certainly compiles and runs just fine. Copy the following code into your Program.cs file in Visual Studio and run it and you will see that it works:
    using System;
    namespace ConsoleApplication1
    class Program
    static void Main(string[] args)
    //Meny
    Console.WriteLine("\n HÄNGA GUBBE\n");
    Console.WriteLine(" 1) Lägg till ord");
    Console.WriteLine(" 2) Lista alla ord");
    Console.WriteLine(" 3) Spela");
    Console.WriteLine(" 4) Avsluta");
    bool exit = false;
    do
    int Valet;
    Console.Write("\n\tVälj 1-4: ");
    try
    Valet = int.Parse(Console.ReadLine());
    catch (Exception)
    Console.WriteLine("Error....!");
    continue;
    switch (Valet)
    case 1:
    Console.WriteLine("\n lägg ett till ord! ");
    break;
    case 2:
    Console.WriteLine("\n Lista med alla ord :\n");
    string[] array = { " Lev", " Skratta", " Gledje", " Gråt", " Njut" };
    Array.Sort<string>(array);
    foreach (var c in array)
    Console.WriteLine(c);
    Console.WriteLine("\n");
    break;
    case 3:
    string guesses, bokstäver;
    Console.Write("\n Hur många fel får man ha? ");
    guesses = (Console.ReadLine());
    Console.WriteLine(" Utmärkt, då spelar vi!\n");
    Console.WriteLine(" Felgisningar :" + "0/" + guesses);
    Console.Write(" Gissade bokstäver ");
    bokstäver = (Console.ReadLine());
    Console.WriteLine("Aktuellt ord");
    Console.Write("Gissa bokstav : " + bokstäver + " \n");
    break;
    case 4:
    Console.WriteLine("\n HEJ DÅ! \n");
    Console.Beep();
    exit = true;
    break;
    //avbryter while loopen, avslutar spelet
    } while (!exit);
    If you can't get this to work despite someone actually giving the exact code you should probably ask some developer to help you.
    If you have some logical issues in your code that's another issue. Please start a new thread if you have a new question.
    Note that the forums are not for anyone else to write an entire application or class for you though :)
    Please remember to close your threads by marking helpful posts as answer.

  • I have a problem with the sync between iTunes and ipad2. I can not see the files in iPad. Help me please.

    I have a problem with the sync between iTunes and ipad2. I can not see the files in iPad. Help me please.

    Cannot see what files ? Music (synced music should appear in the iPod app), films/TV shows (Videos app), documents ... ?

  • HELP. ............Hi folks hope some one can help me please.Having a problem in Bridge I open my images in ACR,  as I open files in a folder and lets say they are labeled in yellow  they are all going back to  the camera raw default , in other words no ma

    HELP. ............Hi folks hope some one can help me please.Having a problem in Bridge I open my images in ACR,  as I open files in a folder and lets say they are labeled in yellow  they are all going back to  the camera raw default , in other words no matter what work I have done, inc cropping they  all go back to ,as they came out of camera. What on earth is happening? I am on PS CS6. I might point out everything was working normally up to  yesterday, when this first started.
    I recently changed computer to 64bit from 32bit, not sure if this causing  the problem or not. Any help would be appreciated.

    Robert,
    Would you be so kind to rephrase your question with concise, precise information and without any "let's say that" hypotheticals?  Sorry, I can't quite follow you.
    Also please give exact versions of Photoshop CS6 (13.what.what), of Bridge and of your OS.
    Thanks.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand, such as your platform (Mac or Win), exact versions of your OS, of Photoshop and of Bridge, machine specs, what troubleshooting steps you have taken so far, what error message(s) you receive, if having issues opening raw files also the exact camera make and model that generated them, etc., someone may be able to help you.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Can't download anything from app store or itunes. everytime i try to install an app i get "there is abilling problem with a previous purchase. please update ur payment method". i have recently changed my address and visa debit card. please help

    can't download anything from app store or itunes. everytime i try to install an app i get this error "there is a billing problem with a previous purchase. please update ur payment method". i have recently changed my visa debit card and home adress and when i make these changes i still get the same error.
    will u please help me out?

    Are you listing the billing address for the card correctly? The address in the iTunes/MAS account must match the address on your bill exactly.

  • So I download photoshop cc (2014) and when I go to open the program, it gives me an error message and shuts the program down. It says," A problem cause the program to stop working correctly. Windows will close the program." Can someone help me please?

    So I download photoshop cc (2014) and when I go to open the program, it gives me an error message and shuts the program down. It says," A problem cause the program to stop working correctly. Windows will close the program." Can someone help me please?

    I've got the same issue and it affects all my adobe software.  You are not alone as I have seen several postings looking for the answer to this help request.

  • AS 10gR1 vs "Apache.exe has encountered a problem and needs to close" on XP

    I would really appreciate if somebody has solution for Windows error message popup box
    "Apache.exe has encountered a problem and needs to close".
    I have installed Oracle Application Server 9.0.4 Infrastructure (from 10gR1 AS) on XP laptop (I know it is unsupported)
    opmnctl.exe status show "UP" status for OID,OC4J but "Down" for HTTP_Server
    When I try to run
    opmnctl.exe versbose startproc ias_component=HTTP_Server
    I will always get "result=failure", text="failed to start a managed process after the maximum retry limit"
    and Windows message popup box
    "Apache.exe has encountered a problem and needs to close".
    (I have also 9i and 10g installed in separate Oracle homes).

    I have made 3rd attempt to re-install AS due "Apache.exe has encountere..and must be closed" error.
    I have succeeded after doing following:
    - unistall previous AS 9.0.4 (10gR1) install
    - disabled McAffee and firewall
    - changing NLS_LANG=AMERICA_AMERICAN.WE8ISO8859P15 prior installation
    - removed path to other OH (9i and 10gR2)
    - restart XP laptop
    - doing install AS 9.0.4 (10gR1)
    Now opmnctl.exe status shows everything works (including HTTP_Server :)

  • Users of imovie experience a lot of problems and crying for help and no one at Apple did not respond I do not understand how a company like Apple puts experts to help users Please note that anonymous experts in Internet offer their help for money

    Users of imovie experience a lot of problems and crying for help and no one at Apple did not respond
    I do not understand how a company like Apple puts experts to help users
    Please note that anonymous experts in Internet offer their help for money

    Users of imovie experience a lot of problems and crying for help and no one at Apple did not respond
    I do not understand how a company like Apple puts experts to help users
    Please note that anonymous experts in Internet offer their help for money

  • TS3899 In my iPad 2 with IO6 today I can not send emails from my gmail account, they go to the outbox directly...why? How can i solve this problem? ..I restarted the IPad but the problem was not solved. Please help.

    In my iPad 2 with IO6 today I can not send emails from my gmail account, they go to the outbox directly...why? How can i solve this problem? ..I restarted the IPad but the problem was not solved. Please help.

    Greetings,
    Questions:
    1. What version of the Mac OS are you running (Apple > About this Mac)?
    2. What version of the iOS are you running (Settings > About)?
    3. Do you use MobileMe/ iCloud or another server based sync solution like Google or Yahoo?
    4. Do other changes to synced information like Address Book content sync successfully back and forth?
    Based on your description it sounds like you have a 1 way sync issue.  Events sync fine between the iOS devices and fine from the computer to the iOS devices but not from the iOS devices to the computer.
    Try:
    Backup your computer and iOS devices before doing anything else:
    http://support.apple.com/kb/HT1427
    http://support.apple.com/kb/ht1766
    Ensure all the devices in use are fully up to date: Apple > Software Update / Settings > General > Software Update
    Make separate backups of critical data:
    Backup your computer Addressbook: http://docs.info.apple.com/article.html?path=AddressBook/4.0/en/ad961.html
    Backup your computer iCal: http://support.apple.com/kb/HT2966
    Reset syncing on your Mac: http://support.apple.com/kb/TS1627
    Reply back if that does not resolve your issue.
    Hope that helps.

  • TS1363 My iPod Nano 7th Generation couldn't be detected by iTunes when I plugged in. I tried resolving the issue by uninstalling the iTunes and then install it back again but yet still the same problem exist. Can you please help me to solve this issue?

    My iPod Nano 7th Generation couldn't be detected by iTunes when I plugged in. I tried resolving the issue by uninstalling the iTunes and then install it back again but yet still the same problem exist. Can you please help me to solve this issue? I have already updated to the latest version of iTunes on my Windows 8 and I cannot synchronize my iPod for the time being. Please do help me to solve this problem. Thank You.

    uninstall all iTunes,5 programes,this worked for me after reinstall them

  • Hello THIS IS RAZA I GOT A MACBOOK PRO I HAVE A PROBLEM. PROBLEM IS how to solve this problem i have uploaded in .... all the time few days later on i face this problem in safari..... anyone can help me please.....thanks Screen Shot 2015-03-21 at 10.

    Hello
    THIS IS RAZA
    I GOT A MACBOOK PRO
    I HAVE A PROBLEM. PROBLEM IS how to solve this problem i have uploaded in .... all the time few days later on i face this problem in safari..... anyone can help me please.....thanks

    This is a scam. Do not phone these people, at best they will charge you for unnecessary 'cleaning' and at worst they will gain access to your Mac and steal your data. You've probably managed to install some 'adware' which is producing this fake warning. 'Adwaremedic' should remove it and is safe to use - please see
    http://www.adwaremedic.com/index.php

  • TS1453 Hi, I bought Apple tv traying to rent a movie but there problem with itunes, and there is on apple tv don't have my country. could you help me please how can I solve this problem?

    Hi, I bought Apple tv traying to rent a movie but there problem with itunes, and there is on apple tv don't have my country. could you help me please how can I solve this problem?

    Whinston,
    I live in Azerbaijan. Recently I bought apple tv in New York. When I come back to my country tried to rent movies from my country but couldn't find my country name on apple tv menu, so there is a problem I don't know how to fix it. is there have another way to take a rent movies?

Maybe you are looking for

  • Plan Vs Actual report in PS

    Gurus, New in SAP PS module, appreciate your advice on the PS Plan Vs Actual cost reporting. What kind of standard extractor should we use in order to extract the Plan cost entered in PS? What kind of standard extractor shoud we use in order to extra

  • In app purchase not transferring to other IOS devices

    Hi all, I did an in app purchase for 15 kid songs for my daughter from my iPhone 4s. The app itself transferred to my other 2 iPads but the in app purchase of the 15 songs did not transfer. Are there any suggestions to rocky if this Thanx for any inp

  • Multidimention array multiply

    Hi all, I have a problem to solve. I have an A matrix (col = 5, row = 5). If I want to calculate A power 100 by uusing method C=A*A*A*.....*A 100 times. What I should use and write in Java program. This is a fixed matrix. Any one could help, please h

  • Network monitoring on application level

    Hi all, is there an app that allows to monitor and log the network traffic on an iphone 4s (6.0.1) on the application level? Cheers, Kay

  • Changing ListenPort on Weblogic6 error

    I have changed the listenPort for weblogic6 and I'm getting an error. Below are my server properties in the config.xml file: <Server HelpPageURL="/weblogic/javelin/public_html/docs51/adminhelp/" HttpdEnabled="true" IdlePeriodsUntilTimeout="65534" JDB