SQL executing error differences with different tools, need help!!

Hi everyone,
I'm getting trouble with executing SQL query using SQLdevelopper.
but it returns the error about bind value parameter in & out doesn't set.
I also try to same SQL with other tools but only one tool could succeed
executing which is Osqledit.
SQL*Developper--------No
Object Browser--------No
Sql*Plus-------No
Osqledit-----Yes
does anybody know why some sql tools couldn't succeed executing
same sql such as Osqledit?
and also in this case often to cause or not?
thank you for reading and helping me.

thanks SHUBH I think so too.
To Colin and others,
here is my SQL query which wasn't written in English so
it took me for a while to translate.
and it very long SQL which my co-worker made it.
sorry for it unable to read easily tho I need your help.
in additon, we use bind-values on this SQL.
select
     shopcode,
     JAN,
     h.lowestestprice,
     h.highestprice,
     h.amount,
     h.totalsales,
     h.retailprice,
     h.aprice,
     h.normalamount,
     h.normaltotalsales,
     h.normalretailprice,
     h.normalaprice,
     h.discountamount,
     h.discounttotalsales,
     h.discountretailprice,
     h.discountaprice,
     h.memberamount,
     h.memberretailprice,
     h.memberretailprice,
     h.memberaprice,
     h.normalreserveamount,
     h.discountreserveamount
from
          select
          shopcode,
               JANcode JAN,
               min(lowestestprice) lowestestprice,
               max(highestprice) highestprice,
               sum(amount) amount,
               sum(totalsales) totalsales,
               sum(retailprice) retailprice,
               sum(aprice) aprice,
               sum(normalamount) normalamount,
               sum(normaltotalsales) normaltotalsales,
               sum(normalretailprice) normalretailprice,
               sum(normalaprice) normalaprice,
               sum(discountamount) discountamount,
               sum(discounttotalsales) discounttotalsales,
               sum(discountretailprice) discountretailprice,
               sum(discountaprice) discountaprice,
               sum(memberamount) memberamount,
               sum(membertotalsales) membertotalsales,
               sum(memberretailprice) memberretailprice,
               sum(memberaprice) memberaprice,
               sum(normalreserveamount)
normalreserveamount,
               sum(discountreserveamount)
discountreserveamount
          from
               testsalesfact
          where
               salesdate between :begindate and :enddate
          group by
               shopcode,
               JANcode
     ) h
     full outer join
          select
               shopcode,
               JANcode,
min(lowestestprice) lowestestprice,
               max(highestprice) highestprice,
               sum(amount) amount,
               sum(totalsales) totalsales,
               sum(retailprice) retailprice,
               sum(aprice) aprice,
               sum(normalamount) normalamount,
               sum(normaltotalsales) normaltotalsales,
               sum(normalretailprice) normalretailprice,
               sum(normalaprice) normalaprice,
               sum(discountamount) discountamount,
               sum(discounttotalsales) discounttotalsales,
               sum(discountretailprice) discountretailprice,
               sum(discountaprice) discountaprice,
               sum(memberamount) memberamount,
               sum(membertotalsales) membertotalsales,
               sum(memberretailprice) memberretailprice,
               sum(memberaprice) memberaprice,
               sum(normalreserveamount)
normalreserveamount,
               sum(discountreserveamount)
discountreserveamount
          from
               shopweeksaleswk
          where
               salesdate between :begindate and :enddate
          group by shopcode, JAN
          union all
          select
               a.shopcode,
               a.JAN,
               min(a.pricewiotax) lowestestprice,
          -     max(a.pricewiotax) highestprice,
               sum(a.amount) amount,
               sum(a.totalsales) totalsales,
               sum(a.retailprice) retailprice,
               sum(a.aprice) aprice,
               sum(a.normalamount) normalamount,
               sum(a.normaltotalsales) normaltotalsales,
               sum(a.normalretailprice) normalretailprice,
               sum(a.normalaprice) normalaprice,
               sum(a.discountamount) discountamount,
               sum(a.discounttotalsales) discounttotalsales,
               sum(a.discountretailprice) discountretailprice,
               sum(a.discountaprice) discountaprice,
               sum(a.memberamount) memberamount,
               sum(a.membertotalsales) membertotalsales,
               sum(a.memberretailprice) memberretailprice,
               sum(a.memberaprice) memberaprice,
               sum(a.normalreserveamount)
normalreserveamount,
               sum(a.discountreserveamount)
discountreserveamount
          from (
               select
                    p.shopcode,
                    substr(p.makedate, 1, 8) salesdate,
                    p.JAN,
                    p.pricewiotax,
                    p.amount amount,
                    trunc(p.amount * p.pricewiotax)
totalsales,
                    trunc(p.amount * decode
(p.discountcode, '000000',
                    p.retailprice, p.discountretailprice))
retailprice,
                    decode(decode
(p.discountcode, '000000',
p.retailprice,
                    p.discountretailprice), 0, 0,
                    trunc(p.amount * p.pricewiotax) -
                    trunc(p.amount * decode
(p.discountcode, '000000',
                    p.retailprice, p.discountretailprice)))
aprice,               
                    decode(p.discountcode, '000000',
p.amount, 0) normalamount,
                    decode(p.discountcode, '000000',
                    trunc(p.amount * p.pricewiotax), 0)
normaltotalsales,
                    decode(p.discountcode, '000000',
                    trunc(p.amount * p.totalsales), 0)
normalretailprice,
                    decode(p.totalsales, 0, 0, decode
(p.discountcode, '000000',
                    trunc(p.amount * p.pricewiotax) -
                    trunc(p.amount * p.retailprice), 0))
normalaprice,
                    decode(p.discountcode, '000000', 0,
p.amount) discountamount,
                    decode(p.discountcode, '000000', 0,
                    trunc(p.amount * p.pricewiotax))
discounttotalsales,
                    decode(p.discountcode, '000000', 0,
                    trunc(p.amount *
p.discountretailprice))
discountretailprice,
                    decode(p.discountretailprice, 0, 0,
               decode(p.discountcode, '000000', 0,
               trunc(p.amount * p.pricewiotax)
                    trunc(p.amount *
p.discountretailprice))) discountaprice,
                    case when substr(p.cardnumber,
1, 7) in
('4986428', '4986429', '4986554')
                    then p.amount else 0 end
memberamount,
                    case when substr(p.cardnumber,
1, 7) in
('4986428', '4986429', '4986554')
                    then trunc(p.amount * p.pricewiotax)
else 0 end membertotalsales,
                    case when substr(p.cardnumber,
1, 7) in
('4986428', '4986429', '4986554') then
                    trunc(p.amount * decode
(p.discountcode, '000000',
p.retailprice,
                    p.discountretailprice)) else 0 end
memberretailprice,
                    case when substr(p.cardnumber,
1, 7) in
('4986428', '4986429', '4986554') then
                    decode(decode
(p.discountcode, '000000',
p.retailprice, p.discountretailprice),
0, 0,
                    trunc(p.amount * p.pricewiotax) -
                    trunc(p.amount * decode
(p.discountcode,'000000',
                    p.retailprice, p.discountretailprice)))
else 0 end memberaprice,
                    decode(p.discountcode, '000000',
               decode(p.discountsec, '07',
p.amount, 0), 0)
normalreserveamount,
                    decode(p.discountcode, '000000', 0,
                    decode(p.discountsec, '07',
p.amount, 0)) discountreserveamount
               from shopweeksaleswk p
               where p.salesdate between :begindate
and :enddate
               and p.makedate not between
               :begindate|| '000000 '
and :enddate|| '000000 '
               ) a
          group by a.shopcode, a.JAN
          union all     
          select
               a.shopcode,
               a.JAN,
               min(a.pricewiotax) lowestestprice,
               max(a.pricewiotax) highestprice,
               sum(a.amount) amount,
               sum(a.totalsales) totalsales,
               sum(a.retailprice) retailprice,
               sum(a.aprice) aprice,
               sum(a.normalamount) normalamount,
               sum(a.normaltotalsales) normaltotalsales,
               sum(a.normalretailprice) normalretailprice,
               sum(a.normalaprice) normalaprice,
               sum(a.discountamount) discountamount,
               sum(a.discounttotalsales) discounttotalsales,
               sum(a.discountretailprice) discountretailprice,
               sum(a.discountaprice) discountaprice,
               sum(a.memberamount) memberamount,
               sum(a.membertotalsales) membertotalsales,
               sum(a.memberretailprice) memberretailprice,
               sum(a.memberaprice) memberaprice,
               sum(a.normalreserveamount)
