Loading the third party modules in oracle http server

Hi ,
I installed a software and after installing it we will get one so file (ds-wac-apache2.2.so). I want to load that module (ds-wac-apache2.2.so file name) in oracle http server.
I used the LoadModule directive but it doesnt work.
Can anyone help me regarding these?

Hi,
My third party software was installed in the below folder,
/home/oracle/Symphony/WAM/WebEnforcementAgent/
and i tried to load the module by using the command LoadModule in httpd.conf which is located in the $ORACLE_INSTANCE/config/OHS/ohs
LoadModule ds_wac_module "/home/oracle/Symphony/WAM/WebEnforcementAgent/ds-wac-apache2.2.so"
after adding the above line in httpd.conf below url is not working.
http://(ipaddress of oracle machine):7777/
regards,
suresh G

Similar Messages

  • [svn:fx-trunk] 11488: Resubmitting binary distribution of xercesPatch. jar from the third party module in the SDK and compiled it with Sun JDK 1.4 .2_12.

    Revision: 11488
    Author:   [email protected]
    Date:     2009-11-05 17:10:10 -0800 (Thu, 05 Nov 2009)
    Log Message:
    Resubmitting binary distribution of xercesPatch.jar from the third party module in the SDK and compiled it with Sun JDK 1.4.2_12.
    QE notes: N/A
    Doc notes: N/A
    Bugs:
    SDK-16818 - Must open-source the code for xercesPatch.jar.
    Reviewer: Discussed with Gordon
    Tests run: Checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-16818
    Modified Paths:
        flex/sdk/trunk/lib/xercesPatch.jar
        flex/sdk/trunk/modules/thirdparty/xerces-patch/build.xml

    Did you try this:
    http://forum.java.sun.com/thread.jsp?thread=434718&forum=60&message=1964421

  • Where do I find the Third-Party Software for Oracle BRM ....

    Hi all. I am trying to find the Third-Party software as outlined here:
    http://docs.oracle.com/cd/E16754_01/doc.75/e16706/ins_ismp_perl_jre.htm#g1000844
    I cannot find it to download and install (for Oracle Linux 64), can anyone tell me where this package is located?
    Thanks,
    mlh
    Edited by: 958085 on Sep 10, 2012 5:44 AM

    Most likely you will find this software in https://edelivery.oracle.com (under Oracle Communications Applications for your OS) - pl open an SR in My Oracle Support to confirm
    HTH
    Srini

  • Installation of the VeriSign digital certification in Oracle HTTP Server

    I am not obtaining to generate to the pair of keys and the CSR in Oracle HTTP Server, will have some tip I is thankful.
    Thanks
    Leandro

    Hi Leandro,
    Here are some steps to setup digital certificates into Oracle HTTP Server for Unix.
    1. The temporary working directory is /u01/tmp/myssl.
    2. The contents of <9iAS_HOME>/Apache/open_ssl/bin have been copied to the
    temporary working directory created in Assumption #1.
    3. SSL file names are priv.key (private key), certreq.csr (certificate request),
    and cert.crt (SSL certificate). The actual SSL certificate file could be
    named other than 'cert.crt'.
    4. By default, SSL is configured using port 443, which requires ROOT access to
    start the web listener.
    If you want to change this from the default port, you will need to change
    the following two parameters in the httpd.conf file to an unused port number:
    Listen 443
    <VirtualHost default:443>
    5. All necessary UNIX environment variables are set correctly for your Oracle
    product before implementing these procedures.
    6. User must be familiar with UNIX concepts like shell navigation, UNIX
    environments, file manipulation/search, file copy/backups, etc.
    How to Request and Configure an SSL Certificate for Oracle9i Application Server
    Step-by-Step Instructions:
    1. Change your present working directory to the temporary working directory, e.g.,
    /u01/tmp/myssl. Ensure the contents of <9iAS_HOME>/Apache/open_ssl/bin have
    been copied into this temporary working directory.
    2. Copy 5 large files, each at least 250KB, into your temporary working directory.
    Suggest looking in any /bin directory for large sized binary files. Execute
    the following command to generate the random character file:
         % openssl md5 * > rand.rnd
    3. Execute the following command to generate the private key (priv.key):
    % openssl genrsa -rand rand.rnd -des3 1024 > priv.key
         - when prompted, enter a "PEM pass phrase" password
         - re-enter password when prompted to verify password
         -- remember the pass phrase password you entered
         - this command generates the priv.key file and associated pass phrase
         - set permissions on the priv.key file to prevent unauthorized editing
         % chmod 400 priv.key
         - backup the priv.key file to a secure location
    NOTE
    The PEM pass phrase must be at least 4 characters in length. Remember this
    pass phrase, you will be prompted to enter it in the next step and each
    time you start up the Oracle HTTP Server (OHS) in SSL mode.
    Optionally, you can unencrypt the value of the private key, so that you
    will not be prompted for the PEM pass phrase every time you start up OHS
    in SSL mode.
    To unencrypt the private key, execute the following two commands (Note:
    ensure file permissions set to r+w):
         % cp priv.key priv.key.bak
         % openssl rsa -in priv.key.bak -out priv.key
    - the demo certificate shipped with Oracle9iAS does not require a pass
    phrase to start OHS in SSL mode.
    - on UNIX, to generate the certificate request and start OHS in SSL mode,
    the pass phrase must be entered, unless you executed the above steps
    to unencrypt.
    - on Windows NT/2000, if a certificate is used that has a pass phrase,
    the OHS will hang; therefore, on Windows NT/2000, you must execute
    the steps to unencrypt.
    4. Execute the following command to generate an SSL certificate request
    (certreq.csr) based on your private key.
         % openssl req -new -key priv.key -out certreq.csr -config openssl.cnf
         - when prompted, enter the "PEM pass phrase" set when the private key
    was created.
         - when prompted, enter the requested fields that make up the
    Distinguished Name.
         -- each entry must be valid information, i.e., email, state, location, etc.
         - when prompted for the "Common Name", you MUST enter the fully
    qualified name which will be accessed via client browsers; e.g.,
    if clients will use:
    https://mysite.domain.com
         -- then, you must enter mysite.domain.com as the "Common Name"
         - the requested 'extra' attributes, i.e., "challenge password" and
    "optional company name", are OPTIONAL; just hit ENTER to use NULL values.
    5. You should now have the private key and certificate request files (priv.key
    and certreq.csr) in your temporary working directory.
    NOTE
    At this point, you can use your certificate request file 'certreq.csr' to
    order a valid SSL certificate from any CA-vendor, e.g., Verisign.
    After you receive your SSL certificate, skip to Step #6 for instructions
    on how to deploy your SSL files.
    OPTIONAL
    You can start 9iAS in SSL mode (see Step #12) and test the pre-installed demo
    certificate and private key included for testing purposes.
    It is a good idea to test to be sure the Oracle HTTP Server SSL mode works
    successfully before deploying your new SSL certificate. To try these demo
    files, access the 9iAS index page in a browser using the HTTPS protocol and
    the appropriate SSL Listen port. URL format:
    https://myhost.domain.com:<ssl_port>
    The user will see a Security Alert (IE), or New Site Certificate (Netscape)
    warning message, click Continue/Next to accept.
    OPTIONAL
    To create a self-signed certificate, execute the following commands:
    (csh) % setenv RANDFILE rand.rnd
    <sh or ksh> % export RANDFILE=rand.rnd
    % openssl x509 -req -days 30 -in certreq.csr -signkey priv.key > tempcert.crt
    - when prompted, enter the "PEM pass phrase" set when the private key was created.
    - this command generates a temporary self-signed certificate file 'tempcert.crt'
    valid for 30 days, which can be used while awaiting a valid SSL certificate
    purchased from an authorized CA-vendor.
    - if this option is used, after generating the 'tempcert.crt' file, skip to
    Step #6 for instructions on how to deploy your SSL files.
    OPTIONAL
    These steps are specifically for requesting a TRIAL certificate from the
    CA-vendor Verisign.
    - Go to www.verisign.com and click on "Free Guides and Trials" link and
    follow instructions to request a "Free Trial SSL ID". During this process,
    you will be asked to provide certificate request information.
    - Open the 'certreq.csr' file using your text editor of choice.
    - Starting with "-----BEGIN NEW CERTIFICATE REQUEST-----" copy all lines
    including the BEGIN and END of certificate lines.
    - Paste this copied data into the Verisign page where requested and continue.
    - You will see the Verisign web site decode your certificate request
    information. This decoded information is presented to you to verify it is
    correct. If it is, then continue with the process.
    - You will be presented with another set of questions from Verisign. Be sure
    to answer with the correct email address, as this address will be used to
    send your SSL certificate.
    - After you answer all these questions, you will be sent a TRIAL 14-day
    SSL certificate via email.
    - WARNING! You must follow this step carefully, you cannot copy and paste
    information from an email to a new text file. After you get your TRIAL
    certificate, save the entire email message to a text file. Open this file
    using your text editor of choice. You will see the email address header
    information and the line:
    -----BEGIN CERTIFICATE-----
    - Delete all text that appears before the -----BEGIN CERTIFICATE----- line.
    The modified file should contain only certificate information. After you
    delete the email header, save this text file inside your temporary directory
    with the filename 'trialcert.crt'.
    6. Now you are ready to configure Oracle9i Application Server (9iAS) with your
    SSL certificate files.
    7. Back up your existing <9iAS_HOME>/Apache/Apache/conf/httpd.conf file.
    8. Open the httpd.conf file with your text editor of choice.
    9. Edit the following httpd.conf directives to use your generated private key
    and SSL certificate file, which could be the filename for either the
    temporary self-signed certificate, the TRIAL test certificate, or the
    purchased valid certificate. The information following the # symbol are
    comments.
    NOTE
    The directory of the SSL files (private key and certificate file)
    can reside in any location you choose. The temporary working
    directory will continue to be referenced in these procedure steps.
    # use the appropriate (i.e., valid, temporary, or trial) certificate filename
    SSLCertificateFile /u01/tmp/myssl/tempcert.crt
    #private key from Step #4 above:
    SSLCertificateKeyFile /u01/tmp/myssl/priv.key
    10. Save your modified httpd.conf and exit the text editor.
    11. Log in as authorized user (if default ports 80 and 443 are used, ROOT user
    must execute commands in next step).
    12. Execute the following command to stop, then start Apache in SSL mode
    (ensure proper UNIX environments are set; else, execute command from
    <9iAS_HOME>/Apache/Apache/bin.)
    For Oracle8iAS 1.x:
    % httpdsctl stop
    % httpdsctl startssl
    For Oracle9iAS 1.0.2.x:
    % apachectl stop
    % apachectl startssl
    - when prompted, enter the "pass phrase" created in Step #3.
    -- not required if you unencrypted the private key file
    - when the Oracle HTTP Server starts successfully in SSL mode, access the
    9iAS index page in a browser using the HTTPS protocol and the appropriate
    SSL Listen port. URL format:
    https://myhost.domain.com:<ssl_port>
    - if using a temporary self-signed or TRIAL test certificate, the user will
    see a Security Alert (IE), or New Site Certificate (Netscape) warning message,
    click Continue/Next to accept.
    ====================
    I hope this help !!
    Ilan Salviano

  • What is the realtion Fusion Middleware and Oracle HTTP Server?

    Hi,
    Can someone explain me why is WebLogic necessary to administrate graohically the Oracle 11g HTTP Server?
    What means what I found in the documentation:
    "To display Fusion Middleware Control, you enter the Fusion Middleware Control
    URL, which includes the name of the WebL
    ogic Administration Server host and the
    port number assigned to
    Fusion Middleware Control during the installation"
    Does this means that Weblogic need to be installed and configured?
    Kind regards.

    Hi,
    If you want to control OHS via GUI then deploying Oracle Enterprise Manager FMW Control is the only option.
    And for the same you need to have weblogic, bcoz  OEM FMW control would be deployed as an application on the weblogic server.
    If you are going to use other products in FMW stack (Example: Forms and reports services 11g), then complete administration would be done through FMW control.
    Monitoring and administering your weblogic clusters, ohs, webcache everything can be done though single interface.
    Please do not go with assumption that only from GUI all these things can be done, command line is the best thing and the option is there.
    Consider this only as an enhancement.
    Regards,
    Nithin R

  • Need to download - Oracle HTTP Server 10.1.3.3 (based on Apache 2.2)

    Hi,
    I need to install Siebel Application on Linux-64 bit, for which I have to use Oracle HTTP server as my web server.
    The system requirements guide for Siebel mentions that I will need - Oracle HTTP Server 10.1.3.3 (based on Apache Web Server v2.2 or above).
    But I am unable to find Oracle HTTP based on Apache Version 2.2 or above, instead I am able to find Oracle HTTP 10.1.3.3 based on Apache 1.3.
    Can anyone direct me to the appropriate place to find Oracle HTTP Server 10.1.3.3 (based on Apache Web Server v2.2 or above)

    http://www.oracle.com/technology/software/products/ias/htdocs/101310.html

  • Oracle HTTP Server Support Dates

    What are the lifetime support dates for Oracle HTTP Server 10gR3 ?
    Thanks, Richard.

    Yes, Oracle HTTP Server will communicate to the J2EE container (OC4J) via mod_oc4J. It is completly supported starting 9.0.2, out of box.
    Regards
    Pavna Jain
    Oracle9iAS Product Management Team

  • What are the third party tools available for Encryption in Oracle database?

    Dear All,
    Can you please help me with the below question?
    What are the third party tools available for Encryption in Oracle database? Please let me know if you know their feedback and also licensing/cost information

    Why would you spend money to purchase a third-party tool that will be, almost by definition, less secure than the tools inside the product you already own and paid for?
    http://www.morganslibrary.org/reference/pkgs/dbms_crypto.html
    But were I to have any to recommend one I would not do so without knowing information you seem to consider unimportant such as:
    1. Operating system
    2. Database edition and version
    3. What type of data needs to be secured
    4. What level of security is required

  • Integration of Oracle Apps with the Third Party Label Printing Software

    Hi,
    I am integrating Oracle Apps R12 with the third party Label Printing Software(Bartender).
    For generating the Label, I have to create the XML file in Oracle Apps and with the help of Oracle WMS i have to transfer the XML file to the TCP/IP Port.
    Third Party Label Printing Software will pick the file from the TCP/IP Port.
    I am not able to find the way to send the XML file generated by the concurrent program to the TCP/IP Port using Oracle WMS.
    Below are the few links for Oracle WMS:
    http://docs.oracle.com/cd/B25284_01/current/acrobat/115wmsug.pdf
    http://docs.oracle.com/cd/E18727_01/doc.121/e13434/T210618T210847.htm#T210864
    Thanks In Advance..

    Hi,
    I assume, i have already setup profile 'WMS: Label Print Mode' to Synchronous - TCP/IP.
    Basically, you dont have to create any concurrent program for XML creation, Oracle will do it for you 'out of box'.
    Also set 'WMS: Synchronous TCP/IP label request delay' to 100, this is a required step, though none of the documentation talks about it.
    if you think that all the requests are not handled correctly, then you will need to increase this delay further.
    Lastly, verify that the printer is setup correctly in Oracle (Place where you specify IP Address and port)
    Thanks,
    Hrishikesh

  • Integration of Oracle Apps with the Third Party Label Printing Software(Bar

    Hi,
    I am integrating Oracle Apps R12 with the third party Label Printing Software(Bartender).
    For generating the Label, I have to create the XML file in Oracle Apps and with the help of Oracle WMS i have to transfer the XML file to the TCP/IP Port.
    Third Party Label Printing Software will pick the file from the TCP/IP Port.
    I am not able to find the way to send the XML file generated by the concurrent program to the TCP/IP Port using Oracle WMS.
    Below are the few links for Oracle WMS:
    http://docs.oracle.com/cd/B25284_01/current/acrobat/115wmsug.pdf
    http://docs.oracle.com/cd/E18727_01/doc.121/e13434/T210618T210847.htm#T210864
    Thanks In Advance..

    Pl do not post duplicates - Integration of Oracle Apps with the Third Party Label Printing Software

  • Could not load the Multiprocessor Support module because it wont work with

    Here is a strange error message, there are actually 2.
    But they arent making PSE 8 unusable, just very annoying.
    Here is the first one,,,,,,,,,
    "Could not load the Multiprocessor Support module because it wont work with this version of photoshop."
    When I open PSE 8, on my new Intel Mac, I get this message and nobody seems to know what the problem is.
    My new Mac has 2 processors? Could that be what the message is saying?
    But when I click the error message away, PSE 8 works fine.
    There is another one too,
    "Could not load the FastCore Routines module because it doest not work with this version of photoshop."
    I just click it away and no problem, just a pita.
    So if they dont effect it, I shouldnt worry, but my classmates are concerned.
    Do you here have any idea what it is, and how to get rid of it?
    There is info on the web about it, but no solutions.
    Thank you,
    Jane

    This is interessting, as does my new Mac have 2 processors or 2 cores?  I havent come across how this works yet, nor how to find it on my Mac.
    Yes, I just found a site which explains it well,
    http://macperformanceguide.com/Optimizing-Cores.html
    I have one processor with 2 cores.
    And the equivalent of the Task Manager is the Activity Monitor, where I see only one processor.
    You sure explained this well!   I now think we can find the problem, though its not effecting either my PS or PSE, its just an annoying message that I have to click away.
    http://kb2.adobe.com/cps/407/kb407809.html
    Is what Adobe tells us, this is for Windows, but it could apply to Macs?
    I have tons of third party plug ins, and this problem is within the last month, and I didnt see the error messages before.  Thats confusing, as I would have thought it would have shown up right from the start.
    I just moved some of my plug ins, lets see if this changes anything, nope, but only one message appeared this time.
    This will be fun to see what the real answer is!  As I find out more, I will add it here.
    Thank you,
    Jane

  • Who will do benefit enrollment? third party or In sap itself? who is the third party vendor?

    who will do benefit enrollment? third party or In sap itself? who is the third party vendor?

    Hi Rakesh,
    Who should handle benefit enrollement depends on client requirement.
    In SAP Benefit Administration module we do have enrollment function.
    Here is the document
    http://help.sap.com/saphelp_46c/helpdata/en/7e/8a5f51545711d1891c0000e8322f96/content.htm
    Client may chose to only store benefit related information and take help of other third party vendor and use interfaces to communicate it to SAP for payroll and master data maintenance.
    Aon Hewitt is one of the well known vendors. Might be more not sure of all names.
    Hope it answers your question.
    Regards,
    Jignya

  • Using third party jars with Oracle Business Rules

    Hi
    I am working on Oracle AS 10g release 2.
    We are using Oracle Business Rules in integration with Oracle BPEL.
    While using third party jars however, Oracle Business Rules end is facing errors.
    Error during unmarshallingProvider com.sun.xml.bind.ContextFactory_1_0_1 not found
    oracle.classloader.util.AnnotatedClassNotFoundException:
    Missing class: com.sun.xml.bind.ContextFactory_1_0_1
    Dependent class: javax.xml.bind.ContextFinder
    Loader: oracle.xml:10.1.0_2
    Code-Source: /D:/oracleasr3/lib/xml.jar
    Configuration: <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in D:\oracleasr3\j2ee\home\oc4j.jar
    Can anybody help in figuring out where Jaxb jars(3rd party jars) are to be kept so that OAS access it?
    We tried using the applib folder to load the jars but we are getting class loading errors.
    When new instances are created, class loading is not happening.
    Pls help.
    Thanks
    Kavya

    Are you using Application Server Release 3 or Release 2? There are different versions listed in your mail.
    I think you probably want to add this as a shared library via EM and then import the shared library to your application with the application's xml config files.

  • Could not load the Bigger Tiles Modules

    I use Photoshop CS5 on iMac 3.06GHz IC2D with Lion 10.7.2. When I start Photoshop a Popup says : Could not load the Bigger Tiles Modules because it does not work with this version of Photoshop. Pity, but how to disable this Popup at every start ?

    Sure... I hope this helps and this is what you mean.  It is the case that I installed it fresh on a new machine, but maybe I checked a wrong box along the way.  I certainly have no reason to deny installing it any other way.  Regardless, it was only a slight annoyance and such an easy fix.
    Adobe Photoshop Version: 14.1.1 (14.1.1 20130910.r.414 2013/09/10:23:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:13, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 6
    Logical processor count: 12
    Processor speed: 4374 MHz
    Built-in memory: 32710 MB
    Free memory: 28757 MB
    Memory available to Photoshop: 29685 MB
    Memory used by Photoshop: 60 %
    Image tile size: 1024K
    Image cache levels: 4
    Display: 1
    Display Bounds: top=0, left=0, bottom=1200, right=1920
    Display: 2
    Display Bounds: top=0, left=1920, bottom=1200, right=3840
    OpenGL Drawing: Enabled.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    NumGPUs=1
    gpu[0].OGLVersion="3.0"
    gpu[0].MemoryMB=3072
    gpu[0].RectTextureSize=16384
    gpu[0].Renderer="Quadro K4000/PCIe/SSE2"
    gpu[0].RendererID=4602
    gpu[0].Vendor="NVIDIA Corporation"
    gpu[0].VendorID=4318
    gpu[0].HasNPOTSupport=1
    gpu[0].DriverVersion="9.18.13.2049"
    gpu[0].Driver="nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um"
    gpu[0].DriverDate="20130621000000.000000-000"
    gpu[0].CompileProgramGLSL=1
    gpu[0].TestFrameBuffer=1
    gpu[0].OCLSupported=1
    gpu[0].OCLVersion="1.1"
    gpu[0].CUDASupported=1
    gpu[0].CUDAVersion="4.2.1"
    gpu[0].glGetString[GL_SHADING_LANGUAGE_VERSION]="1.30 NVIDIA via Cg compiler"
    gpu[0].glGetProgramivARB[GL_FRAGMENT_PROGRAM_ARB][GL_MAX_PROGRAM_INSTRUCTIONS_ARB]=[65536]
    gpu[0].glGetIntegerv[GL_MAX_TEXTURE_UNITS]=[4]
    gpu[0].glGetIntegerv[GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS]=[192]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS]=[32]
    gpu[0].glGetIntegerv[GL_MAX_TEXTURE_IMAGE_UNITS]=[32]
    gpu[0].glGetIntegerv[GL_MAX_DRAW_BUFFERS]=[8]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_UNIFORM_COMPONENTS]=[4096]
    gpu[0].glGetIntegerv[GL_MAX_FRAGMENT_UNIFORM_COMPONENTS]=[2048]
    gpu[0].glGetIntegerv[GL_MAX_VARYING_FLOATS]=[124]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_ATTRIBS]=[16]
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_PROGRAM]=1
    gpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_PROGRAM]=1
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_SHADER]=1
    gpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_SHADER]=1
    gpu[0].extension[AIF::OGL::GL_EXT_FRAMEBUFFER_OBJECT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_RECTANGLE]=1
    gpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_FLOAT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_OCCLUSION_QUERY]=1
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_BUFFER_OBJECT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_SHADER_TEXTURE_LOD]=1
    Serial number: 90970468542907043447
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\
    Temporary file path: C:\Users\Amighty\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 223.2G, 140.5G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Required\Plug-Ins\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Plug-ins\
    Installed components:
       ACE.dll   ACE 2013/07/14-12:09:50   79.543790   79.543790
       adbeape.dll   Adobe APE 2013/02/04-09:52:32   0.1160850   0.1160850
       AdobeLinguistic.dll   Adobe Linguisitc Library   7.0.0  
       AdobeOwl.dll   Adobe Owl 2013/03/03-12:10:08   5.0.13   79.533484
       AdobePDFL.dll   PDFL 2013/03/13-12:09:15   79.499517   79.499517
       AdobePIP.dll   Adobe Product Improvement Program   7.0.0.1786  
       AdobeXMP.dll   Adobe XMP Core 2013/03/13-12:09:15   79.151481   79.151481
       AdobeXMPFiles.dll   Adobe XMP Files 2013/03/13-12:09:15   79.151481   79.151481
       AdobeXMPScript.dll   Adobe XMP Script 2013/03/13-12:09:15   79.151481   79.151481
       adobe_caps.dll   Adobe CAPS   7,0,0,21  
       AGM.dll   AGM 2013/07/14-12:09:50   79.543790   79.543790
       ahclient.dll    AdobeHelp Dynamic Link Library   1,8,0,31  
       aif_core.dll   AIF   5.0   79.534508
       aif_ocl.dll   AIF   5.0   79.534508
       aif_ogl.dll   AIF   5.0   79.534508
       amtlib.dll   AMTLib (64 Bit)   7.0.0.169 BuildVersion: 7.0; BuildDate: Mon Apr 8 2013 2:31:50)   1.000000
       ARE.dll   ARE 2013/07/14-12:09:50   79.543790   79.543790
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2013/07/14-12:09:50   79.543790   79.543790
       BIBUtils.dll   BIBUtils 2013/07/14-12:09:50   79.543790   79.543790
       boost_date_time.dll   DVA Product   7.0.0  
       boost_signals.dll   DVA Product   7.0.0  
       boost_system.dll   DVA Product   7.0.0  
       boost_threads.dll   DVA Product   7.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.1.6.30929   2.1.6.30929
       CITThreading.dll   Adobe CITThreading   2.1.6.30929   2.1.6.30929
       CoolType.dll   CoolType 2013/07/14-12:09:50   79.543790   79.543790
       dvaaudiodevice.dll   DVA Product   7.0.0  
       dvacore.dll   DVA Product   7.0.0  
       dvamarshal.dll   DVA Product   7.0.0  
       dvamediatypes.dll   DVA Product   7.0.0  
       dvaplayer.dll   DVA Product   7.0.0  
       dvatransport.dll   DVA Product   7.0.0  
       dvaunittesting.dll   DVA Product   7.0.0  
       dynamiclink.dll   DVA Product   7.0.0  
       ExtendScript.dll   ExtendScript 2013/03/21-12:10:31   79.535742   79.535742
       FileInfo.dll   Adobe XMP FileInfo 2013/03/19-12:09:02   79.151561   79.151561
       filter_graph.dll   AIF   5.0   79.534508
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       imslib.dll   IMSLib DLL   7.0.0.116  
       JP2KLib.dll   JP2KLib 2013/02/19-12:28:44   79.248139   79.248139
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libiomp5md.dll   Intel(R) OMP Runtime Library   5.0  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       LogSession.dll   LogSession   2.1.2.1785  
       mediacoreif.dll   DVA Product   7.0.0  
       MPS.dll   MPS 2013/03/15-13:25:52   79.535029   79.535029
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       PatchMatch.dll   PatchMatch 2013/06/11-12:08:08   79.542390   79.542390
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CC   CC  
       Plugin.dll   Adobe Photoshop CC   CC  
       PlugPlugOwl.dll   Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit)   4.0.1.34  
       PSArt.dll   Adobe Photoshop CC   CC  
       PSViews.dll   Adobe Photoshop CC   CC  
       SCCore.dll   ScCore 2013/03/21-12:10:31   79.535742   79.535742
       ScriptUIFlex.dll   ScriptUIFlex 2013/03/21-12:10:31   79.535742   79.535742
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       updaternotifications.dll   Adobe Updater Notifications Library   7.0.1.102 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   7.0.1.102
       WRServices.dll   WRServices Mon Feb 25 2013 16:09:10   Build 0.19078   0.19078
    Required plug-ins:
       3D Studio 14.1.1 (14.1.1 x001)
       Accented Edges 14.1.1
       Adaptive Wide Angle 14.1.1
       Angled Strokes 14.1.1
       Average 14.1.1 (14.1.1 x001)
       Bas Relief 14.1.1
       BMP 14.1.1
       Camera Raw 8.2
       Camera Raw Filter 8.2
       Chalk & Charcoal 14.1.1
       Charcoal 14.1.1
       Chrome 14.1.1
       Cineon 14.1.1 (14.1.1 x001)
       Clouds 14.1.1 (14.1.1 x001)
       Collada 14.1.1 (14.1.1 x001)
       Color Halftone 14.1.1
       Colored Pencil 14.1.1
       CompuServe GIF 14.1.1
       Conté Crayon 14.1.1
       Craquelure 14.1.1
       Crop and Straighten Photos 14.1.1 (14.1.1 x001)
       Crop and Straighten Photos Filter 14.1.1
       Crosshatch 14.1.1
       Crystallize 14.1.1
       Cutout 14.1.1
       Dark Strokes 14.1.1
       De-Interlace 14.1.1
       Dicom 14.1.1
       Difference Clouds 14.1.1 (14.1.1 x001)
       Diffuse Glow 14.1.1
       Displace 14.1.1
       Dry Brush 14.1.1
       Eazel Acquire 14.1.1 (14.1.1 x001)
       Embed Watermark 4.0
       Entropy 14.1.1 (14.1.1 x001)
       Extrude 14.1.1
       FastCore Routines 14.1.1 (14.1.1 x001)
       Fibers 14.1.1
       Film Grain 14.1.1
       Filter Gallery 14.1.1
       Flash 3D 14.1.1 (14.1.1 x001)
       Fresco 14.1.1
       Glass 14.1.1
       Glowing Edges 14.1.1
       Google Earth 4 14.1.1 (14.1.1 x001)
       Grain 14.1.1
       Graphic Pen 14.1.1
       Halftone Pattern 14.1.1
       HDRMergeUI 14.1.1
       IFF Format 14.1.1
       Ink Outlines 14.1.1
       JPEG 2000 14.1.1
       Kurtosis 14.1.1 (14.1.1 x001)
       Lens Blur 14.1.1
       Lens Correction 14.1.1
       Lens Flare 14.1.1
       Liquify 14.1.1
       Matlab Operation 14.1.1 (14.1.1 x001)
       Maximum 14.1.1 (14.1.1 x001)
       Mean 14.1.1 (14.1.1 x001)
       Measurement Core 14.1.1 (14.1.1 x001)
       Median 14.1.1 (14.1.1 x001)
       Mezzotint 14.1.1
       Minimum 14.1.1 (14.1.1 x001)
       MMXCore Routines 14.1.1 (14.1.1 x001)
       Mosaic Tiles 14.1.1
       Multiprocessor Support 14.1.1 (14.1.1 x001)
       Neon Glow 14.1.1
       Note Paper 14.1.1
       NTSC Colors 14.1.1 (14.1.1 x001)
       Ocean Ripple 14.1.1
       Oil Paint 14.1.1
       OpenEXR 14.1.1
       Paint Daubs 14.1.1
       Palette Knife 14.1.1
       Patchwork 14.1.1
       Paths to Illustrator 14.1.1
       PCX 14.1.1 (14.1.1 x001)
       Photocopy 14.1.1
       Photoshop 3D Engine 14.1.1 (14.1.1 x001)
       Photoshop Touch 14.0
       Picture Package Filter 14.1.1 (14.1.1 x001)
       Pinch 14.1.1
       Pixar 14.1.1 (14.1.1 x001)
       Plaster 14.1.1
       Plastic Wrap 14.1.1
       PNG 14.1.1
       Pointillize 14.1.1
       Polar Coordinates 14.1.1
       Portable Bit Map 14.1.1 (14.1.1 x001)
       Poster Edges 14.1.1
       Radial Blur 14.1.1
       Radiance 14.1.1 (14.1.1 x001)
       Range 14.1.1 (14.1.1 x001)
       Read Watermark 4.0
       Reticulation 14.1.1
       Ripple 14.1.1
       Rough Pastels 14.1.1
       Save for Web 14.1.1
       ScriptingSupport 14.1.1
       Shake Reduction 14.1.1
       Shear 14.1.1
       Skewness 14.1.1 (14.1.1 x001)
       Smart Blur 14.1.1
       Smudge Stick 14.1.1
       Solarize 14.1.1 (14.1.1 x001)
       Spatter 14.1.1
       Spherize 14.1.1
       Sponge 14.1.1
       Sprayed Strokes 14.1.1
       Stained Glass 14.1.1
       Stamp 14.1.1
       Standard Deviation 14.1.1 (14.1.1 x001)
       STL 14.1.1 (14.1.1 x001)
       Sumi-e 14.1.1
       Summation 14.1.1 (14.1.1 x001)
       Targa 14.1.1
       Texturizer 14.1.1
       Tiles 14.1.1
       Torn Edges 14.1.1
       Twirl 14.1.1
       Underpainting 14.1.1
       Vanishing Point 14.1.1
       Variance 14.1.1 (14.1.1 x001)
       Variations 14.1.1 (14.1.1 x001)
       Water Paper 14.1.1
       Watercolor 14.1.1
       Wave 14.1.1
       Wavefront|OBJ 14.1.1 (14.1.1 x001)
       WIA Support 14.1.1 (14.1.1 x001)
       Wind 14.1.1
       Wireless Bitmap 14.1.1 (14.1.1 x001)
       ZigZag 14.1.1
    Optional and third party plug-ins:
       Alias PIX 11.0 (11.0x20080919 [20080919.r.488 2008/09/19:02:00:00 cutoff; r branch])
       ElectricImage 11.0 (11.0x20080919 [20080919.r.488 2008/09/19:02:00:00 cutoff; r branch])
       HSB/HSL 11.0 (11.0x20080919 [20080919.r.488 2008/09/19:02:00:00 cutoff; r branch])
       JPEG 2000 2.0
       SGI RGB 11.0 (11.0x20080919 [20080919.r.488 2008/09/19:02:00:00 cutoff; r branch])
       SoftImage 11.0 (11.0x20080919 [20080919.r.488 2008/09/19:02:00:00 cutoff; r branch])
       Texture Fill 11.0 (11.0x20080919 [20080919.r.488 2008/09/19:02:00:00 cutoff; r branch])
       Wavefront RLA 11.0 (11.0x20080919 [20080919.r.488 2008/09/19:02:00:00 cutoff; r branch])
    Plug-ins that failed to load: NONE
    Flash:
       Extensis
       Adobe Exchange
       Kuler
    Installed TWAIN devices: NONE

  • Could not load the bigger Tiles module

    Since i upgrade to Lion, Photoshop CS5 says it couldn't load the Bigger Tiles Module (?) because they don/t work with photoshop.
    OK, I may delete them... but where are they ?

    What you've most likely done is to copy plug-ins supplied by Adobe with an earlier version of Photoshop into your current Photoshop installation area, overwriting files provided with Photoshop CS5.
    If you can run Photoshop at all, make sure you save any customizations, such as brushes, actions, etc. that you have created first, before removing the application and deleting files.
    Then you're pretty much going to have to uninstall Photoshop, clear out any remnant folders, then reinstall it.  The files you overwrote can really only be recovered that way.
    There's a creative suite cleaner tool here:
    http://www.adobe.com/support/contact/cscleanertool.html
    Make sure before you reinstall that you look on your hard drive for any remnant files in the Photoshop installation area and remove them.
    After you get Photoshop reinstalled, to get all the plug-ins you need into it, do NOT copy whole sets of files from some old Photoshop folder.  Instead seek out versions of each plug-in that are compatible with the version of Photoshop you have and reinstall them properly.  For any 3rd party plug-ins for which you must copy files to install, make your own subfolder in the Plug-ins folder and copy just those 3rd party plug-ins there.
    There is no quick shortcut to doing this right.
    -Noel

