Non-standard install problem

I'm trying to upgrade to the newest Flash player for Opera on Windows XP but I can't get it to install properly. I think the problem is that Opera (9.4) is installed to a non-standard folder on my machine (.../Opera7) rather than the usual .../Opera folder and I'd rather not have to change it. Any ideas on how I can install to the correct location? Any help would be appreciated.

If that didnt work try this below:
1) Open up the Command Prompt as an Administrator (Go to All Programs > Accessories and Right Click on Command Prompt and then choose Run as administrator)
2) Type cd C:\Windows\SysWOW64
3) Type regsvr32 vbscript.dll (This registers VB Script with your computer.)
4) Now install iTunes as you normally would by double clicking on the install program and wait for iTunes to finish installing.
5) Type regsvr32 \u vbscript.dll (This unregisters VB Script with your computer.)
THIS ONE COMES WITH A WARNING
TRY BOTH OF THESE AT YOUR OWN RISK
AND some thing below to consider about this second step, not the first post
To enabled, VB Script a scripting language that has been responsible for more trojan and worms floating around the internet than any other on the face of this earth. All in order to install one of the earths most popular programs to get our daily audio fix. So we have to disable security measures built in to protect the operating system from malicious code and leave our selves wide open.This would be the equivalent to Microsoft telling Mac People to disable buffer overflow protection in order to install Microsoft Office for the Mac.