normalreserveamount,
               sum(a.discountreserveamount)
discountreserveamount
          from (
               select
                    p.shopcode,
                    substr(p.makedate, 1, 8) salesdate,
                    p.JAN,
                    p.pricewiotax,
                    p.amount *- 1 amount,
                    trunc(p.amount * p.pricewiotax) *- 1
totalsales,
                    trunc(p.amount * decode
(p.discountcode, '000000',
                    p.retailprice, p.discountretailprice)) *-
1 retailprice,
                    decode(decode
(p.discountcode, '000000',
                    p.retailprice, p.discountretailprice),
0, 0,
                    trunc(p.amount * p.pricewiotax) -
                    trunc(p.amount * decode
(p.discountcode, '000000',
                    p.retailprice, p.discountretailprice))) *-
1 aprice,
                    decode(p.discountcode, '000000',
p.amount, 0) *- 1 normalamount,
                    decode(p.discountcode, '000000',
trunc(p.amount * p.pricewiotax), 0) *
                    - 1 normaltotalsales,
                    decode(p.discountcode, '000000',
trunc(p.amount * p.retailprice), 0) *
                    - 1 normalretailprice,
                    decode(p.retailprice, 0, 0, decode
(p.discountcode, '000000',
                    trunc(p.amount * p.pricewiotax) -
                    trunc(p.amount * p.retailprice), 0)) *- 1
normalaprice,
                    decode(p.discountcode, '000000', 0,
p.amount) *- 1 discountamount,
                    decode(p.discountcode, '000000', 0,
trunc(p.amount * p.pricewiotax)) *
                    - 1 discounttotalsales,
                    decode(p.discountcode, '000000', 0,
                    trunc(p.amount *
p.discountretailprice)) *- 1
discountretailprice,
                    decode(p.discountretailprice, 0, 0,
decode(p.discountcode, '000000', 0,
                    trunc(p.amount * p.pricewiotax) -
                    trunc(p.amount *
p.discountretailprice))) *- 1
discountaprice,
                    case when substr(p.cardnumber,
1, 7) in
('4986428', '4986429', '4986554')
                    then p.amount *- 1 else 0 end
memberamount,
                    case when substr(p.cardnumber,
1, 7) in
('4986428', '4986429', '4986554')
                    then trunc(p.amount * p.pricewiotax) *-                                                                1 else 0 end membertotalsales,
                    case when substr(p.cardnumber,
1, 7) in
('4986428', '4986429', '4986554')
                    then trunc(p.amount * decode
(p.discountcode, '000000',
                    p.retailprice, p.discountretailprice)) *-
1 else 0 end memberretailprice,
                    case when substr(p.cardnumber,
1, 7) in
('4986428', '4986429', '4986554')
                    then decode(decode
(p.discountcode, '000000',
p.retailprice,
p.discountretailprice), 0, 0,
                    trunc(p.amount * p.pricewiotax) -
trunc(p.amount *
                    decode(p.discountcode,'000000',
p.retailprice, p.discountretailprice))) *
                    - 1 else 0 end memberamount,
                    decode(p.discountcode, '000000',
decode(p.discountsec, '07',
p.amount, 0), 0)*
                    -1 normalreserveamount,
                    decode(p.discountcode, '000000', 0,
decode(p.discountsec, '07',
p.amount, 0))*
                    -1 discountreserveamount
               from shopweeksaleswk p
               where p.salesdate not between :begindate
and :enddate
               and p.makedate
between :begindate|| '000000 '
and :enddate|| '000000 '
               ) a
          group by a.shopcode, a.JAN
     ) m
     using (shopcode,JAN)
where
     and h.lowestestprice != m.lowestestprice
     or h.highestprice != m.highestprice
     (h.amount != m.amount
     or h.totalsales != m.totalsales
     or h.aprice != m.aprice
     or h.normalamount != m.normalamount
     or h.normaltotalsales != m.normaltotalsales
     or h.normalretailprice != m.normalretailprice
     or h.normalaprice != m.normalaprice
     or h.discountamount != m.discountamount
     or h.discounttotalsales != m.discounttotalsales
     or h.discountretailprice != m.discountretailprice
     or h.discountaprice != m.discountaprice
     or h.memberamount != m.memberamount
     or h.membertotalsales != m.membertotalsales
     or h.memberretailprice != m.memberretailprice
     or h.memberaprice != m.memberaprice
     or h.normalreserveamount != m.normalreserveamount
     or h.discountreserveamount != m.discountreserveamount)
order by shopcode, JAN ;