Maybe you are looking for

  • Compatibility of an editor made in javascript with WebDynpro

    Currently we are using a textarea for the content for the text of a chapter in an application. Of course end-users would like to have a rich text editor since the result is stored as PDF file, so since we use MVC and BSPs our first thought was to use

  • Issue, cd/dvd drive not ready in time

    Hello, I am new to the Apple and OS X. So far I am impressed. One issue is bothering me however. It takes some time for the cd/dvd drive to go from sleep mode to active mode. This may take up to 10 seconds. Some programs will return a message that th

  • ABAP OO - Creating/copying interface

    Dear, I've lots of experience in 'native' ABAP, but I'm new to OO, hence these 2, perhaps somewhat strange questions. 1. When I look at a standard SAP interface using SE24 (e.g. IF_BCM_SAVE), I see it contains some methods, but I expect to be able to

  • Mapping condition in multi mapping

    Hi Experts, I have a 1:n multimapping where I have a mapping condition such that If the field is empty ith should throw an error. At the same time the n-1 records should be processed... The UDF i have used is if (a == "") throw new RuntimeException()

  • How to create a structure statically in webdynpros

    hi experts, after creating structure when we run the structure the contents of the structure will be diplayed for the first time if we run once again the contents won't be displayed . how to create structure so that elements should be as it is