Saprfc version for php 5.2.1

Hi all
  Can anyone pls tell me the version of saprfc to be installed for php version 5.2.1
Thanks in advance

The lastest version
on the SAPRFC How to
I assume you are using windows. If you are having hassles with getting it to work download a utility called <a href="http://www.dependencywalker.com/">dependency walker</a>.
You can use this to check if the php_saprfc.dll is missing a dependency.
I have been getting a dependency on DRVADODB.DLL on one particular machine and have had no joy resolving that yet.
The other option is to grab a copy of Visual Studio Express Edition 2005 and compile it for yourself. Not for the fainthearted but I believe the force is strong with you.
Hope this is useful,
Nigel

Similar Messages

  • Saprfc.dll for php 5.4 or upper version

    Hai All,
    Purpose for interfacing SAP in PHP, Is there any saprfc.dll build for xamp version 1.7.3 or upper, or PHP 5.4 or upper,
    Now, I already use saprfc.dll what compatible for PHP 5.2 only..
    Thank for answer.
    arif diyanto

    The lastest version
    on the SAPRFC How to
    I assume you are using windows. If you are having hassles with getting it to work download a utility called <a href="http://www.dependencywalker.com/">dependency walker</a>.
    You can use this to check if the php_saprfc.dll is missing a dependency.
    I have been getting a dependency on DRVADODB.DLL on one particular machine and have had no joy resolving that yet.
    The other option is to grab a copy of Visual Studio Express Edition 2005 and compile it for yourself. Not for the fainthearted but I believe the force is strong with you.
    Hope this is useful,
    Nigel

  • About SAPRFC connector for PHP...

    I open this new post because Gregor make me notice that the thread where I initially post it was close...Sorry about that -:)
    Ok, question is...How can contact Eduard Koucky??? I wrote him some time ago, but he never answer me...Gregor just told that Craig do the same, without any answers...My main concern is about the TABLES parameters when calling a FM or BAPI...I remember that we had this discussion some time ago, but we never be able to solve it...
    I already tried:
    saprfc_table_init
    saprfc_table_insert
    saprfc_table_modify
    Without any luck...Maybe I need to try again...But still...If anyone can contact Eduard or give a nice solution to my problem...It would help me a lot
    P.S: What I do now to solve my lack of TABLES parameters...Is to create a long String parameters separating each line by a "/" symbol...Inside the FM, I just read it into an internal table...It's works great...But isn't the way I want to work.
    Greetings,
    Blag.

    Hi Blag,
    I've just tried this and it works perfect:
    [code]          //We must know if the function really exists
              $fce = saprfc_function_discover($rfc, "BAPI_SALESORDER_SIMULATE");
              if(!$fce){
                   echo "The function module has failed.";
                echo $rfc;
                exit;
              //Pass import parameters
              $ORDER_HEADER_IN = array (
                        "DOC_TYPE"=>"AG",
                        "SALES_ORG"=>"1000"
              saprfc_import ($fce,"ORDER_HEADER_IN",$ORDER_HEADER_IN);
              //Pass table parameters
              saprfc_table_init ($fce,"ORDER_ITEMS_IN");
              $ORDER_ITEMS_IN = array (
                        "MATERIAL"=>"P-100",
                        "REQ_QTY"=>"0000000001000"
              saprfc_table_append ($fce,"ORDER_ITEMS_IN", $ORDER_ITEMS_IN);
              $ORDER_ITEMS_IN = array (
                        "MATERIAL"=>"P-101",
                        "REQ_QTY"=>"0000000001000"
              saprfc_table_append ($fce,"ORDER_ITEMS_IN", $ORDER_ITEMS_IN);
              $ORDER_PARTNERS = array (
                        "PARTN_ROLE"=>"AG",
                        "PARTN_NUMB"=>"0000001555"
              saprfc_table_append ($fce,"ORDER_PARTNERS", $ORDER_PARTNERS);
              saprfc_table_init ($fce,"ORDER_ITEMS_OUT");
              //Call and execute the function
              $rc = saprfc_call_and_receive ($fce);[/code]
    Regards
    Gregor

  • Php 5.12 / Apache 2.054 / Saprfc 1.4.1 for php 5.1.1

    Hi Everybody,
    I am trying to install this sap connector.
    It's easy but no simple to find the good version running together.
    My configuration below :
    Windows XP Pro SP2
    IIS 5.1 on port 80
    Apache 2.054 on port 8080
    Php 5.12
    Saprfc 1.4.1 for php 5.1.1
    I use the binaries distributions for each product.
    I have no issue, i hope, to load php_saprfc.dll module: i have no error message when Apache is starting.
    The test file index.php is running nice and display the environment to screen, BUT I DON'T FIND SAPRFC MODULE.
    If some of you have a idea, thanks for your help.
    If its usefull i have no issue to send us my files httpd.conf and php.ini.
    Best Regards
    Georges FREROT

    Hi Everybody,
    I want test the connector saprfc with php on two technical environments bellow:
    - Windows XP SP2 Professional, IIS 5.1, php 5.11 or 512
    - Windows XP SP2 Professional, Apache 2.054, php 5.11 or 512
    Windows XP is running on C: .
    IIS 5.1 is running on port 80, and Apache 2.054 on port 8080.
    I have build a development workspace on H: .
    The directory tree has this structure:
    H
    Apache2054
    Apache2
    Php511
    ext
    sessions
    includes
    Php512
    ext
    sessions
    includes
    saprfc141-511
    WebDev
    Sessions
    I have downloaded binaries of Apache 2.054, Php 5.11 and 512 and his Pecl 5.11 and 512 and Saprfc 141 511.
    I have uncompressed :
    Php 5.11 under H:\php511, 
    Pecl 5.11 under H:\php511\ext,
    Php 5.12 under H:\php512, 
    Pecl 5.12 under H:\php512\ext,
    Apache 2.054 under H:\Apache2054,
    SapRfc 1.4.1 5.1.1 under H:\saprfc141-511
    My first step is run php on IIS in isapi mode. It’s successful.
    The command localhost:80//Index.php display correctly echo phpinfo().
    My second step is install saprfc requirements:
    Copy:
    php_saprfc.dll in H:\Php511\ext
    php_saprfc.dll in H:\Php512\ext
    librfc32.dll up to date in C:\Windows\System32
    Verify msvcp60.dll up to date is in C:\Windows\System32.
    Modify php.ini:
    Include_path = “.;H:\Php511\includes;H:\Php511\pear”
    Extension_dir =”H:\Php511\ext”
    Include_path = “.;H:\Php512\includes;H:\Php512\pear”
    Extension_dir =”H:\Php512\ext”
    Extension=php_mbstring.dll
    Extension=php_gd2.dll
    Extension= php_saprfc.dll
    Extension=php_soap.dll
    Extension=php_mysql.dll
    To run php 5.11 or php 5.12 I modify the system path and configuration in WebServer 
    The results with php 5.11 are :
    With IIS 5.1 no loading error message, echo phpinfo() running nice, but no display the saprfc module.
    With APACHe 2.054 loading error message the same twice for php_saprfc.dll
    The results with php 5.12 are :
    With IIS 5.1 no loading error message, echo phpinfo() running nice, but no display the saprfc module.
    With APACHe 2.054 no loading error message, echo phpinfo() running nice, but no display the saprfc module
    If some of you have an idea what is wrong or forget at this point, thanks to help me.
    Bests Regards
    Georges FREROT

  • Versions of PHP and libxml2 for Linux Redhat

    I installed PHP 5.3.19. I had two choices from http://php.net/downloads.php. Version 5.4 or 5.3. The latest version of libxml2 available for RHEL 5.5 is 2.6.26 release 2.1.15. Should I go with this one or should I download a later version for Fedora, and if so which one, or should I download an earlier version of PHP to go with libxml2 2.6.26 release 2.1.15 and if so which one?
    Edited by: 944901 on Dec 11, 2012 11:06 AM

    - Oracle Linux 5 is also available from the repo I mentioned.
    - There are 8 extensions in the PHP source that require libxml2. I don't know which one(s) you want. I have built some in the past on OL. I expect many other people have built PHP and some or all of the XML-based extensions on RH or OL 5.x. You won't have difficulty testing it yourself since building command line PHP takes only a few steps; just don't pass an with-apxs2 flag to PHP's "configure" command. You can choose which extensions you want, such as with-simplexml (which is default, BTW)
    - The PHP RPMs will not install on OHS because the RPMs depend upon, and install into, the httpd RPM
    - The OHS web page you mentioned wasn't written by me (and is slightly obsolete regarding header files, though I've often requested the owner update it). The best instructions for installing on OHS are in the newly updated The Underground PHP and Oracle Manual. See page 86.
    - Again, I'd recommend using PHP 5.4.

  • Will there be an version of Flash Builder 4.7 for PHP?

    Flash Builder for PHP is sensational, it's a complete solution for web development, much better than Flash Builder itself I think.
    Does adobe have a plan of releasing Flash Builder 4.7 for PHP?

    that's too bad.....
    apparently Adobe has abandoned us......

  • Error while installing flash builder 4.5 for php

    Hello to all.
    Im having a problem while trying to install the flash builder 4.5 for php.... it keeps saying that i have the zend installed in my computer! but i have not... i just have buyed this computer... and it keeps saying that i have the zend installed....
    can someone please help me? I just wanna use this freaking tool!!! =D
    Here is my LOG of installation:
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 4.0.50.0
    Win OS version: 6.1.0.0 64 bit Type: 1
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    Create Required Folders
    Assuming uninstall mode
    Lookup for master payload
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    Supported RIBS version range: [0.0.66.0,4.0.50.0]
    ----------------- CreatePayloadSession: machine is x64 ---------------
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0: 1 (0,1)
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0: 1 (0,1)
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0: 1 (0,1)
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0: 2 (3,1)
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0: 3 (0,1)
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0: 3 (0,1)
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0: 3 (0,1)
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0: 3 (0,1)
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0: 3 (0,1)
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0: 3 (0,1)
      {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0: 4 (0,0)
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0: 4 (0,0)
      {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0: 5 (7,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Setting property "INSTALLDIR" to: C:\Program Files (x86)\FLASHBUILDER
    Setting property "driverAdobeCode" to: {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    Setting property "mediaSignature" to: {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    Found payload actions:
    Deciding what installer mode to use...
    {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0 not installed
    {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0 not installed
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0 is: false
    [    4888] Mon Jun 20 08:30:05 2011  WARN
    DW039: Payload {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0 is not installed so should not be there in the deployment file
    [    4888] Mon Jun 20 08:30:05 2011  INFO
    Value returned on lookup of payload: {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0 is: true
    Action string for {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0  is remove
    Selection of payload {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0 is forbidden by the policy. Reason: Free payload
    Value returned on lookup of payload: {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0 is: false
    Action string for {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0  is none
    Value returned on lookup of payload: {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0 is: true
    Action string for {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0  is none
    Value returned on lookup of payload: {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0 is: true
    Action string for {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0  is none
    Value returned on lookup of payload: {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0 is: true
    Action string for {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0  is none
    Value returned on lookup of payload: {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0 is: true
    Action string for {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0  is none
    Value returned on lookup of payload: {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0 is: true
    Action string for {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0  is none
    Value returned on lookup of payload: {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0 is: true
    Action string for {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0  is none
    Value returned on lookup of payload: {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0 is: true
    Action string for {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0  is none
    Value returned on lookup of payload: {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0 is: true
    Action string for {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0  is none
    Value returned on lookup of payload: {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0 is: true
    Action string for {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0  is none
    Value returned on lookup of payload: {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0 is: true
    Action string for {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0  is none
    END Setting requested payload actions
    INSTALLDIR passed path basic path validation: C:\Program Files (x86)\FLASHBUILDER
    [    4888] Mon Jun 20 08:30:06 2011  INFO
    BEGIN InstallOperationsQueue Unordered operations
      {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0:  with operation none
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0:  with operation remove
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0:  with operation remove
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0:  with operation remove
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0:  with operation remove
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0:  with operation remove
      {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0:  with operation none
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0:  with operation remove
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0:  with operation remove
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0:  with operation remove
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0:  with operation remove
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0:  with operation remove
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0:  with operation remove
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0:  with operation remove
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0:  with operation remove
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0:  with operation remove
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0:  with operation remove
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0:  with operation remove
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    BEGIN InstallOperationsQueue Unordered operations
      {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0:  with operation none
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0:  with operation remove
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0:  with operation remove
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0:  with operation remove
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0:  with operation remove
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0:  with operation remove
      {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0:  with operation none
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0:  with operation remove
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0:  with operation remove
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0:  with operation remove
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0:  with operation remove
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0:  with operation remove
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0:  with operation remove
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0:  with operation remove
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0:  with operation remove
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0:  with operation remove
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0:  with operation remove
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0:  with operation remove
    END InstallOperationsQueue Ordered operations
    Calling the custom action code for pre-remove for payload {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    ::START TIMER:: [Payload Operation :{1B4483F2-849C-4AC3-99B1-473FFC0192DD}]
    [    3776] Mon Jun 20 08:30:06 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    Effective AdobeCode for: {1B4483F2-849C-4AC3-99B1-473FFC0192DD} is {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{1B4483F2-849C-4AC3-99B1-473FFC0192DD}.db
    [    3776] Mon Jun 20 08:30:07 2011  INFO
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{1B4483F2-849C-4AC3-99B1-473FFC0192DD}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:07 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{1B4483F2-849C-4AC3-99B1-473FFC0192DD}] took 1004.34 milliseconds (1.00434 seconds) DTR = 2732.15 KBPS (2.66812 MBPS)
    Updating driver data - Action: Add driver entry
    Updating driver data successful. Driver entry was added. ARP estimated size 0KB
    User specified overrideFile:
    The csu inventory was not updated for payload {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0
    Calling the custom action code for pre-remove for payload {6F3A624B-1B72-4081-96E8-23261F389C5C}
    ::START TIMER:: [Payload Operation :{6F3A624B-1B72-4081-96E8-23261F389C5C}]
    [    6088] Mon Jun 20 08:30:07 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {6F3A624B-1B72-4081-96E8-23261F389C5C}
    Effective AdobeCode for: {6F3A624B-1B72-4081-96E8-23261F389C5C} is {6F3A624B-1B72-4081-96E8-23261F389C5C}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{6F3A624B-1B72-4081-96E8-23261F389C5C}.db
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{6F3A624B-1B72-4081-96E8-23261F389C5C}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:08 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{6F3A624B-1B72-4081-96E8-23261F389C5C}] took 1006.47 milliseconds (1.00647 seconds) DTR = 5250.03 KBPS (5.12699 MBPS)
    User specified overrideFile:
    [    4888] Mon Jun 20 08:30:09 2011  INFO
    Successfully updated the csu inventory for {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0
    Calling the custom action code for pre-remove for payload {7EABC54B-02C3-4DA1-9EB4-974CE7414066}
    ::START TIMER:: [Payload Operation :{7EABC54B-02C3-4DA1-9EB4-974CE7414066}]
    [    1064] Mon Jun 20 08:30:09 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:10 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{7EABC54B-02C3-4DA1-9EB4-974CE7414066}] took 1014.44 milliseconds (1.01444 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0
    Calling the custom action code for pre-remove for payload {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    ::START TIMER:: [Payload Operation :{BD0D6363-E961-410F-8BF4-ECD8795F3923}]
    [    4696] Mon Jun 20 08:30:10 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    Effective AdobeCode for: {BD0D6363-E961-410F-8BF4-ECD8795F3923} is {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{BD0D6363-E961-410F-8BF4-ECD8795F3923}.db
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{BD0D6363-E961-410F-8BF4-ECD8795F3923}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:11 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{BD0D6363-E961-410F-8BF4-ECD8795F3923}] took 1009.85 milliseconds (1.00985 seconds) DTR = 6947.54 KBPS (6.78471 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0
    Calling the custom action code for pre-remove for payload {E5F5A323-E3CA-4710-ABBB-2C0C25516F89}
    ::START TIMER:: [Payload Operation :{E5F5A323-E3CA-4710-ABBB-2C0C25516F89}]
    [    2788] Mon Jun 20 08:30:11 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {E5F5A323-E3CA-4710-ABBB-2C0C25516F89}
    Effective AdobeCode for: {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} is {E5F5A323-E3CA-4710-ABBB-2C0C25516F89}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{E5F5A323-E3CA-4710-ABBB-2C0C25516F89}.db
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{E5F5A323-E3CA-4710-ABBB-2C0C25516F89}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:12 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{E5F5A323-E3CA-4710-ABBB-2C0C25516F89}] took 1019.34 milliseconds (1.01934 seconds) DTR = 18765.1 KBPS (18.3253 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0
    Calling the custom action code for pre-remove for payload {46DF1D41-88FD-448c-BAC5-6FDA31247378}
    ::START TIMER:: [Payload Operation :{46DF1D41-88FD-448c-BAC5-6FDA31247378}]
    [    4788] Mon Jun 20 08:30:12 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:13 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{46DF1D41-88FD-448c-BAC5-6FDA31247378}] took 1006.47 milliseconds (1.00647 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0
    Calling the custom action code for pre-remove for payload {551D0A52-5E4A-4898-9FFF-FEAA5E89585A}
    ::START TIMER:: [Payload Operation :{551D0A52-5E4A-4898-9FFF-FEAA5E89585A}]
    [     664] Mon Jun 20 08:30:13 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:14 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{551D0A52-5E4A-4898-9FFF-FEAA5E89585A}] took 1009.34 milliseconds (1.00934 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0
    Calling the custom action code for pre-remove for payload {ED28819E-310F-4F17-925C-C69B0A1C1F7F}
    ::START TIMER:: [Payload Operation :{ED28819E-310F-4F17-925C-C69B0A1C1F7F}]
    [    5256] Mon Jun 20 08:30:14 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {ED28819E-310F-4F17-925C-C69B0A1C1F7F}
    Effective AdobeCode for: {ED28819E-310F-4F17-925C-C69B0A1C1F7F} is {ED28819E-310F-4F17-925C-C69B0A1C1F7F}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{ED28819E-310F-4F17-925C-C69B0A1C1F7F}.db
    [    5256] Mon Jun 20 08:30:15 2011  INFO
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{ED28819E-310F-4F17-925C-C69B0A1C1F7F}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:15 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{ED28819E-310F-4F17-925C-C69B0A1C1F7F}] took 1014.14 milliseconds (1.01414 seconds) DTR = 15709.9 KBPS (15.3417 MBPS)
    User specified overrideFile:
    [    4888] Mon Jun 20 08:30:16 2011  INFO
    Successfully updated the csu inventory for {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0
    Calling the custom action code for pre-remove for payload {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A}
    ::START TIMER:: [Payload Operation :{635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A}]
    [     304] Mon Jun 20 08:30:16 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:17 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A}] took 1012.73 milliseconds (1.01273 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0
    Calling the custom action code for pre-remove for payload {B6D38690-755E-4F40-A35A-23F8BC2B86AC}
    ::START TIMER:: [Payload Operation :{B6D38690-755E-4F40-A35A-23F8BC2B86AC}]
    [    3496] Mon Jun 20 08:30:17 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:18 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{B6D38690-755E-4F40-A35A-23F8BC2B86AC}] took 1004.29 milliseconds (1.00429 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0
    Calling the custom action code for pre-remove for payload {08D2E121-7F6A-43EB-97FD-629B44903403}
    ::START TIMER:: [Payload Operation :{08D2E121-7F6A-43EB-97FD-629B44903403}]
    [    2844] Mon Jun 20 08:30:18 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:19 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{08D2E121-7F6A-43EB-97FD-629B44903403}] took 1019.87 milliseconds (1.01987 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0
    No operation.  We're done:
    Updating driver data - Action: Remove driver entry
    Updating driver data successful. Driver entry was removed. ARP estimated size 0KB
    [    4888] Mon Jun 20 08:30:21 2011  INFO
    Total components installed: 0
    Total components repaired: 0
    Successfully removed 11 components:
    - Microsoft_VC90_CRT_x86
    - Adobe Flash Builder
    - Adobe Flash Player 10 Plugin
    - Adobe Flash Player 10 ActiveX
    - Microsoft_VC90_MFC_x86
    - AdobeTypeSupport CS5
    - AdobeHelp
    - Microsoft_VC90_MFCLOC_x86
    - AdobeCMaps CS5
    - Adobe Player for Embedding 3.2
    - Suite Shared Configuration CS5.5
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Restarting your computer is recommended:
    In order to complete the installation, please restart the computer
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Call PostSession Custom Hook
    :: END TIMER :: [Total Timer] took 16246.8 milliseconds (16.2468 seconds) DTR = 3085.89 KBPS (3.01357 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 0 error(s), 1 warning(s)
    WARNING: DW039: Payload {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0 is not installed so should not be there in the deployment file
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    Exit Code: 0 - No error.
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*

    Hi Mike,
    Could you please send the following log files so we identify the exact problem and hopefully help you quickly:
    Windows:
    1.       <path_to_adobe_fbphp>/_Flash Builder 4.5 for PHP.log
    2.       Logs located under C:\Program Files\Common Files\Adobe\Installer\
    Max OSX:
    1.       <path_to_adobe_fbphp>/_Flash Builder 4.5 for PHP.log
    2.       Logs located under /Library/Logs/Adobe/Installers/
    Thanks for sharing this,
    Roy

  • How to recover deleted projects in adobe flash builder 4.5 for PHP

    Hi
    Problem:I accidently deleted project in adobe flash builder 4.5 for PHP and in confirming dialogue box,i checked delete contents one(see figure).
    I have wasted almost 6 hours and googled almost everything but couldn't find solution.
    I have also used data recovery software like Get Data:Recover my deleted files.It found all my deleted files which was deleted by me pressing Shift+Del,but it didn't displayed files which i wanted(since they were deleted by Adobe flash builder).
    Any help would be welcomed as that project was so important for me.

    Thanks for your solution but in mine it saying,There are no previous versions found.
    I have used almost 6 recovery software paid and free and didn't intstalled on that drive where my original files are located so that it don't get overwritten.
    All of them are able to recover some files like
    .project
    public/bin-debug folder
    .settings folder
    But my .php files i located in web root folder.Those file by i connect data/services. I mean PHP project files are deleted.
    I had following structure of files
    <Web root > php scritps to connect data\services\UserService.php                  (this file)
    <Web root > php scritps to connect data\services\EmployeeService.php          (this file)
    <Web root > php scritps to connect data\test\test.php                                    (this file)
    <Web root > php scritps to connect data\Imp files to connect data using PHP and MySql.txt (this file)
    Files marked by "this files "  are  lost and not found by any recovery software.
    I need those php and txt files specifically.

  • Cannot install Flash Builder 4.6 for PHP

    I have FB4.5 premium installed, and have bought an upgrade license to the "for PHP" version. I downloaded the 2 files from the adobe web site (only V4.6 seems to be downloadable now) - that's FlashBuilderPHP_4_6_LS1.7z and FlashBuilderPHP_4_6_LS1.exe. The installation goes past specifying all the options but just before it finishes it says "rolling back installation" and exits. I hunted around and founf PDApp.log, and these are the last few lines. They give me no clue as to what has gone wrong except maybe the first line here but it keeps going for a little while after that message. I've tried 3 times now with a reboot in between, and it fails every time. Is it time to download a fresh copy of the installation files or get a DVD?
    Thanks
    2/3/2012 14:11:44 [INFO] PIM - Package id BE253463-D6DD-4046-BF29-FAF2E8EADEFB is already installed
    2/3/2012 14:11:44 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    2/3/2012 14:11:44 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    2/3/2012 14:11:44 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    2/3/2012 14:11:44 [INFO] PIM - SUCCESS insertPackageUpdateList.
    2/3/2012 14:11:44 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    2/3/2012 14:11:44 [INFO] PIM - Backup Folder Created
    2/3/2012 14:11:49 [INFO] Utilities - File does not exist
    2/3/2012 14:11:50 [INFO] PIM - SUCCESS installPackage at file C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\DWA\DWA.pimx.
    2/3/2012 14:11:50 [INFO] Setup - Finished Installing package - C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\DWA\DWA.pimx
    2/3/2012 14:11:50 [INFO] Setup - Start Installing package - C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\LWA\LWA.pimx
    2/3/2012 14:11:50 [INFO] PIM - START installPackage at file C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\LWA\LWA.pimx
    2/3/2012 14:11:50 [INFO] PIM - Trying to access xml at path:C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\LWA\LWA.pimx
    2/3/2012 14:11:50 [INFO] PIM - XML is valid
    2/3/2012 14:11:50 [WARN] PIM - Failed to find Node
    2/3/2012 14:11:50 [INFO] PIM - Package id 288AEB6F-C67B-4244-8B68-392A279BC618 is already installed
    2/3/2012 14:11:50 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    2/3/2012 14:11:50 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    2/3/2012 14:11:50 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    2/3/2012 14:11:50 [INFO] PIM - SUCCESS insertPackageUpdateList.
    2/3/2012 14:11:50 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    2/3/2012 14:11:50 [INFO] PIM - Backup Folder Created
    2/3/2012 14:11:56 [INFO] Utilities - File does not exist
    2/3/2012 14:11:57 [INFO] PIM - SUCCESS installPackage at file C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\LWA\LWA.pimx.
    2/3/2012 14:11:57 [INFO] Setup - Finished Installing package - C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\LWA\LWA.pimx
    2/3/2012 14:11:57 [INFO] PIM - Processing ... _pimCreateOrUpdateAAMInventory
    2/3/2012 14:11:57 [INFO] PIM - Inventory Already present on the machine...
    2/3/2012 14:11:57 [INFO] Setup - TimeLog: End Installing. Now launching PDApp
    2/3/2012 14:11:57 [WARN] Setup - Install Source Path not specified. Searching for payloads at the launch path.
    2/3/2012 14:11:57 [INFO] Setup - Deployment Engine launched with command : "C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DWA\Setup.exe" --deploymentFile="C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\silentinstall\remove.xml" --installSourcePath="C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6"
    2/3/2012 14:11:58 [FATAL] Setup - End Adobe Setup. Exit code: 33
    2/3/2012 14:11:58 [INFO] PIM - PIMSqlite closeDB status 0
    2/3/2012 14:11:58 [INFO] PIM - FREE PIM Instance ...

    I worked it out in the end - I had to uninstall FB4.5 and reboot. Why couldn't the installation say so instead of just crashing? I found this out, by the way, by trying to run the installer created under c:\program files(x86)\adobe\adobe flash builder 4.6. That one told me at least that I had to uninstall a previous version, though even then it was coy about which one

  • When Flash Builder 4.6 for PHP is released will it support AIR 3.2 ???

    We've all been waiting a long time since last November's Private Beta of Flash Builder 4.6 which was released shortly thereafter, for the Flash Builder 4.6 for PHP version.
    However, Flash Builder 4.6 for PHP (The one with Zend Studio included in it) is scheduled for 2012 - Q1 release, meaning?
    I guess, at the latest March 31st.
    This is significant, because AIR 3.2 is Great, but it will Live or Die based on what happens, I believe, in the next year, the new demo with the 2 geniuses at Adobe, Lee Brimelow and Thibault Imbert, which essentially ARE the driving intellectual force behind AIR, make me feel more comfortable than the management at Adobe,
    http://tv.adobe.com/watch/adc-presents/hardware-accelerated-graphics-for-mobile-games-with -adobe-air-32/
    So, when FB 4.6 for PHP is released, will it support AIR 3.2?
    There's another thing, there are a ton of job offerings for iOS 5 or Android Java, but no AIR (very few and the damage control fromthe eff'ed up press release is still meandering).
    Adobe needs to compliment its consumer base and developer base, with a Developer Network for Corporate integration so there are contracts out there for us who live between our dream ideas and meals, by doing contracting work, and it'd be nice to do it in Flash Builder 4.6 instead of taking on an iOS 5 or Android Java or PhoneGap project.  At least for Gamers.
    REPORTS: Social Gaming will be a $5B industry by 2015. The total mobile market will be a $15B industry by 2015.
    I'm shooting for the Social Gaming, and I like what I see in the above video.
    But again, people have to pay bills, why doesn't Adobe reach our to Corporations for certified developers like Mickysoft and Apple?

    I worked it out in the end - I had to uninstall FB4.5 and reboot. Why couldn't the installation say so instead of just crashing? I found this out, by the way, by trying to run the installer created under c:\program files(x86)\adobe\adobe flash builder 4.6. That one told me at least that I had to uninstall a previous version, though even then it was coy about which one

  • Display only a part of a text string for PHP MySql feild

    i have a description (tk_job_desc) feild on a jobsearch that i only want to display say the first 5 lines of the description feild the click a read more option the take the user to a new page the read the full job outline
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $maxRows_Recordset1 = 5;
    $pageNum_Recordset1 = 0;
    if (isset($_GET['pageNum_Recordset1'])) {
      $pageNum_Recordset1 = $_GET['pageNum_Recordset1'];
    $startRow_Recordset1 = $pageNum_Recordset1 * $maxRows_Recordset1;
    $var_tk_job_title_Recordset1 = "%";
    if (isset($_GET["tk_job_title"])) {
      $var_tk_job_title_Recordset1 = $_GET["tk_job_title"];
    $var_tk_job_location_Recordset1 = "%";
    if (isset($_GET["tk_job_location"])) {
      $var_tk_job_location_Recordset1 = $_GET["tk_job_location"];
    $var_tk_job_salary_Recordset1 = "%";
    if (isset($_GET["tk_job_salary"])) {
      $var_tk_job_salary_Recordset1 = $_GET["tk_job_salary"];
    mysql_select_db($database_hostprop, $hostprop);
    $query_Recordset1 = sprintf("SELECT tk_job_title, tk_job_location, tk_job_salary, tk_job_desc FROM think_jobsearch WHERE tk_job_title LIKE %s OR tk_job_location LIKE %s OR tk_job_salary LIKE %s", GetSQLValueString($var_tk_job_title_Recordset1, "text"),GetSQLValueString($var_tk_job_location_Recordset1, "text"),GetSQLValueString($var_tk_job_salary_Recordset1, "text"));
    $query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1);
    $Recordset1 = mysql_query($query_limit_Recordset1, $hostprop) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    if (isset($_GET['totalRows_Recordset1'])) {
      $totalRows_Recordset1 = $_GET['totalRows_Recordset1'];
    } else {
      $all_Recordset1 = mysql_query($query_Recordset1);
      $totalRows_Recordset1 = mysql_num_rows($all_Recordset1);
    $totalPages_Recordset1 = ceil($totalRows_Recordset1/$maxRows_Recordset1)-1;
    ?>
    the html is
    <table width="655" border="0" cellspacing="5" cellpadding="0">
                <tr>
                  <td colspan="2" class="Titlegreen"><?php echo $row_Recordset1['tk_job_title']; ?></td>
                </tr>
                <tr>
                  <td colspan="2" class="textblack"><?php echo $row_Recordset1['tk_job_desc']; ?></td>
                </tr>
                <tr>
                  <td width="250"> </td>
                  <td width="405"><div align="right"><span class="pos_salary"><?php echo $row_Recordset1['tk_job_salary']; ?></span><span class="pos_location">/<?php echo $row_Recordset1['tk_job_location']; ?></span></div></td>
                </tr>
              </table>
    thanks

    ok thanks., i have found a few things on the internet
    i followed the tutorial http://www.phpbuilder.com/board/showthread.php?t=10332476
    "SELECT LEFT tk_job_title, tk_job_location, tk_job_salary, ('tk_job_desc',150)............... but it has returned and error
    You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'tk_job_title, tk_job_location, tk_job_salary, ('tk_job_desc',100) FROM think_job' at line 1
    the other part of the article shows
    <?php
    mysql_connect("localhost", "user", "pass");
    mysql_select_db("my_db");
    $result = mysql_query("SELECT * FROM news ORDER BY RAND() LIMIT 0, 1");
    while ($rows = mysql_fetch_array($result))
    echo substr($rows['text'],0,100);
    ?>
    looking at my code i need to add the tk_job_desc to the statement
    $query_Recordset1 = sprintf("SELECT tk_job_title, tk_job_location, tk_job_salary, tk_job_desc FROM think_jobsearch WHERE tk_job_title LIKE %s OR tk_job_location LIKE %s OR tk_job_salary LIKE %s", GetSQLValueString($var_tk_job_title_Recordset1, "text"),GetSQLValueString($var_tk_job_location_Recordset1, "text"),GetSQLValueString($var_tk_job_salary_Recordset1, "text"));
    $query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1);
    $Recordset1 = mysql_query($query_limit_Recordset1, $hostprop) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    would i need to put that statement in there?

  • In the download for PHP 5.3, there is no php5ts.dll

    found php5ts.dll
    PHP 5.3 not working aft er the following changes were made:
    IIS: properties->home directory->configuration   C:\PHP\php5.dll
    with GET,HOST,POST,DEBUG
    doc_root = "C:\inetpub\wwwroot"
    tried each of :
    ;extension=php_sqlsrv_53_nts_vc9.dll
    ;extension=php_sqlsrv_53_nts_vc6.dll
    ;extension=php_sqlsrv_53_ts_vc9.dll
    extension=php_sqlsrv_53_ts_vc6.dll
    cgi.force_redirect = Off
    IIS 5.1 with cgi 1.5 RC
    extension_dir = "C:\PHP\ext"
    contains all 4 files:
    php_sqlsrv_53_nts_vc9.dll
    php_sqlsrv_53_nts_vc6.dll
    php_sqlsrv_53_ts_vc9.dll
    php_sqlsrv_53_ts_vc6.dll
    added to XP Prof SP3 path: ;C:\PHP;C:\PHP\ext
    also created (just in case) PHPRC environment variable (alongside path)
    containing C:\PHP;C:\PHP\ext
    I gave IUSR_LANDON all powers
    http://207.254.225.224:8080/phpinfo.php
    all firewalls set to accept 8080
    <?php
           phpinfo();
    ?>
    _______________________________________________RESULTS
      The website cannot display the page
    HTTP 500 
       Most likely causes:
    •The website is under maintenance.
    •The website has a programming error.
       What you can try:
         Refresh the page.
         Go back to the previous page.
         More information
    This error (HTTP 500 Internal Server Error) means that the website you are visiting had a server problem which prevented the webpage from displaying.
    For more information about HTTP errors, see Help.
    Should I remove the old versions (not used here) of ntwdblib.dll?

    The flavor of the Microsoft SQL Server Driver for PHP that you enabled in the php.ini file is the Thread Safe VC6 version. Therefore, you’ll need to install the appropriate version of PHP run-time (i.e. VC6 x86 Thread Safe) from http://windows.php.net/download/.
    When installing PHP, you should select the IIS/FastCGI option, and then establish a mapping between IIS and php-cgi.exe. In other words, your IIS configuration should point to the PHP CGI executable and not php5.dll that happens to be the Non Thread-Safe PHP run-time.
    Moreover, the library ntwdblib.dll is not needed anymore.
    On final note: it might be worth upgrading your IIS to at least version 6.0 that was optimized for FastCGI usage.
    Hope this helps,
    Serban
    Serban Iliescu - MSFT

  • Flash Builder 4.5 for PHP and ANT

    I just installed Flash Builder 4.5 for PHP Premium and I am trying to install ANT so I can automate the AsDoc generation process.
    In the past (Flash Builder 4), I just point to "http://download.eclipse.org/releases/galileo/" and select "Eclipse Java Development Tools".
    However, when I do the same in " Flash Builder 4.5 for PHP Premium", I got an error message saying that a newer version of "Eclipse Java Development Tools" has already been installed. I go to the "Already Installed Software" tab, and indeed I see "Eclipse Java Development Tools" under "Eclipse Java IDE", but ANT is nowhere to be found.
    By the way, I am doing everything on the stock, standalone Flash Builder 4.5 for PHP Premium.
    Any suggestion is much appreciated.

    I also have Flash Builder 4.5 for PHP and the ANT view does not show when going to Window -> Show View --> Other.  I could not find it in any of the folders.
    However, I was able to add it by hitting Command 3 (CTRL 3 on PC) and typing Ant.

  • Deletion of Flash Builder 4.5 when installing Flash Builder 4.5 for PHP

    There is a very serious error with the Flash Builder 4.5 for PHP installer (from http://static.zend.com/topics/Flash-Builder-for-PHP-4.5.0-Release-Notes.txt ):
    If Flash Builder 4.5 (not PHP) is already installed on the machine, and the
      product (Flash Builder for PHP 4.5) is then installed in a different location,
      the user gets the "FB is installed" dialog.
      After clicking OK, the installation rolls back and removes both Flash Builder
      and Flash Builder for PHP.
    My questions:
    Can Flash Builder 4.5 for PHP be installed in the same location without deleting Flash Builder 4.5? If so, please define "location."
    Is there a workaround for installing both flavors of Flash Builder 4.5 and avoiding the deletion issue described above?
    Can a single do-it-all version of Flash Builder 4.5 be installed that combines the SDKs and features of both flavors of the Flash Builder 4.5 product?

    Hi Mike,
    Could you please send the following log files so we identify the exact problem and hopefully help you quickly:
    Windows:
    1.       <path_to_adobe_fbphp>/_Flash Builder 4.5 for PHP.log
    2.       Logs located under C:\Program Files\Common Files\Adobe\Installer\
    Max OSX:
    1.       <path_to_adobe_fbphp>/_Flash Builder 4.5 for PHP.log
    2.       Logs located under /Library/Logs/Adobe/Installers/
    Thanks for sharing this,
    Roy

  • Upcoming Adobe Flash Builder 4.5 for PHP Premium

    The upcoming Flash Builder 4.5 for PHP Premium looks very intriguing. It includes an integrated Zend Studio 8. No need for Dreamweaver at all. I'm definately going to snap this up when it's available.

    Thanks for your solution but in mine it saying,There are no previous versions found.
    I have used almost 6 recovery software paid and free and didn't intstalled on that drive where my original files are located so that it don't get overwritten.
    All of them are able to recover some files like
    .project
    public/bin-debug folder
    .settings folder
    But my .php files i located in web root folder.Those file by i connect data/services. I mean PHP project files are deleted.
    I had following structure of files
    <Web root > php scritps to connect data\services\UserService.php                  (this file)
    <Web root > php scritps to connect data\services\EmployeeService.php          (this file)
    <Web root > php scritps to connect data\test\test.php                                    (this file)
    <Web root > php scritps to connect data\Imp files to connect data using PHP and MySql.txt (this file)
    Files marked by "this files "  are  lost and not found by any recovery software.
    I need those php and txt files specifically.

Maybe you are looking for