Similar Messages

  • Execute crs_stat –t with different user

    Hi Xperts
    I am trying to do a monitoring script and I want to execute crs_stat –t with different user than Oracle (DB and Grid owner), I receive:
        CRS-0245:  User doesn't have enough privilege to perform the operation
        CRS-0202: No resources are registered.
    I already register User2 to Oinstall group and I am able to connect to sqlplus with User2.
    This monitoring scripts is going to be part of one monitoring tool, I already integrate other DB monitoring scripts.
    DB: Oracle RAC 11gR2(11.2.0.3) with OEL 5.9
    Thank you for your time
    Regards

    can you try to execute crsctl stat res -t -init using user2 .
    crs_stat command  is deprecated  in 11gR2.
    Thanks,
    http://gssdba.wordpress.com

  • The iphone iphone could not be restored an unknown error occurred(9) pleas i need help

    the iphone iphone could not be restored an unknown error occurred(9) pleas i need help 
    i phone 5

    Hi there vienna.hassan,
    You may find the troubleshooting steps in the article below helpful.
    iTunes: Specific update-and-restore error messages and advanced troubleshooting
    http://support.apple.com/kb/ts3694
    Error 9
    This error occurs when the device unexpectedly loses its USB connection with iTunes. This can occur if you manually disconnect the device during the restore process. You can resolve this issue by using USB troubleshooting, using a different Dock Connector or Lightning Connector to USB cable, trying another USB port, restoring on another computer, or by eliminating conflicts from third-party security software.
    -Griff W. 

  • I did a manual restore but it gave me an error it was 3914 i need help fixing it.

    i did a manual restore but it gave me an error it was 3914 i need help fixing it.

    From this Apple support document: iTunes: Specific update-and-restore error messages and advanced troubleshooting
    This device is not eligible for the requested build: Also sometimes displayed as an "error 3194." If you receive this alert, update to the latest version of iTunes. Third-party security software or router security settings can also cause this issue. To resolve this, follow Troubleshooting security software issues.
    Downgrading to a previous version of iOS is not supported. If you have installed software to perform unauthorized modifications to your iOS device, that software may have redirected connections to the update server (gs.apple.com) within the Hosts file. First you must uninstall the unauthorized modification software from the computer, then edit out the "gs.apple.com" redirect from the hosts file, and then restart the computer for the host file changes to take affect.  For steps to edit the Hosts file and allow iTunes to communicate with the update server, see iTunes: Troubleshooting iTunes Store on your computer, iPhone, iPad, or iPod—follow steps under the headingBlocked by configuration (Mac OS X / Windows) > Rebuild network information > The hosts file may also be blocking the iTunes Store. If you do not uninstall the unauthorized modification software prior to editing the hosts file, that software may automatically modify the hosts file again on restart. Also, using an older or modified .ipsw file can cause this issue. Try moving the current .ipsw file, or try restoring in a new user to ensure that iTunes downloads a new .ipsw.
    Error 3194: Resolve error 3194 by updating to the latest version of iTunes. "This device is not eligible for the requested build" in the updater logs confirms this is the root of the issue. For more Error 3194 steps see: This device is not eligible for the requested build above.
    B-rock

  • I can't restore my ipod, error 3194 pops up, I need help

    I can't restore my ipod, error 3194 pops up, I need help. Please

    From http://support.apple.com/kb/TS3694#error3194:
    Unable to contact the iOS software update server gs.apple.com
    Error 1004, 1013, 1638, 3014, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors:
    Install the latest version of iTunes.
    Check security software. Ensure that communication to gs.apple.com is allowed. Follow this article for assistance with security software. iTunes for Windows: Troubleshooting security software issues.
    Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. FollowiTunes: Advanced iTunes Store troubleshooting to edit the hosts file or revert to a default hosts file. See section "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information".
    Try to restore from another known-good computer and network.
    If the errors persist on another computer, the device may need service.

  • PsCS6  won't open. Error Message 213:19. Need Help.

    PsCS6  won't open. Error Message 213:19. Need Help.

    HI jacksonthomas,
    Were you able to use PS CS6?
    If not, please try the solutions on the following page: http://helpx.adobe.com/photoshop-elements/kb/licensing-problem.html
    Let us know if you need any further help.
    -Pragya

  • Error when extracting data with extractor 2lis_04_matnr - NEED HELP ASAP !!

    Hi experts!
    Got an error when extracting data with extractor 2lis_04_matnr.
    System says (short dump):
    DUMP TEXT START----
    Runtime error:    CONNE_IMPORT_WRONG_COMP_TYPE
    Exception:   CX_SY_IMPORT_MISMATCH_ERROR
    Error when attempting to import object "MC04P_0MAT_TAB".
    The current ABAP program "SAPLMCEX" had to be terminated because one of the statements could not be executed. This is probably due to an error in the ABAP program. When attempting to import data, it was discovered that the data type of the stored data was not the same as that specified in the program.
    An exception occurred. This exception is dealt with in more detail below. The exception, which is assigned to the class 'CX_SY_IMPORT_MISMATCH_ERROR', was neither caught nor passed along using a RAISING clause, in the procedure  "MCEX_BW_LO_API" "(FUNCTION)".                                                                             
    Since the caller of the procedure could not have expected this exception      
    to occur, the running program was terminated.                                
    The reason for the exception is:  When importing the object "MC04P_0MAT_TAB", the component no. 5 in the dataset has a different type from the corresponding component of the target object in the program "SAPLMCEX". <b>The data type is "D" in the dataset, but "C" in the program.</b>
    DUMP TEXT END----
    Please, can someone explain me how to solve it? 
    Really need help ASAP!
    Thanks in advance,
    Jaume
    Message was edited by:
            Jaume Saumell
    Message was edited by:
            Jaume Saumell

    Hi,
    Check this note: 328181
    So you need to delete entries in SM13/LBWQ for application and also detup table content.
    And then refill teh set up table.
    If you are in production clear the entries by running collective run no of times for this application 04.
    With rgds,
    Anil Kumar Sharma .P

  • SQL Server Database Connectivity with Visual Studio 2012 - Help Needed

    Hello,
    I am having Visual Studio 2012 and SQL Developer 4.0 installed on my system with Windows 8 - 64bit
    I want to shift a VS project with an SQL database connectivity to another new Laptop (above mentioned) ...
    I have the project opened in VS without bieng connected to the database.. 
    I have a backup file of the database (which needs to be restored to a new created database on SQL Developer) 
    The problem:
    I am unable to create a server connection in SQL Developer which will allow me to create a new database followed by the recovery from backup file.
    I am getting the following error message when I try to create a connection:
    Status: Faliure - IO error: The network adapter could not establish a connection
    Please help me in setting up a server connection and adding a new sql database

    The error message seemed unfamiliar to me and since I had never heard of SQL Developer before, I went to Google. Google might be pulling my legs, but it appears that SQL Developer is related to Oracle. This forum is devoted to SQL Server, so you are in the
    wrong place.
    Try finding a forum for SQL Developer.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • HT201210 Pls i was trying to update my iphone 3G to software version 4.2 using itune. The process did not complete succesfully. I then decided to restore back my restore my prevoius version 4.1, it stopped with an error code1015. Pls i need help

    Pls i was trying to update my iphone 3G to software version 4.2 using itune. The process did not complete succesfully. I then decided to restore back my restore my prevoius version 4.1, it stopped with an error code1015. Pls i need help

    Go here: http://www.iclarified.com/entry/index.php?enid=750 and download iOS 4.2.1 for the iPhone 3G. Perform a restore, but hold down ALT when clicking restore. Restore from this file you just downloaded. You should not get 1015 as you are upgrading, but if you get a different error, report back.

  • Can't chat with one buddy- NEED HELP!! PLEASE EXPLAIN ERROR 8 SIMPLY!!!

    i know this has already been discussed but i am technically illiterate and dont understand any of the responses previously made about opening ports- i have no idea what that means or how to do it! i am hoping someone can help me and explain how to solve this issue in simple terms please!!!
    My situation is as follows:
    my boyfriend and i both just bought macbooks together, v 10.5.2 leopard. we were very excited to try ichat video together. However, we found that we are getting the same error message many people are getting- the error-8. this happens when either one of us tries to initiate the conversation. HOWEVER, when a third person initiated a video chat amongst all 3 of us, we were able to see and hear each other through this 3-person video chat. The two of us have also had no problem using skype video or audio. The internal camera and microphone both seem to be working fine as well.
    We both did try to go into system preferences-security-firewall- set specific preferences for applications- and added ichat. we quit out of ichat, and logged back in but we were still unsuccessful at getting video to work.
    This is the dialogue i have received on the error message and i hope it helps:
    Date/Time: 2008-03-10 21:28:38.359 -0400
    OS Version: 10.5.2 (Build 9C2015)
    Report Version: 4
    iChat Connection Log:
    2008-03-10 21:28:19 -0400: AVChat started with ID 2969637957.
    2008-03-10 21:28:19 -0400: 0x1853e900: State change from AVChatNoState to AVChatStateWaiting.
    2008-03-10 21:28:19 -0400: katie104852: State change from AVChatNoState to AVChatStateInvited.
    2008-03-10 21:28:23 -0400: 0x1853e900: State change from AVChatStateWaiting to AVChatStateConnecting.
    2008-03-10 21:28:23 -0400: katie104852: State change from AVChatStateInvited to AVChatStateConnecting.
    2008-03-10 21:28:33 -0400: 0x1853e900: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-03-10 21:28:33 -0400: 0x1853e900: Error -8 (Did not receive a response from 0x1853e900.)
    2008-03-10 21:28:33 -0400: katie104852: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-03-10 21:28:33 -0400: katie104852: Error -8 (Did not receive a response from 0x1853e900.)
    Video Conference Error Report:
    Video Conference Support Report:
    4.370563 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    4.469525 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    Binary Images Description for "iChat":
    0x1000 - 0x239fff com.apple.iChat 4.0.2 (604) /Applications/iChat.app/Contents/MacOS/iChat
    0x2ae000 - 0x31cfff com.apple.Bluetooth 2.1 (2.1f16) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x368000 - 0x4b9fff com.apple.viceroy.framework 363.1 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x527000 - 0x566fff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x588000 - 0x5a1fff com.apple.frameworks.preferencepanes 12.0 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5bb000 - 0x5f5fff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x605000 - 0x619fff com.apple.ScreenSaver 2.1 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x629000 - 0x647fff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x64f000 - 0x6c1fff com.apple.iLifeMediaBrowser 1.0.5 (205.0.2) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x6ff000 - 0x730fff com.apple.iChatCommonGUI 4.0.2 (604) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x759000 - 0x75cfff com.apple.BezelServicesFW 1.4.711 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x777000 - 0x779fff com.apple.iChat.Styles.Text 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x7c7000 - 0x7ccfff com.apple.iChat.Styles.Balloons 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x7db000 - 0x7defff com.apple.iChat.Styles.Boxes 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x7e5000 - 0x7ebfff com.apple.iChat.Styles.Compact 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x1489e000 - 0x1498cfff com.apple.RawCamera.bundle 2.0.2 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x1499d000 - 0x149a2fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x15aff000 - 0x15b08fff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x15b12000 - 0x15b15fff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x15b1b000 - 0x15b20fff com.apple.audio.AppleHDAHALPlugIn 1.5.6 (1.5.6a21) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x16282000 - 0x162bdfff com.apple.QuickTimeFireWireDV.component 7.4.1 (14) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x162ca000 - 0x162f7fff com.apple.QuickTimeIIDCDigitizer 7.4.1 (14) /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x16302000 - 0x1634cfff com.apple.QuickTimeUSBVDCDigitizer 2.1.7 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x16373000 - 0x164f5fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x16523000 - 0x16862fff com.apple.driver.AppleIntelGMAX3100GLDriver 1.5.26 (5.2.6) /System/Library/Extensions/AppleIntelGMAX3100GLDriver.bundle/Contents/MacOS/App leIntelGMAX3100GLDriver
    0x1699c000 - 0x169b8fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x17b42000 - 0x17cd0fff com.apple.audio.codecs.Components 1.6.1 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x18459000 - 0x18459fff com.apple.JavaPluginCocoa 12.0.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x1845f000 - 0x18466fff com.apple.JavaVM 12.0.2 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x18470000 - 0x18471fff com.apple.iChat.PersonIconPlugIn 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0x184bf000 - 0x184bffff liblangid.dylib /usr/lib/liblangid.dylib
    0x19857000 - 0x1985afff com.apple.iokit.IOQTComponents 1.6 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x1a0ee000 - 0x1a10afff com.apple.QuartzComposer.ExtraPatches 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x1a11c000 - 0x1a139fff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1a175000 - 0x1a182fff com.apple.QuartzComposer.Backdrops 1.1 /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x90135fff com.apple.CoreFoundation 6.5.1 (476.10) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90136000 - 0x901c9fff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x901ca000 - 0x901cffff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x90439000 - 0x90571fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90572000 - 0x90598fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x90599000 - 0x905d8fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x905d9000 - 0x9060ffff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x9067d000 - 0x9072dfff edu.mit.Kerberos 6.0.12 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9072e000 - 0x90c01fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90c02000 - 0x90c0ffff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90c10000 - 0x90c75fff com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x90c76000 - 0x90c8afff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x90c8b000 - 0x90d08fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90d09000 - 0x90d10fff libbsm.dylib /usr/lib/libbsm.dylib
    0x90d11000 - 0x90d11fff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x90d12000 - 0x90d21fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x90d22000 - 0x90d59fff com.apple.SystemConfiguration 1.9.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90d5a000 - 0x90d6bfff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x90d6c000 - 0x90dbafff com.apple.datadetectorscore 1.0.1 (52.13) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x90dbb000 - 0x90dcafff com.apple.DSObjCWrappers.Framework 1.2.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x90dcb000 - 0x90dcbfff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90dcc000 - 0x90de2fff com.apple.CoreVideo 1.5.0 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90de3000 - 0x90deefff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x90def000 - 0x90eb6fff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90eb7000 - 0x90ee6fff com.apple.AE 402.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90ef1000 - 0x90efcfff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x90efd000 - 0x91211fff com.apple.QuickTime 7.4.1 (14) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91250000 - 0x91252fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91253000 - 0x91305fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x9130a000 - 0x9130ffff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x91310000 - 0x913b7fff com.apple.QD 3.11.52 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x913b8000 - 0x913c4fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x913c5000 - 0x913d5fff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x913d6000 - 0x913d6fff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x913d7000 - 0x91411fff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x91507000 - 0x91a1dfff com.apple.WebCore 5523.15.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91a1e000 - 0x91a1efff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91a1f000 - 0x920b8fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x920b9000 - 0x920c1fff com.apple.DiskArbitration 2.2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x920c2000 - 0x920c2fff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x920c3000 - 0x92107fff com.apple.DirectoryService.PasswordServerFramework 3.0.2 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x92108000 - 0x92108fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x92109000 - 0x921c4fff com.apple.WebKit 5523.15.1 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x921c5000 - 0x92206fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x92207000 - 0x92257fff com.apple.HIServices 1.7.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92258000 - 0x92258fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x92259000 - 0x9225dfff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9225e000 - 0x931e5fff com.apple.QuickTimeComponents.component 7.4.1 (14) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x931f4000 - 0x93207fff com.apple.IMUtils 4.0.2 (579) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x93208000 - 0x93232fff com.apple.CoreMediaPrivate 1.4 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x93233000 - 0x9328dfff com.apple.CoreText 2.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9328e000 - 0x932a5fff com.apple.datadetectors 1.0.1 (66.2) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x932a6000 - 0x932f5fff com.apple.QuickLookUIFramework 1.1 (170.2) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x932f6000 - 0x933b0fff com.apple.CoreServices.OSServices 224.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x933b1000 - 0x93402fff com.apple.framework.familycontrols 1.0.2 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x93403000 - 0x9343cfff com.apple.securityfoundation 3.0 (32989) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9343d000 - 0x934d0fff com.apple.ApplicationServices.ATS 3.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x934d1000 - 0x93516fff com.apple.Metadata 10.5.2 (398.7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x93517000 - 0x93519fff com.apple.CrashReporterSupport 10.5.2 (157) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9351a000 - 0x93536fff com.apple.IMFramework 4.0.2 (579) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x93537000 - 0x936b5fff com.apple.AddressBook.framework 4.1 (687.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x936b6000 - 0x936e3fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x936e4000 - 0x936e8fff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x936e9000 - 0x93727fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x93728000 - 0x93784fff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93785000 - 0x937a9fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x937aa000 - 0x93831fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x93832000 - 0x939fdfff com.apple.security 5.0.2 (33001) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x939fe000 - 0x93a3bfff com.apple.CoreMediaIOServicesPrivate 1.5 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x93a3c000 - 0x93a86fff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x93a87000 - 0x93ab8fff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93ab9000 - 0x93b62fff com.apple.JavaScriptCore 5523.10.3 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x93b63000 - 0x93c64fff com.apple.PubSub 1.0.2 (59) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x93c65000 - 0x93ce1fff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93ce2000 - 0x93ce2fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x93ce3000 - 0x93d3cfff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x93d3d000 - 0x93d53fff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x93d54000 - 0x93dcefff com.apple.print.framework.PrintCore 5.5.2 (245.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93dcf000 - 0x93deafff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93deb000 - 0x93e08fff com.apple.QuickLookFramework 1.1 (170.2) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x93e09000 - 0x93f68fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x93f69000 - 0x93fe8fff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x93fe9000 - 0x94075fff com.apple.LaunchServices 286.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x94076000 - 0x94873fff com.apple.AppKit 6.5.2 (949.26) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94874000 - 0x94a2ffff com.apple.QuartzComposer 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x94a30000 - 0x94a30fff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94a31000 - 0x94afcfff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94afd000 - 0x94b1bfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94b1c000 - 0x94ba5fff com.apple.DesktopServices 1.4.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x94d42000 - 0x94e21fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x94e57000 - 0x94f7bfff com.apple.audio.toolbox.AudioToolbox 1.5.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94f7c000 - 0x95007fff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9500e000 - 0x9502cfff com.apple.DirectoryService.Framework 3.5.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9502d000 - 0x95306fff com.apple.CoreServices.CarbonCore 785.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95307000 - 0x95379fff com.apple.PDFKit 2.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9537a000 - 0x954b1fff com.apple.imageKit 1.0.1 (1.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x954b2000 - 0x954b3fff libffi.dylib /usr/lib/libffi.dylib
    0x954b4000 - 0x954b4fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x954b5000 - 0x954c5fff com.apple.speech.synthesis.framework 3.6.59 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x954c6000 - 0x954f1fff libauto.dylib /usr/lib/libauto.dylib
    0x954f2000 - 0x9551afff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9551b000 - 0x95522fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x95523000 - 0x95542fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x95543000 - 0x95901fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95902000 - 0x95910fff libz.1.dylib /usr/lib/libz.1.dylib
    0x95911000 - 0x9596efff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x95ac8000 - 0x95ae0fff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x95ae1000 - 0x95bc2fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x95bc3000 - 0x95c3afff com.apple.CFNetwork 221.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x95c3b000 - 0x95d20fff com.apple.CoreData 100.1 (186) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95e33000 - 0x960adfff com.apple.Foundation 6.5.4 (677.15) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x960ae000 - 0x960b5fff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x960b6000 - 0x961fbfff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x96215000 - 0x96247fff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x96248000 - 0x96658fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96659000 - 0x9667dfff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9667e000 - 0x966c0fff com.apple.NavigationServices 3.5.1 (161) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x966c1000 - 0x966cafff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x966cb000 - 0x966cbfff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x966fc000 - 0x96a92fff com.apple.QuartzCore 1.5.2 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x96a93000 - 0x96a96fff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96a97000 - 0x96a9cfff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x96a9d000 - 0x96aa7fff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x96aa8000 - 0x96db0fff com.apple.HIToolbox 1.5.2 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96de2000 - 0x96de4fff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x96de5000 - 0x96debfff com.apple.print.framework.Print 218.0.2 (220.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x96ecc000 - 0x96ed3fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x96ed4000 - 0x96ed8fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x96ed9000 - 0x96f65fff com.apple.QTKit 7.4.1 (14) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    thank you!!!!!!!!

    The error you are getting is common when you have a router (wired and wireless) that doesn't work properly with iChat. The problem can be at either end or even both ends of the conversation, due to the equipment that's installed. All internet traffic travels through "ports". There are thousands of ports for specific types of data. Web pages use port 80, mail others, iChat yet others. A firewall is like a honeycomb with some of the holes punched through to let data through, and others blocked with wax. The ports are blocked to protect you from "bad guys" who are trying to get in and take over your machine for their own purposes.
    Home routers come with a service called NAT firewall. It is usually turned on by default and will block all but the most common ports to the Internet (these can be disabled, but it's fairly dangerous to do so). Since the hardware router blocks the ports, it doesn't matter what you set your software firewall to accept. The incoming data doesn't get that far. Some routers will automatically open the proper ports when they are requested by a program like iChat, but many do not open them automatically and have to have the ports manually opened and forwarded to a computer.
    Setting ports and port-forwarding can be a daunting task. You'll either need to find a 'techie' friend who understands how to set up your routers for special services, or get a router that is certified by Apple to work with iChat.
    http://docs.info.apple.com/article.html?artnum=93333 - The list hasn't been updated since July 2007, so there are many more that will work, but no official list. Of course, Apple's own hardware is set up for their programs, but they can be a little pricey. Apple does support their products, and you can get an Employee at an Apple Store to help you set up one of their devices.
    Note: All of my post assumes you have routers that are separate from your modem. If your broadband provider has sold or leased you a modem/router combo unit you will need to get more information (and possibly hardware) to proceed.

  • SSL certificates possible with different tools

    I had the impression that the SSL certificate can be configured with Linux eg. RHEL only by following the normal procedure of installing mod_ssl package, using genkey …etc
    But, I came to know that SSL certificate can be generated with the web server like Tomcat also. Is it correct that generation of SSL certificates is not limited to Linux only?
    I hope my query is clear that if SSL certificates can be generated not only with Linux but with other tools also.
    Please revert with the reply to my query.
    Regards

    Try using Google to get information.
    Just because you happen to be a user of these forums (and also glancing at your posting history to see what sort of issues you are curious about) doesn't mean you should ask every question here at this web forum site.
    When I place one of your sentences into Google,
    "I came to know that SSL certificate can be generated with the web server like Tomcat also"
    I get more than 800,000 search results that would easily guide toward better information than waiting for someone here to teach you about a non-Oracle topic.

  • I get error 0x80073cf9 now and I need help to FIX Windows Store can't update any Apps & can't install any Apps now?

    Hi I hope some one can tell me step by step how to fix windows 8.1, I can't update any of my Apps and can't install any new apps now and I get error code 0x80073cf9?  But my problem is different than most of the other FIXES I read about, because nothing
    fixes my problem to be able to install new Apps and get app updates and stop getting that error code?
    I keep getting same error code 0x80073cf9 after I try any of the FIXES I have read about and tried all  the fixes on  my Lenovo Z580 laptop, that came with windows 8 and updated to 8.1.  And ever since I bought this laptop I could
    always install and update all my apps for the last year when I had Win 8 and Win 8.1 now.   This has been going on since April and May and its driving me crazy!    And from the May updates I did get all the updates and
    I also installed the KB update  that said I need this KB to get all updates in the future.  
    But all the other people when they get this error code they could not even open and use any of their Apps already installed.  And they also get the error code when they try to update or get a new apps.   
    But I can click on any APP installed already and use all my Apps with no problems.     I have read so many how to fix this error code but nothing works! :-(      I have tried a lot of 
    the fixes on Microsoft forums that says do this and the fix will get rid of the error code but I keep getting the same error code after I try that  fixes.    And I have read a lot of other windows 8 an windows 8.1  web sites when
    I search for how to fix this error code?   And tried all of the fixes that were different from the Microsoft forum fixes. But after I try those fixes I still can't install any apps or can't get my app updates? 
    Please to any person's who can help me by giving me  more that 1 fix, because I have tried so many fixes, If you know more that 1 fix tell me how to do your fix step by step so I can understand what you say to do to fix my windows store? 
    Thanks for any and all help?  And if I don't get any help in this section of the forum I will try to put this in a different area, if I don't get any help at this section of the forum I will try to ask this in another part of he forum ok?   
    I really need HELP with this so I can get my laptop working again to install new apps and get the updates to my apps? 

    Fixed the problem by going to settings/store and logging out with apple ID.  Then logged back in with password and updates, apps, and iTunes store seem to work ok now.

  • Using WLST with ant. Need help

    I try to create ant task which connects to WLST engine and creates datasource.
    This is build.xml :
    +<?xml version="1.0" ?>+
    +<project name="deploy" default="connect" basedir=".">+
    +<echo> ${wl.home} </echo>+
    +<path id="wl.appc.classpath">+
    +<pathelement location="${wl.home}/server/lib/weblogic.jar"/>+
    +</path>+
    +<taskdef name="wlst" classpathref="wl.appc.classpath" classname="weblogic.ant.taskdefs.management.WLSTTask" />+
    +<target name="connect">+
    +<wlst executescriptbeforefile="true" debug="false">+
    +<script>+
    connect('weblogic','weblogic','t3://localhost:7001')
    +</script>+
    +</wlst>+
    +</target>+
    +</project>+
    Running this is script I'm getting the following error:
    Buildfile: c:\wl-ds.xml
    [echo] C:/Oracle/Middleware11.1.1.4/wlserver_10.3
    connect:
    [wlst] java.lang.NoClassDefFoundError: weblogic/management/scripting/WLSTInterpreterInvoker
    [wlst] Caused by: java.lang.ClassNotFoundException: weblogic.management.scripting.WLSTInterpreterInvoker
    [wlst] at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    [wlst] at java.security.AccessController.doPrivileged(Native Method)
    [wlst] at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    [wlst] at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    [wlst] at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    [wlst] at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
    [wlst] at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
    [wlst] Could not find the main class: weblogic.management.scripting.WLSTInterpreterInvoker. Program will exit.
    [wlst] Exception in thread "main"
    BUILD FAILED
    c:\wl-ds.xml:12: Java returned: 1
    Ant founds weblogic.ant.taskdefs.management.WLSTTask but in some reasons cannot find weblogic.management.scripting.WLSTInterpreterInvoker, although they both placed in the weblogic.jar
    I can't understand what I do wrong! Please, help or advice what to do...
    Edited by: creed on 03.03.2011 20:55

    Hi,
    Just wanted to check if the issue was resolved, I have the same issue , Below is the details of the error i get when i try jay's script
    Apache Ant version 1.8.0 compiled on February 1 2010
    Trying the default build file: build.xml
    Buildfile: D:\anttest\build.xml
    Adding reference: ant.PropertyHelper
    Detected Java version: 1.6 in: D:\SYS\JAVA\jdk1.6.0_21\jre
    Detected OS: Windows Server 2008
    Adding reference: ant.ComponentHelper
    Setting ro project property: ant.file -> D:\anttest\build.xml
    Setting ro project property: ant.file.type -> file
    Adding reference: ant.projectHelper
    Adding reference: ant.parsing.context
    Adding reference: ant.targets
    parsing buildfile D:\anttest\build.xml with URI = file:/D:/anttest/build.xml
    Setting ro project property: ant.project.name -> deploy
    Adding reference: deploy
    Setting ro project property: ant.project.default-target -> run
    Setting ro project property: ant.file.deploy -> D:\anttest\build.xml
    Setting ro project property: ant.file.type.deploy -> file
    Project base dir set to: D:\anttest
    +Target:
    +Target: connect
    +Target: run
    Adding reference: ant.LocalProperties
    parsing buildfile jar:file:/D:/SYS/apache-ant-1.8.0/lib/ant.jar!/org/apache/tools/ant/antlib.xml with URI = jar:file:/D:/SYS/apache-ant-1.8.0/lib/ant.jar!/org/apache/tools/ant/antlib.xml from a zip file
    Setting project property: wl.home -> D:\SYS\Weblogic1034\wlserver_10.3
    Adding reference: wl.classpath
    fileset: Setup scanner in dir D:\SYS\Weblogic1034\wlserver_10.3\server\lib with patternSet{ includes: [*.jar] excludes: [] }
    Finding class weblogic.ant.taskdefs.management.WLSTTask
    Loaded from D:\SYS\Weblogic1034\wlserver_10.3\server\lib\weblogic.jar weblogic/ant/taskdefs/management/WLSTTask.class
    Class org.apache.tools.ant.taskdefs.Java loaded from parent loader (parentFirst)
    Class weblogic.ant.taskdefs.management.WLSTTask loaded from ant loader (parentFirst)
    Class java.lang.Object loaded from parent loader (parentFirst)
    Class java.lang.Throwable loaded from parent loader (parentFirst)
    Class org.apache.tools.ant.BuildException loaded from parent loader (parentFirst)
    Class java.lang.Exception loaded from parent loader (parentFirst)
    Class java.lang.IllegalStateException loaded from parent loader (parentFirst)
    Class java.io.Reader loaded from parent loader (parentFirst)
    Class java.io.StringReader loaded from parent loader (parentFirst)
    Class java.lang.String loaded from parent loader (parentFirst)
    Class java.io.IOException loaded from parent loader (parentFirst)
    Class java.io.OutputStream loaded from parent loader (parentFirst)
    Class java.io.FileOutputStream loaded from parent loader (parentFirst)
    +Datatype wlst weblogic.ant.taskdefs.management.WLSTTask
    Setting ro project property: ant.project.invoked-targets -> run
    Attempting to create object of type org.apache.tools.ant.helper.DefaultExecutor
    Adding reference: ant.executor
    Build sequence for target(s) `run' is [connect, run]
    Complete build sequence is [connect, run, ]
    connect:
    [echo] WebLogic Home is : D:\SYS\Weblogic1034\wlserver_10.3
    Class org.apache.tools.ant.types.Path loaded from parent loader (parentFirst)
    Finding class weblogic.ant.taskdefs.management.WLSTScript
    Loaded from D:\SYS\Weblogic1034\wlserver_10.3\server\lib\weblogic.jar weblogic/ant/taskdefs/management/WLSTScript.class
    Class org.apache.tools.ant.Task loaded from parent loader (parentFirst)
    Class weblogic.ant.taskdefs.management.WLSTScript loaded from ant loader (parentFirst)
    Class java.lang.Boolean loaded from parent loader (parentFirst)
    Class java.lang.StringBuilder loaded from parent loader (parentFirst)
    Class org.apache.tools.ant.types.Commandline$Argument loaded from parent loader (parentFirst)
    Class org.apache.tools.ant.util.FileUtils loaded from parent loader (parentFirst)
    Class java.io.PrintWriter loaded from parent loader (parentFirst)
    Class java.io.LineNumberReader loaded from parent loader (parentFirst)
    Finding class weblogic.utils.StringUtils
    Loaded from D:\SYS\Weblogic1034\modules\com.bea.core.utils_1.9.0.0.jar weblogic/utils/StringUtils.class
    Class weblogic.utils.StringUtils loaded from ant loader (parentFirst)
    Class java.lang.SecurityException loaded from parent loader (parentFirst)
    Class java.lang.NoSuchMethodException loaded from parent loader (parentFirst)
    Finding class weblogic.utils.StringUtils$StringMaker
    Loaded from D:\SYS\Weblogic1034\modules\com.bea.core.utils_1.9.0.0.jar weblogic/utils/StringUtils$StringMaker.class
    Class weblogic.utils.StringUtils$StringMaker loaded from ant loader (parentFirst)
    Finding class weblogic.utils.StringUtils$ReflectedStringMaker
    Loaded from D:\SYS\Weblogic1034\modules\com.bea.core.utils_1.9.0.0.jar weblogic/utils/StringUtils$ReflectedStringMaker.class
    Class weblogic.utils.StringUtils$ReflectedStringMaker loaded from ant loader (parentFirst)
    Class java.lang.Class loaded from parent loader (parentFirst)
    Class java.lang.Integer loaded from parent loader (parentFirst)
    Class java.lang.reflect.Constructor loaded from parent loader (parentFirst)
    Class java.lang.reflect.InvocationTargetException loaded from parent loader (parentFirst)
    Class java.lang.IllegalAccessException loaded from parent loader (parentFirst)
    Class java.lang.InstantiationException loaded from parent loader (parentFirst)
    Class java.lang.RuntimeException loaded from parent loader (parentFirst)
    Class java.lang.Character loaded from parent loader (parentFirst)
    Class java.io.File loaded from parent loader (parentFirst)
    Class org.apache.tools.ant.types.CommandlineJava loaded from parent loader (parentFirst)
    [wlst] Executing 'D:\SYS\JAVA\jdk1.6.0_21\jre\bin\java.exe' with arguments:
    [wlst] '-Ddebug=false'
    [wlst] '-DfailOnError=true'
    [wlst] '-DexecuteScriptBeforeFile=true'
    [wlst] '-DscriptTempFile=C:\Users\Administrator\AppData\Local\Temp\2\wlsttempfile214271013.py'
    [wlst] '-classpath'
    [wlst] 'D:\SYS\apache-ant-1.8.0\lib\ant-launcher.jar;D:\SYS\apache-ant-1.8.0\lib\ant-antlr.jar;D:\SYS\apache-ant-1.8.0\lib\ant-apache-bcel.jar;D:\SYS\apache-ant-1.8.0\lib\ant-apache-bsf.jar;D:\SYS\apache-ant-1.8.0\lib\ant-apache-log4j.jar;D:\SYS\apache-ant-1.8.0\lib\ant-apache-oro.jar;D:\SYS\apache-ant-1.8.0\lib\ant-apache-regexp.jar;D:\SYS\apache-ant-1.8.0\lib\ant-apache-resolver.jar;D:\SYS\apache-ant-1.8.0\lib\ant-apache-xalan2.jar;D:\SYS\apache-ant-1.8.0\lib\ant-commons-logging.jar;D:\SYS\apache-ant-1.8.0\lib\ant-commons-net.jar;D:\SYS\apache-ant-1.8.0\lib\ant-jai.jar;D:\SYS\apache-ant-1.8.0\lib\ant-javamail.jar;D:\SYS\apache-ant-1.8.0\lib\ant-jdepend.jar;D:\SYS\apache-ant-1.8.0\lib\ant-jmf.jar;D:\SYS\apache-ant-1.8.0\lib\ant-jsch.jar;D:\SYS\apache-ant-1.8.0\lib\ant-junit.jar;D:\SYS\apache-ant-1.8.0\lib\ant-netrexx.jar;D:\SYS\apache-ant-1.8.0\lib\ant-nodeps.jar;D:\SYS\apache-ant-1.8.0\lib\ant-stylebook.jar;D:\SYS\apache-ant-1.8.0\lib\ant-swing.jar;D:\SYS\apache-ant-1.8.0\lib\ant-testutil.jar;D:\SYS\apache-ant-1.8.0\lib\ant-trax.jar;D:\SYS\apache-ant-1.8.0\lib\ant.jar;D:\SYS\apache-ant-1.8.0\lib\xercesImpl.jar;D:\SYS\apache-ant-1.8.0\lib\xml-apis.jar;D:\SYS\JAVA\jdk1.6.0_21\lib\tools.jar'
    [wlst] 'weblogic.management.scripting.WLSTInterpreterInvoker'
    [wlst]
    [wlst] The ' characters around the executable and arguments are
    [wlst] not part of the command.
    [wlst] Using input " "
    Execute:Java13CommandLauncher: Executing 'D:\SYS\JAVA\jdk1.6.0_21\jre\bin\java.exe' with arguments:
    '-Ddebug=false'
    '-DfailOnError=true'
    '-DexecuteScriptBeforeFile=true'
    '-DscriptTempFile=C:\Users\Administrator\AppData\Local\Temp\2\wlsttempfile214271013.py'
    '-classpath'
    'D:\SYS\apache-ant-1.8.0\lib\ant-launcher.jar;D:\SYS\apache-ant-1.8.0\lib\ant-antlr.jar;D:\SYS\apache-ant-1.8.0\lib\ant-apache-bcel.jar;D:\SYS\apache-ant-1.8.0\lib\ant-apache-bsf.jar;D:\SYS\apache-ant-1.8.0\lib\ant-apache-log4j.jar;D:\SYS\apache-ant-1.8.0\lib\ant-apache-oro.jar;D:\SYS\apache-ant-1.8.0\lib\ant-apache-regexp.jar;D:\SYS\apache-ant-1.8.0\lib\ant-apache-resolver.jar;D:\SYS\apache-ant-1.8.0\lib\ant-apache-xalan2.jar;D:\SYS\apache-ant-1.8.0\lib\ant-commons-logging.jar;D:\SYS\apache-ant-1.8.0\lib\ant-commons-net.jar;D:\SYS\apache-ant-1.8.0\lib\ant-jai.jar;D:\SYS\apache-ant-1.8.0\lib\ant-javamail.jar;D:\SYS\apache-ant-1.8.0\lib\ant-jdepend.jar;D:\SYS\apache-ant-1.8.0\lib\ant-jmf.jar;D:\SYS\apache-ant-1.8.0\lib\ant-jsch.jar;D:\SYS\apache-ant-1.8.0\lib\ant-junit.jar;D:\SYS\apache-ant-1.8.0\lib\ant-netrexx.jar;D:\SYS\apache-ant-1.8.0\lib\ant-nodeps.jar;D:\SYS\apache-ant-1.8.0\lib\ant-stylebook.jar;D:\SYS\apache-ant-1.8.0\lib\ant-swing.jar;D:\SYS\apache-ant-1.8.0\lib\ant-testutil.jar;D:\SYS\apache-ant-1.8.0\lib\ant-trax.jar;D:\SYS\apache-ant-1.8.0\lib\ant.jar;D:\SYS\apache-ant-1.8.0\lib\xercesImpl.jar;D:\SYS\apache-ant-1.8.0\lib\xml-apis.jar;D:\SYS\JAVA\jdk1.6.0_21\lib\tools.jar'
    'weblogic.management.scripting.WLSTInterpreterInvoker'
    The ' characters around the executable and arguments are
    not part of the command.
    [wlst] java.lang.NoClassDefFoundError: weblogic/management/scripting/WLSTInterpreterInvoker
    [wlst] Caused by: java.lang.ClassNotFoundException: weblogic.management.scripting.WLSTInterpreterInvoker
    [wlst] at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    [wlst] at java.security.AccessController.doPrivileged(Native Method)
    [wlst] at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    [wlst] at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    [wlst] at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    [wlst] at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    [wlst] Could not find the main class: weblogic.management.scripting.WLSTInterpreterInvoker. Program will exit.
    [wlst] Exception in thread "main"

  • Connect to mysql DB (An unidentified error has occurred.) plz need help...

    I have been unable to create a database connection in dreamweaver to my MySql
    server.  Each time I receive the message "an unidentified error has occurred".
    I can use pure php code to create a connection successfully:
    <?php
    $username = "root";
    $password = "password";
    $hostname = "localhost";
    $dbh = mysql_connect($hostname, $username, $password)
    or die("Unable to connect to mysql");
    print "connected to mysql<br>";
    $selected = mysql_select_db("test",$dbh)
    or die("Could not select first_test");
    if (mysql_query("insert into test_table values('5')")) {
    print "successfully inserted record";
    else {
    print "Failed to insert record";
    mysql_close($dbh);
    ?>
    This works, I can successfully insert a record.  However, if I try and create
    a connection in Dreamweaver with these same variables, I receive the message
    "an unidentified error has occurred".  I have tried, deleting the _mm
    connection scripts folder and recreating them.  I have used the mx2004 updater,
    I have tried all document types...  nothing seems to work...
    i am using local server (phptraid)
    PHPTriad 2.2 contains the following changes:
    Updated packages for Apache(1.3.23), MySQL(3.23.48) and PHP(4.1.1).
    also using remote host at (www.0fees.net)
    last thing i would to say in my computer i success only one time to make connection in window 7 - dreamweaver cs4
    and i create this site mwlobby.0fees.net
    but now i downloaded dreamweaver cs5 and i need to install new windows
    so i need help
    any suggestions?

    Turn your iPhone to a DFU mode and restore it

  • Cocoa Error 404 -- what happened? need help!!

    After accidentally deleting a subfolder within the "Google" folder in my user related account, the Safari version 3 (the latest one, before the beta 4) stopped loading the gmail.
    it kept on saying Cocoa Error 404. Operation could not be completed. (Cocoa error 404.)” (NSCocoaErrorDomain:404)
    I tried to undo the damage with replacement of the entire Google folder, including re-installing the folder from old copies (using Time Machine). I tried to re-install the Google Gears in Safari. It didn't work.
    I also tried to install the new Safari 4.0. I tried to reset everything, emptying the cache, etc. Nothing worked.
    However, despite this problem, Safari loads other Google functions fine (Calendar, Reader, etc). And Firefox still loads Gmail fine. I wonder what could be the cause of Safari's problems?!
    Need help, thank you!
    Message was edited by: GeorgeCxx

    i sovlved my own question: the guilty party in question is the Google gear plug-in for internet plug-ins (i deleted all the Google plug-ins). it solved all problems. amazing.

Maybe you are looking for

  • Pull-up resistor R Series

    Hi I am using NI PCI 7833R. I would like to raise the voltage from 3V to 5V. I have configured one DIO pin as an output and I have connected to it one resistor equal to 10kOhms. One end of the resistor is connected to the output of the PCI board and

  • Reg. Process Chanins.........,

    Hi gurus, i want some practical stuff on Process Chains...., i have already How to documents. except this i need more information for practical purpose. If any one have can you send to my mail id please. waiting for ur valuable stuff. thankx in advan

  • Could not create JCOClientConnection

    Hello, I've created a WD application that use JCO connection. I successfully run it from the web dynpro content administrator. and the ping/test for the MODELDATA is successful. but If I copy the app. url an paste it to different browser, or if I try

  • Director mx 2004 won't display Flash 8 swf files & other Flash media

    I have created a Flash 8 Project which has audio, video (which are converted to swf files fom flvs), flashpaper.  This application is driven by XML. However  this application works fine outside director, but when I import the main swf file into direc

  • /boot on a usb drive [SOLVED]

    Hey everybody I have been trying to get a fresh install to have /boot on a usb drive and the rest on the hard drives. My setup is 5 drives raid 5 (md0)  --->  encrypt layer ---> lvm with a root and home That whole setup works fine I can mount it from