Similar Messages

  • Kvirc from SVN {NON-Standard-Install-Method} and Overcoming 2 Problems

    Hello, everyone.  Firefishe here.
    There are certain programs I like to compile from source code, outside of the normal arch hierarchy of PKGBUILD's.  One such program is the Internet Relay Chat client, "KVIRC".
    I've been using kvirc for years, and I like to keep it as up-to-date as possible, just like Arch!
    This is why I like to use the svn version, so I can update it quickly and uniformly.  I like--as a user--to contribute back to the project.  (I had one of my bug reports translated into an instant commit by the main project author, himself, once.  That made me feel quite good, so it really does help to do a few things like this now and again.
    Okay, on to the main topic.
    I'm writing this to alleviate a nagging problem that had been plaguing me for months in 2013.  Qt5 just wasn't compiling kvirc very well back then.  The fact is, the echoing strains of "qt5 is broken in kvirc" from the #kvirc channel on Freenode, resounded soundly throughout that entire year.  Qt5 was still a bit buggy, and not all the libraries (32bit or 64bit) were quite finished.
    Move forward to (now) July, 2014!  I have now compiled kvirc successfully on my 64bit (with 32bit multilib installation) laptop, and kvirc is purring away with a current svn build of kvirc.
    However, I ran into some issues, which I would like to share with you, below:
    I usually go about compiling kvirc from svn like this: (I usually start from my /home/userNameHere directory.)
    {arch@homedir}$ svn co https://svn.kvirc.de/svn/trunk/kvirc
    {arch@homedir}$ cd kvirc
    {arch@homedir}$ mkdir release
    {arch@homedir}$ cd release
    {arch@homedir}$ ccmake ..
    [At this point, the 'ccmake ..' command invokes cmake-gui, an ncurses-like graphical user interface, with a list of menu items pertaining to various libraries and flags that can be set.  cmake-gui makes selecting these flags and libraries quite easy, and also gives a clear indication of what directories may not have been found (which will be discussed a bit later.) ]
    Press the 'C' Letter Key -- (This runs the Configure Routine.  I sometimes do this twice, just to be sure it configured properly. I've had it miss a few times for unknown reasons.)
    Press the 'G' Letter Key -- This 'Generates' Cmake files.
    After the 'G' command, the system takes you back to the command prompt.
    {arch@homedir}$ make ***WAIT A WHILE, COULD TAKE A BIT LONGER ON SLOWER SYSTEMS!***
    {arch@homedir}$ sudo make install  (Or 'su -' to root, then do 'make install'; your preference.  I prefer using sudo.)
    {arch@homedir}$ sudo ldconfig  (Or 'ldconfig' if still at root prompt #)
    {arch@homedir}$ kvirc (or 'kvirc &' if you don't want the terminal window to hold onto the process.)
    Kvirc should run at this point, but I ran into a couple of problems.  Once during the ccmake configuration (which prevented ccmake from configuring), and at the end, which prevented kvirc from running.)
    The first had to do with two (2) packages that were not installed.  The were, as follows:
    qt5-webkit
    qt5-multimedia
    I installed those files, then did the  'ccmake ..' portion.   That ran fine, as well as the 'make' and 'sudo make install' and 'sudo ldconfig' parts.
    What didn't work was when I tried to run kvirc.  I got the following error:
    {arch@homedirc}$ kvirc
    kvirc: error while loading shared libraries: libkvilib.so.4: cannot open shared object file: No such file or directory
    I remember, back when kvirc was wanting Qt4, and not Qt5, that if I didn't do the first 'sudo ldconfig' command before trying to run kvirc, it would give something similar.  However, since this compile run was wanting Qt5, and not qt4, I was puzzled.
    Well, it turned out to be something quite simple.  This is a non-standard process of software installation on a new(er) arch system.  The 'uname -r' command on my system yields the following:  3.15.4-1-ARCH .  It is no surprise, then, that at this late date, Qt5 is complete (or at least more complete) than back in 2013 when I had the original problems, and had to select the 'WANTS-QT4' section during the 'ccmake ..' command.
    **** Building kvirc this way places the kvirc binary in /usr/local/bin, and a certain 'libkvilib.so.4' library in /usr/local/lib ****.
    This is to be expected from a standard source compile on most gnu/linux systems; and this *is* a standard compile, even though we're using the 'ccmake ..' command to do the preliminary configuration and cmakefile generation.)
    The problem is, is that Arch is looking for libkvilib.so.4 in /usr/lib, and not /usr/local/lib.  So the following was, for me, the solution that got everything squared away:
    I made a symlink in /usr/lib to /usr/local/lib/libkvilib.so.4, like this:
    {arch@homedir}$ cd /usr/lib
    {arch@homedir}$ sudo ln -s /usr/local/lib/libkvilib.so.4 libkvilib.so.4
    After doing this, I did:
    {arch@homedir}$ kvirc (or kvirc &)
    And It Ran Beautifully! :-)
    I hope you've enjoyed this HOWTO.  I know most people may just want to use the 4.2.x version of kvirc, currently residing safely in the standard repositories.  However, if you're like me, and want a bit of bleeding edge, Qt5 goodness with kvirc, I might suggest doing the above!
    I can be reached at firefishe At gmail DOT com if anyone has any questions.
    Last edited by Firefishe (2014-07-11 09:23:20)

    Hi Dareen,
    Looking at the information shared and also the error message ( Update Failed,Updates could not be applied.Please contact your Administrator if you wish to apply updates on your machine. Updates have been suppressed by the Administrator.If the problems persist, contact customer support for further assistance" ),
    It suggests that the updates were to be managed by the Admin only. Lets try the following step and suggest if this was able to resolve the concern that you have or not.
    1) Navigate to C:\Program Files (x86)\Common Files\Adobe\AAMUpdaterInventory\1.0 and you will find a .dat file ( AdobeUpdaterAdminPrefs.dat).
    2) Please open the file in question and you will find a line item : <Suppressed>1</Suppressed> .
    3) Please change the Value from 1 to 0 and save the file back in the same location.
    post the above step, try the installation once again and share the end result please.
    Cheers,
    Kartikay Sharma

  • 9iAS Standard install problem (can't connect)

    I've attempted the Standard install several times, with different settings to try to get it to work. At the end of the install - when the install gui progress bar reads 100% - a sql*plus session is attempted via a DOS window, presumably to run some configuration scripts. This session has never made a valid connection, so the scripts never run. I can connect to my db via sql*plus, so I'm not sure where the problem is. Any pointers on this? Can I run these scripts outside of the installer? If so, what scripts?

    I am currently having the same problem with the 8i Install on a clean Solaris 8 Box. The problem is the tnsnames file is not being updated properly and cannot connect to the DB. Error ORA-03114. They have a "default" name for the DB. You can create the DB by running the createdb command with a .sql file of the DB files to be created(redo logs, db size etc.). Then run the netassist to create/update the tnsnames file with the connection you need.
    Gary is correct about the tnsnames file, but the installer still may not work.. It did not work for me.
    Good Luck.

  • DMS 5.4 Lab (Demo) Non-Standard Install

    OBJECTIVE:
    Install 5.4 on lab equipment available.
    CURRENT STATUS:
    I have the software for v.5.4 (iso images, with demo licenses, below are exact versions),
    DMM-5.3.0.244.iso
    DMS-UPG-LATEST-5.4.0.736.iso
    IDEAL & UNLIKELY SOLUTION:
    Install ESXi and then create a VM, then install to the VM, or use something like this.
    POTENTIAL COMPROMISE:
    I have been advised to try and "Trick" the installer program, and install directly to the bare metal.
    QUESTIONS:
    Can anyone here advise me on what to try first, best options, and last ditch effort?
    Could I potentially get this to install on bare-metal, non-standard extra hardware (I've got 2 boxes sitting around, both are PRIME-NCS-APL-K9)
    Any additional advise or reference URL/Docs you might offer?
    REFERENCE URLs:
    DMS Install Guides (including 5.4):http://www.cisco.com/en/US/products/ps6681/prod_installation_guides_list.html
    PID VID PRIME-NCS-APL-K9 V01http://www.cisco.com/en/US/docs/wireless/ncs/appliance/install/guide/primencs_qsg.pdf
    HARDWARE REQUIREMENTS for DMM 5.4 VM:
    http://www.cisco.com/en/US/docs/video/digital_media_systems/5_x/5_4/dmm/vm/dmm54x_vm.html#wp44238

    Thank you Marco.
    I'm a bit curious though if anyone has gotten the OVA converted/imported to Hyper-V or Xen?  (wouldn't that be lucky?).  As it is, I've got the OVA DMM VM, and a demo license of ESXi and working on getting this up and running now in lab now, to see if it still works with InformaCast alerts.

  • JRE or SDK install problem - installing in non-std dir

    I'm encountering a problem trying to install either the JRE or SDK into a non-standard directory (one that's not the default of c:\j2sdk1.4.2_01 or what have you). This is occuring with both 1.4.2_01 and 1.4.2_02.
    In this case, I'm trying to install it in a directory similar to c:\progra~1\compan~1\produc~1\jre. (Short names b/c I can't figure out how to do long paths silently, but that's a whole different issue).
    The install nears the end and then presents the user with a "Java(TM) Update (1.4.2_01-b06) cannot be installed on this machine because the Java(TM) Virtual Machine is currently running. Please close all running Java(TM) applications, especially browsers. [RETRY] [CANCEL]" message.
    There's definitely not a JVM running at the moment. If I click Cancel, the install finishes up and there is a workable install there. But why the prompt? Since this is a silent install within another install, it will cause concern for my customers.
    The last few lines of my setup file:
    Action start 19:16:59: removesdkpackfiles.
    Action ended 19:17:00: removesdkpackfiles. Return value 1.
    Action start 19:17:00: unzipdemos.
    Action ended 19:17:15: unzipdemos. Return value 1.
    Action start 19:17:15: copysrczip.
    Action ended 19:17:19: copysrczip. Return value 1.
    Action start 19:17:19: patchsdk.
    Error 1722.There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action patchsdk, location: C:\Program Files\Common Files\Java\Update\Base Images\j2sdk1.4.2-b28\patch-j2sdk1.4.2_02-b03\patchsdk.exe, command: -s "C:\PROGRA~1\COMPAN~1\PRODUC~1\jre\"
    Action ended 19:17:35: patchsdk. Return value 3.
    Action ended 19:17:35: INSTALL. Return value 3.
    === Logging stopped: 10/23/2003 19:17:35 ===
    The command line to kick off the install:
    j2sdk-1_4_2_02-windows-i586-p.exe /s /v\"/qn ADDLOCAL=ALL IEXPLORER=1 INSTALLDIR=c:\progra~1\compan~1\produc~1\jre /L \jresetup.log"
    Has anyone encountered this? I've narrowed it down to the fact that it's an install into a directory that's not the default. If I run the install without specifying the INSTALLDIR, everything works fine. Help is appreciated!

    See the original posting and comments in http://forum.java.sun.com/thread.jsp?forum=14&thread=462167 and the bug http://developer.java.sun.com/developer/bugParade/bugs/4953793.html
    Rebooting has no effect whatsoever on this problem; even if you can now get the SDK installed, a non-administrative account won't be able to use the JRE in it, nor will the user be able to use the other JRE installed in the default location.

  • Can't find CC when install to non-standard location

    When I installed Sun Studio Express February 2007 to a non-standard location via the installer program, upon start of the IDE, it says it can't find the CC program. I have set my path properly.
    I fixed this problem by just mounting: mount -F lofs /export/sunstudio/SUNWspro /opt/SUNWspro and restarting the IDE (after updating my paths to /opt/SUNWspro/bin of course)

    This is weird, I have Sun Studio EA installed in /opt/12 and it has no problem locating compilers... The only difference is that I didn't use installer, I downloaded a .tar file.

  • CSS 11501 ftp server setup problem using non-standard port

    Dear Expert,
    we would like to setup FTP server over CSS where our member sever use non-std-port to open both control/data channel (i.e. 6370 as ctrl and 6369 as data this case.) but seems we only get Passive mode FTP mode work only but not for Active mode FTP case for data channel establishement for server back to client...is there any professional advise can help on this case...? here is our setup info FYI
    #  sh ver
    Version:               sg0820501 (08.20.5.01)
    Flash (Locked):        08.10.1.06
    Flash (Operational):   08.20.5.01
    Type:                  PRIMARY
    Licensed Cmd Set(s):   Standard Feature Set
                           Secure Management
    CVDM Version:          cvdm-css-1.0_K9
    !*************** Global
    ftp data-channel-timeout 10
      ftp non-standard-ports
    !************************** SERVICE **************************
    service ftp_ftpgtw
      keepalive maxfailure 2
      keepalive frequency 15
      keepalive retryperiod 2
      keepalive type tcp
      ip address 192.168.52.170
      protocol tcp
      keepalive port 6370
      port 6370
      active
    # sh run group drfusegtwftp_grp 
    !*************************** GROUP ***************************
    group gtwftp_grp
      vip address 192.168.52.28
      add service ftp_ftpgtw
      active
      content ftp_gtwpkg-ftpgtw
        add service ftp_ftpgtw
        vip address 192.168.52.28
        port 21
        protocol tcp
        application ftp-control
        active

    Thanks for your confirmation on no prob found in config level 1st..:P..as to save us a lot of time in isolating problem at this level.
    What we can notice is seems the data port connection is fail to open  for server back to client....for our general sense..... the flow expected should be:
    TCP session A -- Client:1234 --> VIP:21 --> member svr:6370
    TCP session B -- Client: 5678 <--> VIP:20 <--> member Svr: 6379 [on demand generated between server/client]
    but we can only see session B fail  to setup when client side access VIP site on CSS..even we try to put the most standard case as below
    TCP session A -- Client:1234 --> VIP:21 --> member svr:21
    TCP session B -- Client: 5678 <--> VIP:20 <--> member Svr: 20
    we still unable to make the Active mode FTP access work either...hence we got no idea on how CSS handle FTP access when it involve services over multiple tcp ports..
    and from CSS xlate view...the problem is we can only see what NAT IP that used in CSS connect to client...but no way to confirm for which port for VIP using outgoing to client. neither it is dropped by CSS..nor it is never setup from VIP to Client side.

  • How to solve sync problem between Outlook calendar and iPhone when reminder is set to _some_ non-standard values?

    Hi,
    I am having a sync problem between my iPhone/iPad and Outlook calendar events (Outlook 2010).
    Here is the description of the problem:
    1. In Outlook - please create a new event/appointment (e.g. "Test").
    2. Reminder is set by default to 15 minutes. You can change it by using a dropdown menu - please select: "0,5 days".
    3. Click on "0,5 days" and change it manually to "14,5 days".
    4. Click on "Save & Close".
    5. (Do not snooze or dismiss the reminder.)
    6. Sync with your iPhone/iPad.
    7. Open this new event on iPhone/iPad - you can see that alert is set to "15 minutes before" instead to a correct value that was set in Outlook.
    The same problem can be seen if you set the reminder to e.g. "3 weeks" (standard value is "2 weeks").
    However, it is interesting that non-standard values like "1,5 days" (and all other until "13,5 days") are synced without any problem.
    Does anyone have a solution how to solve this problem (different than the trivial solution of not using those strange values)?
    Thanks!

    Thanks to another post (https://discussions.apple.com/message/17501071#17501071) I reset the sync history, here is what to do: 
    Launch iTunes.
    Before you hook up your iPhone to the PC and iTunes do this: Go to iTunes Edit menu > Preferences… > select the iPhone > click the Reset Synch History button > click OK.
    Connect the iPhone to the PC and let iTunes recognize it.
    In the top right corner is the iPhone icon, click on the left side of the iPhone icon > the iPhone menu launches.
    In the menu along the top click on Info > make your selections > click Sync button > it gives you a dialog at the top with the steps it’s going through during the sync.
    In the top left of the iTunes app > click Exit.

  • Workflow Aproval - Non standard (Problem in the Worklist - bbpbwsp)

    Helo,
    I have build one approval workflow to the process bid invatation. In this workflow i have one task (non-standard) where the user can approve de process.
    The client use de ITS SRM, the worklist used is the BBPBWSP.
    When the Workflow start, the approval task appears in the worklist, but when i execute this task, it is open initial menu SAP. Not using our service Z.... instead /scripts/BBPAPPROVAL/...
    Can anyone help me?

    Hi
    <u>I know the ITS Debugging makes quite a life easy for some of the cases, like this.</u>
    <i>By the way, which SRM version are you using ?</i>
    <u>Anyways, will give you details, how to enable the ITS debugger in your system. Ask your BASIS person to help you out in this case.</u>
    <b>Note 451292 - How to use ITS debugger
    Note 304371 - RFC debugging set in service file BBPUSERMAINT
    Note 392570  - EBP: Required data on the problem processing
    Note 893425 - MIME type with attachments
    Note 954135  - Instructions for debugging workflow activities
    Note 903200 - Workflow tracing for problem detection
    Note 995328 - Extended System Status Information for SAP SRM</b>
    Hope this will help.
    Please reward suitable points, incase it suits your requirement.
    Regards
    - Atul

  • Help needed to install Flash Player : 'Non-Current Release' problem!

    I been encountering problems while trying to install Flash Player on my laptop running Windows 7.
    Originally Flash Player does not work as I understand it is not supported on 64-bit Internet Explorer.
    After installing 32-bit IE, the following issue of 'non-latest version' arises and all installation were aborted by the application :
    The below were steps I had taken to no success.
    1.  Via the 32-bit browser, downloaded flash player un-install program and did the uninstallation with success.
    2.  Rebooted the laptop.
    3.  Via the 32-bit browser, downloaded the flash player version 10.0.45.2 from http://get.adobe.com/flashplayer.
    4.  After downloading it automatically did the installation with 100% completion.
    5. The program proceeded to activate the flash player with a webpage saying if the flash player is working properly, I should see a video and Flash Player's logo.
    6.  Before anything was displayed, an error message popped up to say I was trying to install a non-current version and that I should go to same webpage to download the latest version. The activation was then aborted.
    Tried many times but always encountered same problem and hence cannot proceed to use the flash player.
    Need assistance to diagnose the problem and to get Flash Player working on my laptop. Appreciate any help to get it working.
    Regards.

    Thanks to efforts of eidnolb and Bob, the installation of flash player into my laptop is now working .
    Bob's installer enabled the download successfully.
    Eidnolb's link in post 6 trigggered me that I may have previously installed the pre-release version 10.1, thereby leading to the 'non-current-version' problem too. Post in that link adviced to uninstall 10.1 using the pre-release uninstaller.
    I suggest others who had encountered this non-current release to uninstall first using that specific uninstaller, before attempting to install the most current release. I may have installed the 10.1 pre-release in desperation after failing numerous times trying to figure out why flash player does not install in browser not knowing its currently-non-support of 64-bit browser.
    Once again thanks for support, eidnolb and Bob.
    Cheers.
    Kelvin

  • Newby - Problems exporting non-standard characters to .CSV or tab delimited

    I am trying to export data from a table where many of the text fields contain non-standard characters like double quotes *["]* or *tabs*. If I *export to a .CSV* file, the embedded double quotes invariably foul up the alignment of the output columns and if I select a *tab delimited export*, the embedded tabs do the same thing.
    Is there anyway that I can specify the text delimiter to use so that I can select a character that is not used in the text (like, for example the tilde *[*]*)?
    I am using Discoverer 3.1
    Thanks in advance

    Hi,
    With a complicated export requirement like this it is often better to create a calculation that returns the fields in the required format as a single column e.g.
    col1||'~'||col2||'~'||col3
    Then you can just export the report as a text and get all the fields with the correct separators and replaced characters.
    Rod West

  • Install Problems with CF MX7 Standard on IIS 6

    I'm new to Cold Fusion, so forgive me if this is an easy one.
    I'm trying to setup a new CF MX 7 Standard install on a Win 2003
    SP1 IIS 6 fully patched (as of 9/7/06) server. It gets to the last
    stage of the install and fails at trying to create the web
    connectors. I read the docs and tried to follow along, but it can't
    find a Jrun server. Looking at the logs, it says it can't connect
    to 127.0.0.1 on port 2901 initially. When I telnet to loopback on
    that port, it responds just fine. IIS is fully setup and the
    default website is started. It's set with all the defaults, so if
    there's a special pre-req setting I need to change, let me know. I
    cross-checked over to a working CF MX 7 server and the default
    website security/scripting/etc seemed to be identical. It'd help if
    I knew what things to look for.
    I do have McAfee VirusScan installed on this server, but I
    disabled it just to see if that would fix the issue. It didn't. Are
    there any other "gotcha's" that I'm missing?
    Thanks in advance and sorry if this one's been asked already.
    I did a bunch of searching in the forum archives but didn't find
    anything useful. The docs are equally unhelpful in this instance.
    jb

    No windows firewall, there is a physical firewall in front of
    that server, but all of this traffic should be internal, right?
    If I use the manual configurator, I get a screen telling me:
    Could not connect to any JRun/ColdFusion servers on host
    localhost.
    Possible causes:
    - Server not running
    -- Start Macromedia Jrun4 or ColdFusion MX Server
    - Server running
    -JNDI listen port in jndi.properties blocked by TCP/IP
    filtering or firewall on server
    - host restriction in securtiy.properties blocking
    communication with server.
    Question: Is the ColdFusion install supposed to also install
    this MacroMedia JRUN4 server as a service? If so, it's not listed
    in the services panel. The Coldfusion MX 7 Application server and
    the ColdFusion MX 7 Search Server services are both started.
    I can telnet to 2190 and I get a blank screen, which seems to
    indicate that the JRUN server is starting, if I read the logs
    correctly.

  • CF11 install problem on WIndows server 2012 R2

    We have a new install windows server 2012 R2 with a new install CF11 standard installed on C drive. Everything is 64bit. The CF administrator site and login works fine.  cfm files will not serve up in the default directory, but IIS shows htm files fine.  CF administrator runs fine.
    Web Server Config tool will only show "None" in the IIS Web Site box.  The usual CGI, APS, etc have been installed on IIS.  In fact IIS and CF11 have been reinstalled.  wsconfig.exe manual run shows no errors.
    The problem is that any call to a cfm template results in an error (html pages serve fine):
    HTTP Error 500.0 - Internal Server Error
    The page cannot be displayed because an internal server error has occurred.
    Detailed Error Information:
    Module       IsapiModule
    Notification       ExecuteRequestHandler
    Handler       cfmHandler
    Error Code       0x8007007f
    Requested URL       http://localhost:80/default.cfm
    Physical Path       C:\inetpub\wwwroot\default.cfm
    Can anybody give any suggestions for troubleshooting?  No logs seem to show any information that helps.

    Fixed the problem......... it is not a CF problem alone but and mostly an IIS problem ....
    1) remove IIS completely...... including the inetpub directory..... remove .NET Extensibility from server manager under Application Development if inetpub in use error is present... inetpub has to be deleted.
    2) reboot
    3) reinstall IIS and enable all the usual stuff, ie, CGI, ISAPI, .NET, ASP , WebSocket Protocol, etc under Application Development
    4) restart IIS and CF
    5) Set Web Server Config to  "All"
    60 restart IIS and CF
    The trick to completely reinstall IIS and that is only done if you can delete the inetpub folder under root drive.

  • Non-standard Oracle Installation

    Hi in our env there are few Oracle Installations are non-standards, without Ora-Inventory, that was created by just tar-untar of existing oracle home and that's it.......what would be effect in the future for that kind of env, like for applying CPUs or any other maintenance

    I use this method only.It's not a problem to copy oracle home.Make sure you don't loose your local inventory i.e inventory directory (most probably in your oracle home directory) .And do one more thing copy OraInventory directory from the server from where you have copy your home and place it anywhere in this server.And make an entry oraInst.loc pointing to that OraInventory directory.Then there won't be any problem.
    Basically how opatch works:-
    1. Search Central inv. to see if Oracle home is registered or not.
    2. If yes go to that path taken from central inv. look for all stuff there itself and install.

  • In FireFox 9, loading secure web pages running on non-standard ports works just fine. In FireFox 10, those same pages do not load and a "The connection was reset" message is displayed.

    How can this be fixed so functionality returns as per FF9 and below?
    This occurs on any secured website running on a non-standard port, with FF10.

    < X-Post from https://support.mozilla.org/en-US/questions/917315#answer-315144 >
    I don't think this is restricted to Firefox. I've noted this behaviour with IE9, Firefox 10.0.2, Opera Mobile (on my phone) and Chrome(latest version) with my Linksys E3000 router (I access it from https://<IP>) and my 3ware RAID card management suite, 3DM2 (I access it from https://localhost:888 ).
    Notably, the only thing amiss that I've been able to see in the certificates (I'm no expert) is that the one from Linksys has issue and expiry dates in 1969 and 1970 respectively. However, I don't think this is the cause since 3DM2 has proper looking issue dates and has the identical problem.
    Coincidentally, I noticed this happening after a fresh reinstall of Windows 7 x64 with virtually nothing installed on it (FF, Office 2007), so I don't think it's something wrong with the other software on the machine.

Maybe you are looking for

  • Add line to address book?

    I know it's possible to add a line to a contact's street address but how can I add a line for a town or a suburb? I've looked in abaddressformats.plist and there seems to be a possibility but everything I've tried seems to be ignored by address book.

  • C55D-a5170 laptop, opening the lid!

    Just bought my 1st laptop ever this morning and have dumb question.  I can't find anywhere in the quick start quide or online manual as to how you open the lid on this!!  There appears to be 2 buttons on the left and right hand side of the front, but

  • Reinstalled OS 10.6  can I retrieve software from the saved "old system" or do I need to reinstall?

    Is there a way of dragging my software such as Adobe CS and Microsoft from the old system to the new system

  • Query server name where a BLS tran is executed ?

    Hi all, is there a possibility to query the server name where a BLS transaction is executed from within the transaction? Use: The transaction should be able to decide if called on a test server or in production. I am looking for a logic that lets the

  • Copy values when new action is created

    Hi, In ERP with SAPgui there was nice feature : when one document was created with reference most data were copied (and in customizing it was possible to set what exactly should be copied). In CRM Webclient UI I have following problem: 1. If I check