Problems and solutions for 9i DB R2 install on Redhat Linux AS 2.1

Installing 9iDB R2 9.2.0.1.0 on Redhat Linux Advanced Server 2.1 (aka Redhat Enterprise Linux (AS))
and applying patchset 2 (9.2.0.3.0)
This is a certified platform but I hit many problems getting the install to work. Here are the problems I hit and how I solved them.
Note: This is not intended to be a install for dummies but just an account of all my problems and how I overcame them. I spent 10 hours on this certified install (mostly looking for solutions to the problems I was having)
I had a Intel Pentium 3 with 512 Meg RAM. (test machine)
1. Install Redhat Linux
2. Install Sun JDK 1.3.1 (this is not actually required for this install. I installed it as I was planning to install 9iAS after this)
3. Install binutils-2.11.90.0.8-13 (also not required. I installed it for 9iAS)
All other components were ok on my Redhat Linux install (i.e. kernel version, glibc)
4. Create oracle user with dba group
5. Create oracle home and oracle base directories. Ensure these are owned by oracle with rwx
6. Set kernel parameters and make sure that they are initialized every startup:
I managed to locate this script in the Redhat document called
"Deploying Oracle9iTM on Red Hat Enterprise Linux AS"
create a file called oracle.sh in /etc and give it execute permissions
oracle.sh
#!/bin/bash
# configures kernel and system parameters for Oracle9i R2
# File handles
echo 65536 > /proc/sys/fs/file-max
ulimit -n 65536
# Shared memory
# The default SHMMAX value is too low and likely to cause a failure during
# database creation. SHMMAX should be equal to half of your system's physical
# RAM.
# The default is for 512 MB of RAM. Replace the default value as appropriate
# for the amount of memory in your system, i.e.,
# 512 MB : 268435456
# 1 GB : 536870912
# 2 GB : 1073741824
# 4 GB : 2147483648
echo 268435456 > /proc/sys/kernel/shmmax
# It is generally safe to leave these next two values as they are
echo 4096 > /proc/sys/kernel/shmmni
echo 2097152 > /proc/sys/kernel/shmall
# Semaphores
echo 250 32000 100 128 > /proc/sys/kernel/sem
# Sockets
echo 1024 65000 > /proc/sys/net/ipv4/ip_local_port_range
# Processes
ulimit -u 16384
----EOF---------
then...
# chmod +x /etc/oracle.sh    # make executable
# . /etc/oracle.sh # apply changes now
edit /etc/rc.local to ensure this is run on startup
append to /etc/rc.local
# configure system for Oracle9i R2
bash /etc/oracle.sh
--------EOF--------------------
7. create a generic oracle environment setup script for all users to run
create the file /etc/profile.d/oracleenv.sh
be sure to change the variables to your environment (ORACLE_BASE, ORACLE_HOME and ORACLE_SID)
oracleenv.sh
# Configures the user's environment for Oracle9i R2
ORACLE_BASE=/opt/oracle
ORACLE_HOME=$ORACLE_BASE/product/9.2.0.1.0
ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
ORACLE_SID=orcl
LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
PATH=$ORACLE_HOME/bin:$PATH
export ORACLE_BASE ORACLE_HOME ORA_NLS33 ORACLE_SID LD_LIBRARY_PATH PATH
----EOF---------
chmod 755 /etc/profile.d/oraclenv.sh
This file will run when a user logs in.
8. Install oracle DB
This took me quite a few attempts.
The first Install I did I received the error jre was not found. This issue seemed to be relating to the fact I was not installing on a Pentium 4. Oracle was looking for the jre in oracle.swd.jre/bin/i686 (and .../lib/i686) when some of the files were placed in i386 and java was looking in i386. This created a real mess. I had encountered a similar problem on a previous install on a different platform. I found articles of people that tried to just link the directories with symbolic links but this never worked. I tried my own version but also failed.
The solution that worked for me was to de-install, remove all the oracle directories created by the install (this part I had always done) AND also delete the file /etc/oraInstl.loc. This makes the Installer truly believe this is the first time Oracle has been installed on this box. My jre problem disappeared after that. (I don't know why it just didn't work in the first place...)
The next error I received was an ORA-03113 when creating the database (in the dbca). (It was actually at this point that I found the document from redhat as mentioned in my set 6 above) I also noticed that when running the install of the database, the default was for Oracle's SGA to use 70% of the available memory on my machine (I have 512M so that's 360M). Oracle instructed me to set shmmax to around 240M. This may be why the database creation failed as I thought the shmmax parameter needed to be larger that SGA. Anyway, I reduce the SGA to 50% and it worked.
This error may also have been caused by the kernel parameters not being set properly after a reboot so if you implementing stop 6 above. You may never get this problem, hopefully.
8. Install the universal Installer 2.2.0.18.0 (a prerequisite for installing the patchset 2)
You will need this to install the patchset 2. You can get it from metalink by searching for the bug number in the patch area. Search for bug/patch number 2878462 in patches. (37Meg for linux intel)
(Did you know that when oracle refer to a bug number, you should treat this as a patch number? General the bugs are not available for public viewing but oracle create a patch of the same number as a placeholder. So don't search for the bug in the site search or by doc id, go straight to the "patches" area and enter the bug number as a patch number, you'll have more success. - I only found that out today after struggling with metalink for the last 4 years)
9. Install the patchset 2
I downloaded patchset 2 (which will bring my DB version to 9.2.0.3.0) (220Meg). There is a special symbolic link command you'll need so make sure you remember to do this.
i.e.
$ cd $ORACLE_BASE/oui/bin/link
$ ln -s libclntsh.so.9.0 libclntsh.so
10. Migrate your database
I could not get this to work. The docs says I need at least 150M shared_pool_size and 150M Java_pool_size before running the startup migrate. As I only have 512Meg RAM (and shmmax set to 230M) I did hold much hope that this would work. I started my DB without the migrate option just to see if it would actually open with 300M in my pools. It did, so I shut it down and restarted with the migrate option. After 5 minutes of heavy processing (I still have an empty database) my server appeared to hang. I decided to restart the machine and just re-create my DB with the new patchset already applied. I delete my $ORACLE_BASE/oradata/<sid> directory and remove the entry from /etc/oratab and re-created my DB. This worked fine :)
I hope this document helps you for your install. Please drop me line if it does help and I'll endevour to write more documents like this one.
Please drop me a quick line at [email protected] even just to say "thanks".
I will include a few keywords here to help the searches find this document. (mainly the keywords I searched on and failed to find a doc like this one)
ORA-03113 ORA-3113 03113 3113 jre was not found jre not found i686 i386 i586 9iDB R2 9.2.0.1.0 9.2.0.3.0 Redhat Advanced Server 2.1 AS Enterprise Linux (AS) RH install error installation errors oui dbca problem issue
Good luck,
Tim Daniell.

The trick that worked for me was on a 2nd attempt. I installed once, let it fail with "jre was not found", de-install through the installer, delete all directories and files under $ORACLE_BASE (including $ORACLE_HOME), and also delete /etc/oraInst.loc.
I don't know why it fixes itself with this. Oracle say this is an unresolved bug 2726268 that lies in the installer. This is still unresolved by Oracle (as at 02-June-03) therefore it is not a published bug/patch. If this doesn't work, I suggest you open an iTAR and see if Oracle has any more suggestions for you.
Cheers,
Tim.

Similar Messages

  • When I am connected to the WiFi, my apps cannot be download. Once I had disable the wifi and connect directly to the service provider, the apps will start to download. Please advise what is the problem and solution for my iPhone 5.

    When I am connected to the WiFi, my apps cannot be download. Once I had disable the wifi and connect directly to the service provider, the apps will start to download. Please advise what is the problem and solution for my iPhone 5.

    I can't follow your meaning. What does connect directly to your ISP mean?
    Did you mean turning off WiFi but turning on Cellular Data on your iPhone?

  • Best Practice on Knowledge Management, IS01 Problems and Solutions

    Been Playing with KM and looking for insight from other users (will give points) using it for ICWC.
    We have mulitple product lines where we have documents with Q & A's in each line.  As I look at moving that into CRM via IS01, I am looking for any Best Practices or recommendations.
    1. Create a single problem and solution for every question.
    2. Create a single problem (list all questions)  for every product line and create multiple solutions that are linked to that problem (solution for each question)
    3. Is LMSW a good tool for loading data in mass?
    The ICWC search brings back the 1st line on the problem & solution on the screen, meaning I try to limit the characters used so it fits on the ICWC screen, a long 1st line on the problem doesn't allow the agent to see enough of the solution without opening the link.
    Thanks,
    Edited by: Glenn Michaels on Jun 14, 2008 9:52 PM

    Hello Glenn,
    If it helps, here's a scenario about KB on my company system.
    Our call center supervisors are the persons who creates problem and solutions in our KB. They maintain it but don't use IS01 transaction. They use instead  People Centric BSP's for Problem s and solutions (they're integrated in IC webclient with the help of transaction launcher).
    Normally, they prefer creating multiple solutions to one problem, instead of single problem - single solution method. This because some questions may have multiple solutions. They could put all the solutions text in one solution object, but for maintainance purposes we think it's better to create multiple solutions object to every solution text, because if one solution becames obsete, all we have to do is unlink instead of changing the text.
    We don't use LSMW. I don't have much experience in LSMW, but if you use it, be careful to respect KB interval numbers for problems and solutions. We implement an initial set of problems and solutions in our Development system, and we passed to the Quality and Produtive system, with the precious help of sap note '728295 - Transport the SDB customization between two CRM systems' and '728668 -Transport the content of the SDB between two CRM systems'.
    One cool idea to use the KB is using Auto-suggest feature. The idea is to integrate the links between problems and solutions with, for example, service ticket categorization, using BSP Category modeler, and when an agent classifies a ticket, at the top of the screen it will appear the suggested solutions/problems for the classification choosen.
    I think that's all.
    Sorry for my poor english. Today I'm not feeling very inspirated
    Kind regards.
    Edited by: Bruno Garcia on Jun 17, 2008 9:51 PM (added note 728668)

  • HT3986 I've had MS Office:mac 2011 on my imac for around 18 months now.  Outlook has just disappeared and when I find the file and open it it tells me that there is a problem and I may need to re-install it.  I've just done this using the installation dis

    I've had MS Office:mac 2011 on my imac for around 18 months now.  Outlook has just disappeared and when I find the file and open it it tells me that there is a problem and I may need to re-install it.  I've just done this using the installation disc which, then said the installation had been successful.
    Outlook is still not working.  Can anyone please advise me on what to do next.

    Remove MS Office 2011 completely (here are instructions) and reinstall it.
    It's not a simple or fast process but it is important to follow all of the steps in order to get all the files that Office scatters around. This will not affect your data files, only MS Office and its preferences.

  • CD-DVD ( Optical Drives ) Common Problems and Solutions

    CD/DVD Common Problems…
    Dear friends, I have noticed that many laptop users suffering from some common problems. cd/dvd ( Optical Drive ) problems are one of them.. so here I am trying to collect and make available solutions related to cd/dvd drives . Almost all solutions are already advised in previous posts but these are  all are in one post. We all are here for sharing problems and solutions. I always appreciate all corrections and additions. In first look optical drive problems seems like hardware problem. These problems have hardware/software both possibility so I request to administrator, to make available this post in both ( hardware – software  ) sections. I put only solution links to save forum’s valuable space.
    CD-DVD drive called  an OPTICAL DRIVE.
    CD-DVD discs called A MEDIA
    There are 2 possibilities for optical drives problems.
    Widows based problems
    Hardware based problems
    First here are windows based few common problems
    All windows based solutions are from Microsoft Corporation.
    Your CD drive or DVD drive is missing or is not recognized by Windows or other programs - Windows XP...
    Symptom:Your CD drive or DVD drive is missing or not recognized by Windows or other programs, so you cannot play or access a CD or DVD
    The CD drive or the DVD drive does not work as expected on a computer that you upgraded to Windows V...
    Symptom : You upgrade a computer to Windows Vista or install Windows Vista Service Pack 1 or you install or uninstall applications that have a CD/DVD filter driver.
    When you restart the computer, the CD drive or DVD drive no longer works as expected
    Your CD or DVD drive cannot read or write media
    Symptoms : Your CD or DVD Drive does not read or write and is shown as disabled
    The media in your CD or DVD drive cannot be read
    The media cannot be written to by your CD or DVD drive
    You receive one of the following errors:
    A class specific or device specific driver is missing or corrupt
    A CD or DVD drive cannot be found or is not connected
    The CD or DVD drive is experiencing a problem that prevents it from working properly
    The CD or DVD drive is not accessible via an assigned drive letter
    How to troubleshoot common problems that occur when a Windows XP-based computer cannot read a CD or ...
    Symptoms:
    The disc label does not appear in Windows Explorer.
    The contents of the disc do not appear in Windows Explorer.
    When you insert the disc in the drive or when your computer tries to read the disc,the computer stops responding.
    You cannot eject the disc from the drive.
    The computer takes a long time to read the disc.
    CD drive or DVD drive errors may cause unexpected program crash in Windows XP
    Symptom : Error
    "Program_name has caused and error and must be closed. We apologize for the inconvenience. If you were in the middle of something, the information you were working on might be lost. Please tell Microsoft about this problem. We have created an error report that you can send to help us improve rogram_name. We will treat this report as confidential and anonymous. To see what data this error report contains, click here."
    You cannot write to a DVD-RAM disc that is in a DVD-RAM/CD-RW combination drive
    Symptom : "The disc in the drive is not a writable CD or it is full. Please insert a blank, writable CD into drive D:\, or insert a disc with enough free space to hold all the files you have selected for writing to CD. "
    DVD-RW Drive Appears in My Computer as a DVD-R Drive
    Symptom : "If your computer has a DVD-RW (digital video disc rewritable) optical drive, the DVD-RW icon may not appear in My Computer. Instead, your DVD-RW optical drive may appear as a DVD-R (digital video disc recordable) icon."
    Windows XP does not recognize a DVD-RW disc
    Symptom : When you insert a DVD-RW disc into the DVD drive of a Microsoft Windows XP-based computer, Windows XP does not recognize the disc. For example, you do not see any files on the disc.
    You may also experience this problem with DVD-RW discs that have been formatted as VD-VR. Some consumer DVD recorders use the DVD-VR format.
    CD-R drive or CD-RW drive is not recognized as a recordable device
    Symptom : When you try to burn data to a CD-R or a CD-RW, you do not have the option to send data to the CD drive.
    When you view the properties of the CD-R drive or the CD-RW drive, you notice that the Recording tab is not displayed in the CD Drive (drive_letter: ) Properties dialog box, where drive_letter is the letter of the CD-R drive or CD-RW drive.
    Note To view the CD Drive (drive_letter: ) Properties dialog box, click Start, click My Computer, right-click the CD drive that you want, and then click Properties.
    Additionally, you may receive the following error message:
    There is no disc in the drive. Please insert a writable CD into drive.
    CD-ROM Drive May Not Be Able to Read a UDF-Formatted Disc in Windows XP
    Symptom : Your computer cannot read some or all files on CDs or DVDs that were recorded through the use of the Optical Storage Technology Association (OSTA) Universal Disk Format (UDF) file system standard. Symptoms may include:
    The disc is not recognized at all and shows up as empty.
    Error messages such as "The file or directory is corrupt and unreadable" appear when you try to access files in Windows Explorer.
    Some portions of a DVD-video may not function correctly
    How to troubleshoot issues that occur when you write data to a CD-R or CD-RW optical disc in Windows...
    Symptoms :issues that occur if you write data to CD-R and CD-RW optical discs and how to troubleshoot issues with CD-R and CD-RW drives.
    These are most common issues related to optical drivers.
    Tomorrow will try to explain hardware possibilities.
    All friends suggestions and correction are highly advisable..

    I upgraded to W7 and everything works fine except two things.
    I followed the
    http://h30434.www3.hp.com/t5/Operating-systems-and-software/Windows7-Upgrade-Guide-for-dv6000-dv9000...
    process and still have the problem DVD not under device manager
     DVD spins when booting but after W7 splash screen no longer functions, it did work prior to upgrade.
    I have seen many listed problems but no solution. my device is a TS-L632N and based on the most recent drivers i can find still not working. I looked in the registry and it is not listed under cdrom or
    {4D36E965-E325-11CE-BFC1-08002BE10318}
    there are no upper or lower filters

  • IOS 5 Upgrade Problems and Solutions

    Thought it might be good to have a repository thread for folks having difficulty with the upgrade to iOS 5.
    Here's what I experienced:
    The download was fast (fast wired internet) but the install was long and buggy.  For some reason many of my apps didn't show up after the initial install and my music/podcasts/videos were all missing.
    Turns out the phone had a large block of memory reserved (listed as OTHER) after the inital install.  I did a sync without music to get the missing apps back on the phone, put the missing apps back in their proper folders, then synced one more time to put my music/podcasts/videos back on the phone.  All was fixed!
    Anybody else have problems and solutions they can share?

    bbcamaro68 wrote:
    Hey i was having the same issues i tried contacting apple but got no where, it wouldnt let me restore and back up i keep getting the same error message. 
    went on my iphone under settings and restored back to factory settings, (not data just the factory settings for iphone) 
    and this fixed the problem, ios 5 update with no further problems. 
    hope this helps. 
    -Jim
    Jim- 
    Was this just for the Interal Error with no number reference or for the 3200 reference? I tried this with the plain Internal Error to no avail. I have an appointment with Apple in 45 min so hopefully I can return good news. Here's hoping!

  • My iSight is not working on my Macbook Pro. What are the possible problems and solutions?

    My iSight is not working on my Macbook Pro. What are the possible problems and solutions?

    Hello Douglas,
    Thank you for the details of the issue you are experiencing with the built-in iSight camera on your MacBook Pro.  I recommend the following steps for this issue:
    Important: Follow these instructions in order. Test the camera between steps to see if the issue is resolved.
    Built-in iSight cameras
    These steps are for iSight cameras that are built into a computer, such as the iMac G5 (iSight) or later, the MacBook, or MacBook Pro.
    See if the issue is application-specific.
    Try another application (iSight works with applications like iChat, PhotoBooth, and iMovie HD 6) to see if the iSight camera exhibits the same behavior in all applications. If it only happens in one application, try reinstalling that application.
    See if the issue is user-specific.
    Test your iSight camera in another user account. If the issue only occurs in one user, the issue would be isolated to user settings.
    Find out if the computer recognizes the iSight
    Check System Profiler (in the Utilities folder, inside the Applications folder). Under the USB header, check to see if the iSight camera is detected.
    Reset SMC or PMU
    Reset your computer's SMC or PMU, and then check System Profiler again. (SMC reset instructions for iMac G5 (iSight), Intel-based iMacs; PMU reset instructions for MacBook and MacBook Pro.)
    If your built-in iSight camera is still not behaving correctly after trying all these steps, you may need to contact Apple or an Apple-Authorized Service Provider for service.
    You can find the full article here:
    How to Troubleshoot iSight
    http://support.apple.com/kb/ht2090
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • CRM Solution database  How to main the problems and solution types

    Hi
    Can anyone tell me how to maintain problems and solutions in the CRM solution database , after setting up the TREX and SAF for the IC webclient .
    we are unable to maintain the problem types with 1200 words in the problem description in IS01 Transaction  We are unable to  assign the codes to  the problem type at the time of  maintaining the problems and solutions in the IS01 transaction for solution database . after maintaining the problems and solutions the SAF indexing with full compilation and cluster compilation . the list of documents were showing successful status but when we search by the attribute type in the knowledge search  the message is showing no search refinement found .kindly expedite the solution for the  the above description
    The TREX connectivity has been established successfully and the SAF is configured successfully without any errors in it but  but we are unable to search the text based and attribute based search in the IC webclient knowledge search .
    Regards
    Vikas dinaker

    Dear Vikas,
    Kindly check C13_BB_Config guide as service marketplace.
    It says in section 3.1.5.2.3 on page 57, the below mentioned paragraph.
    3. On screen Create Problem maintain the following data:
    Be sure that the descriptions of the following problem(s) and solution(s) are defined in all languages that you want to use (e.g., in the E-Commerce Internet Customer Self-Service).
    4.Choose Enter. The default parameters are filled; please also see the NOTE following this description.
    5.Enter the problem description listed in the box below. The first line should not exceed 40 characters, for this is like a short description of the problem that will be displayed in the first line of the hitlist in the search.
    hope this helps
    Amit

  • Solution Database - Maximum number of Problems and Solutions

    Hi everyone,
    I´m new at CRM and I was wondering if you could help me sharing your knowledge and experience on this.
    I completed the SAF and solution database configuration , I was wondering if there´s a maximum number of problems when creating problems and solutions on IS01? Also Can I have 2 or more solution data bases (with different problems and solutions) assigned for a business role?
    comments are appreciated
    thanks!

    http://help.sap.com/saphelp_crmhana/helpdata/en/a4/9fa471b41f44828da6ea1490f02e2b/frameset.htm
    What about this?
    Best regards,
    Thomas Wagner

  • Review Problems and Solutions after upgrade question

    I have recently migrated from WSS 3.0 to Sharepoint Foundation 2010.  I now have a the following messages in Sharepoint Admin.
    The SharePoint Health Analyzer has detected some critical issues that require your attention. View these issues.
    Accounts used by application pools or service identities are in the local machine Administrators group.
    Using highly-privileged accounts as application pool or as service identities poses a security risk to the farm, and could allow malicious code to execute. The following services are currently running as accounts in the machine Administrators group: SharePoint
    Central Administration v4 (Application Pool)
    SPTimerV4(Windows Service)
    Built-in accounts are used as application pool or service identities.
    Using built-in accounts like Network Service or Local System as application pool or as service identities is not supported in a farm configuration. The following services are currently running as built-in identities on one or more servers: SPSearch4(Windows
    Service)
    The last time I tried to correct this type of issue I wound up creating a problem that I was unable to correct.  I had to  reinstall Sharepoint.  How critical is this and what is the best way to make these changes without causing larger problems? 
    I am using two accounts to run the services/pools/etc.  Well 3 if you count the Local System.  Account #1 and #2 are not in the Admins group.  They were when I installed everything but I have since removed them.

    Hi Poly,
    I recommend to follow the steps below to see if the warning message remains:
    1.   Re-run Rule Definition.
    In Central Administration, go: Monitoring > Health Analyzer > Review rule definitions. On the Health Analyzer Rule Definitions page, in the Category: Security group, click the rule definition link, Accounts used by application pools or service identities
    are in the local machine Administrators group. Click the Run Now button, then click Close. Wait a minute or two, and then return to Review problems and solutions page.
    2.   Reset Farm Service.
    Login to the local machine hosting the farm Central Administration application. Go to Start > Administrative Tools > Services and scroll down to the SharePoint 2010 Administration service. Double-click this service, select the Log On tab. If not selected,
    select  the This account option and then enter or re-enter the farm account. At the warning prompt, "The new login name will not take effect until you stop and restart the service," click OK. Stop and restart the service, and then
    click OK. Wait a minute or two, and then return to Review problems and solutions page.
    3.   Reset the Farm Timer Service.
    Login to the local machine hosting the farm Central Administration application. Go to Start > Administrative Tools > Services and scroll down to the SharePoint 2010 Timer service. Double-click this service and select the Log On tab. If not selected,
    select  the This account option and then enter or re-enter the farm account. At the warning prompt, "The new login name will not take effect until you stop and restart the service," click OK. Stop and restart the service, and then
    click OK. Wait a minute or two, and then return to Review problems and solutions page.
    More references:
    http://alstechtips.blogspot.com/2013/12/health-analyzer-accounts-used-by.html
    http://technet.microsoft.com/en-us/library/hh344224(v=office.14).aspx
    http://technet.microsoft.com/en-us/library/ff805066(v=office.14).aspx
    Victoria Xia
    TechNet Community Support

  • Knowledge Search - Problems and Solutions

    Hi,
    I am creating Problems and Solutions (in IS01). But that is not visible in knowledge search in IC Webclient.
    I have also done compilation in SPRO -> CRM -> Enterpise Intelligence -> SAF, but not getting the result.
    Please Help.
    Regards,
    Ankush

    -  Your IC WebClient Profile should point to the Knowledge Management Profile which point to the Configured Knowledge Base ( Problems and SOlutions )
    - I hope SAF Diagnosis Tool looks good ( CRMC_SAF_TOOL )
    -  I hope you have gone through the Best Practice Document ( help portal ) for Interaction Center which tells step by step ways to configure Knowledge Base

  • I still am having problems with Aperture not loading,  It just refuses to work, and I get the message saying it has encountered a problem, and I may need to re-install which I have done dozens of times. The fix mentioned on an earlier post wont work as it

    I still am having problems with Aperture not loading,  It just refuses to work, and I get the message saying it has encountered a problem, and I may need to re-install which I have done dozens of times. The fix mentioned on an earlier post doesn't work as it is for Ver 10.6.6 and I am running 10.6.7

    Do you have Final Cut installed on your machine?
    If so, you may want to look at this article: http://support.apple.com/kb/TS3528
    Let us know if that helps.

  • 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

  • Can´t access my files on Creative Cloud. "Page temporarily unavailable. We will return soon." "We are working quickly to resolve the problem and apologize for the delay. Check back later or visit our website for status updates. In addition, you can get he

    Hello,
    For a few days I have been trying to access my files on Creative Cloud web without success. I´ve got this message only:
    "Page temporarily unavailable. We will return soon."
    "We are working quickly to resolve the problem and apologize for the delay.
    Check back later or visit our website for status updates.
    In addition, you can get help in the forums of the Creative Cloud.
    Thank you for understanding!"
    (I used Google Translate)
    Somebody help?

    You do not need ?&promoid=KRUVP at the end of the url but it should not matter.
    One thing to check is if your hosts file is modified. Open the Command Prompt and type: notepad %systemroot%\system32\drivers\etc\hosts
    This will open a read-only copy of your host file in Notepad. Are there any entries in this file regarding adobe.com?
    The other thing you can do is open the Developer Tools in the Chrome browser. On Windows press Ctrl + Shift to open them. Switch to the Network tab. Reload the page by pressing Ctrl + r. Check for any 4xx or 5xx errors which should be colored red.
    Post screenshots of your results or send me a private forum message with the information.

  • HT5731 I am unable to delete unwanted songs from my wish list. Does anybody else have this problem and/solution. Thanks

    I am unable to delete unwanted songs from my wish list. Does anybody else have this problem and/solution. Thanks

    I have the same problem, and other people have also posted about it. I assume that there is either a bug with the current version of iTunes and/or that there is a problem at Apple's end

Maybe you are looking for

  • Req help in conversion of string to array of args

    Hi, i need help in converting a string into array of args just like command line args i have a string s1 = 12 13 56 etc now i want to copy that into an array a[] a[0] = 12 a[1] = 13 etc Thanks for help

  • Rejection of material

    Hi, there is requirement where PO, GRN, & Invoice has been done at legacy data for particular material. Now in SAP client uploaded thae stock data. Now transfer posting of material done in SAP. Then it went ot quality. But in quality, material has be

  • Why does my xperia Z2 doesn't run wifi?

    I'm having problems with the wi fi of my xperia z2, I recovered the system to have it like new, and when i did it, the wi fi did't run, i don't know why, it keeps like plugin the wi fi but it never runs

  • Brush edges disappearing - Not a caps lock issue!

    Hello - I've upgraded to CS4 and Leopard (10.5.6) within the last month or so (computer is a dual G5). Recently (sometime in the last week) I've started having a problem where my brush edges disappear as soon as I start painting: I click to paint, an

  • I got a SeqEdit.exe Problem Message when Inserted expression, is it a bug?

    I was trying to insert an expression in the Expression Browser to evaluate limits, but every time I selected "Insert" it displied a SeqEdit.exe problem message and quited TS. The problem was always with the same specific expression. There are attache