Problem connecting DB to struts app

Hi,
I have made a struts app to get data from mysql DB i am getting follwoing erer
java.lang.NoClassDefFoundError: org/apache/commons/pool/impl/GenericObjectPool
     at java.lang.Class.getDeclaredConstructors0(Native Method)
     at java.lang.Class.privateGetDeclaredConstructors(Class.java:2328)
     at java.lang.Class.getConstructor0(Class.java:2640)
     at java.lang.Class.newInstance0(Class.java:321)
     at java.lang.Class.newInstance(Class.java:303)
     at org.apache.struts.util.RequestUtils.applicationInstance(RequestUtils.java:231)
     at org.apache.struts.action.ActionServlet.initModuleDataSources(ActionServlet.java:1081)
     at org.apache.struts.action.ActionServlet.init(ActionServlet.java:472)
     at javax.servlet.GenericServlet.init(GenericServlet.java:212)
     at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:888)
     at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:621)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:163)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:144)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
     at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2358)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:133)
pl help

I have already put the jars files for DBCP and the JDBC driver in web-inf/libs....
i am new to DB and struts...pl cud u tell me in detail what to do......i would be very oblidged...pl
thanks

Similar Messages

  • Problem with DB in struts app

    Hi,
    I have made a struts app to get data from mysql DB i am getting follwoing erer
    java.lang.NoClassDefFoundError: org/apache/commons/pool/impl/GenericObjectPool
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Class.java:2328)
    at java.lang.Class.getConstructor0(Class.java:2640)
    at java.lang.Class.newInstance0(Class.java:321)
    at java.lang.Class.newInstance(Class.java:303)
    at org.apache.struts.util.RequestUtils.applicationInstance(RequestUtils.java:231)
    at org.apache.struts.action.ActionServlet.initModuleDataSources(ActionServlet.java:1081)
    at org.apache.struts.action.ActionServlet.init(ActionServlet.java:472)
    at javax.servlet.GenericServlet.init(GenericServlet.java:212)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:888)
    at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:621)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:163)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:144)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2358)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:133)
    pl help

    hi,
    iam have got the same poblem in tomcat and i got solution.so if ur using tomcat this solution would be helpfull.
    1) check weather u have ur jdbc jars (ojdbc-14.jar for oracle) in CATALINA_HOME/common/lib folder.
    2) next check weather u have some thing like this in ur file named as <urwebapp>.xml in CATALINA_HOME/conf/Catalina/<servername or localhost> .i thiink this file is called as ur webapp context xml file (further i will refer this with context.xml).
    <Context docBase="<location of ur webapp>" path="/<urappname>">
    <Resource auth="Container" driverClassName="fully qualified driver classname" maxActive="20" maxIdle="10" maxWait="-1" name="jdbc/<urDBLOKKUPNAME>" password="<urdb password>" type="javax.sql.DataSource" url="<dburl>" username="<ur db username>"/>
    <ResourceParams name="jdbc/<urDBLOKKUPNAME>">
    <parameter>
    <name>factory</name>
    <value>org.apache.commons.dbcp.BasicDataSourceFactory</value>
    </parameter>
    <parameter>
    <name>driverClassName</name>
    <value>fill with the above value</value>
    </parameter>
    <parameter>
    <name>url</name>
    <value>fill with the above value</value>
    </parameter>
    <parameter>
    <name>username</name>
    <value>fill with the above value</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>fill with the above value</value>
    </parameter>
    <parameter>
    <name>maxActive</name>
    <value>20</value>
    </parameter>
    <parameter>
    <name>maxIdle</name>
    <value>10</value>
    </parameter>
    <parameter>
    <name>maxWait</name>
    <value>-1</value>
    </parameter>
    </ResourceParams>
    </Context>
    3) type this in ur web.xml
    <resource-ref>
    <description>fill with the above value</description>
    <res-ref-name>fill with the above value</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    <res-sharing-scope>Shareable</res-sharing-scope>
    </resource-ref>
    4) lookup in ur java code as
    private javax.sql.DataSource getDB() throws javax.naming.NamingException {
    javax.naming.Context c = new javax.naming.InitialContext();
    return (javax.sql.DataSource) c.lookup("java:comp/env/jdbc/<ur lookupname given in web.xml.and context.xml>");
    5) callthis method it will return a datasource object and u can get connection from it
    Connection con = getDB().getConnection();
    hope this will help u.
    regards,
    varma

  • TS1702 when attempting to update apps update all I get "cannot connect to iTunes Store" but I have no problem connecting directly to iTunes store and I am not asked to enter password.  any suggestions?  Thanks....

    Hi - while attempting to update apps from the "App Store" the message "Cannot connect to the iTunes Store" but am not asked for a password or user id BUT I have no problem connecting to the iTunes store directly.
    Thoughts?
    Thanks....
    Mike

    See these previous discussions:
    App Store Updates (but only Updates)...: Apple Support Communities
    Apps suddenly don't update: Apple Support Communities

  • Problem connecting to webservice in AIR app

    Ok, bare with me, I am a newbie to flex development. I am having a problem connecting to a SOAP web service through my AIR app.
    I have the service running on a Glassfish server and I have verified that it is working fine.
    I have the following cross domain file in my server root (though I'm  not sure if this is necessary with an AIR app):
    <?xml  version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM  "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
    <allow-access-from domain="*"/>
    <site-control permitted-cross-domain-policies="all" />
    <allow-http-request-headers-from domain="*" headers="SOAPAction"/>
    </cross-domain-policy>
    I want to create an AIR application that connects to this webservice but every time I connect I get this error message:
    "Unable to load WSDL. If currently online, please verify the URI and/or format of the WSDL....."
    But...... when I change my AIR application to a web application and run it in the browser it connects to the web service perfectly.

    Does anyone have any ideas on this?

  • Why can't I update my apps on my ipad, I have no problem connecting to wifi

    I cannot update my apps on my ipad. I have no problem connecting to the internet, just to the Itunes store

    I get the message "cannot connect to Itunes Store". Also I recently changed my password (I hope it was just my password although it asked me for my apple ID number. Could i have changed my account sign in, and if so, how can I get it back?

  • Problem in connecting MaxDB with Struts 1.2.

    hi,
    how to connect MaxDB in Struts 1.2. when i am trying to connect, i got an error "Unable to initilize struts ActionServlet due to unexpected exception". what are the modifications must be done in struts-config.xml.

    Hi guys,,
    The CCA no longer shows unsupported error message. I can connect the router with CCA right now, but it shows "Unreachable : Unknown Status". I can't see the front panel of the device and I can't configure anything.
    Is there anyone know how to fix it?
    I am really confused right now.
    Thanks in advance.

  • Having problems connecting iMac(late 2006) running 10.7.5 to a Samsung Flat Screen TV using separate audio/speaker cable and HDMI standard cable, mini-DVI to HDMI video converter.  TV displays generic Apple galaxy background and "some" windows (e.g. scree

    Not sure that I have selected the correct forum.  Hope my questions are clearly stated.
    Having problems connecting iMac(late 2006) running 10.7.5 to a Samsung Flat Screen TV using separate audio/speaker cable and HDMI standard cable, mini-DVI to HDMI video converter.  TV displays generic Apple galaxy background and "some" windows (e.g. screen resolution choices).   It does not show Mail or Safari menus.  System preferences'  display "gathered" the Samsung and chose its resolution.  I did not find a way to select the Samsung as my display.
    In addition to having old hardware, we have Verizon FIOS providing internet and TV access.  Is there any way to make this work for us?  We would like to stream video (Netflix) and view shows from the Web.  Do we need Apple TV to do this?  Or is it not possible with our old iMac?  My husband thinks that our Airport could be a factor. 
    Thank you

    Lately, I have been seeing a lot of posts with users trying to use their Macs/iMacs to mirror their streaming video from their Macs to an HDTV.
    There are, actually, many alternatives to choose from than just from a Mac.
    You need to have or invest in a WiFi capable router for all of these examples.
    Apple TV only integrates with WiFi and newer Mac hardware. So, if you want to have total integrated experience, if you have a 2011 Mac or newer, you might as well pay the $100 for the AppleTV box.
    If you have a older Mac, like I have noticed many users do, then you have other options.
    If you want to elimate long cable clutter and having your Mac at the mercy of your TV all of the time,  you can still use the AppleTV box independently or purchase cheaper alternative media streaming boxes from Roku, Sony, Boxee or any number of electronics manufacturers that now have media streaming boxes and media streaming capability built into DVD/Blu-ray players.
    These eliminate long cable clutter by being close to the HDTV where shorter, less expensive cables can be used.
    Another alternative for iPad users is to use an iPad with the USB/HDMI video adapter and use your iPad as the streaming box. This ties up your iPad in much the same way as it does with your Mac, but again the iPad can be close to the TV and use minimal cables to the TV.
    Another alternative to is to use a combination of an iPad and your Mac to stream content that is only available to stream online from a computer. In this case, you can use a desktop remote app on your iPad and Mac. A good and cheap Desktop Remote app is Splashtop Remote. This allows you to completely connect your iPad remotely, over Wifi, to your iMac desktop. The app streams both video and sound to the iPad which is still connected to your HDTV. The resultant stream video picture will be smaller than the size of your HDTV, but it will still be plenty large enough to watch. Again, if you own a iPad and an Intel Mac, this method also allows minimal cabling to the TV.

  • "There was a problem connecting to the server" in iTunes after migrating to new mac

    I have a problem that is driving me crazy with my brand new iMac. I see many other people posting similar issues, but none of the other solutions seem to work for me.
    I had a MacPro and bought a new iMac, on which I used Migration Assistant to set up. So the new iMac is virtually the same as my old machine in terms of appearance and installed applications. Both machines have Mountain Lion 10.8.2. All software on both machines has been through Software Update and is fully up to date, as are the connected devices (iPhone and iPad).
    The problem is with iTunes. Every time I start iTunes (I think at the moment it checks my two connected devices) I get a pop up dialogue saying:
    There was a problem connecting to the server "MacPro".
    The server may not exist or it is unavailable at this time. Check the server name or IP address, check your network connection, and then try again.
    This dialogue continues to pop up constantly as long as iTunes is open, interrupting my work and frustrating me no end. The old machine is of course turned off and indeed is not available -- but I can't find what on the new iMac is so desperate to connect to it.
    So far I have tried completing erasing my iTunes library, deleting all the preferences, reinstalling iTunes from a fresh download of the dmg, safe rebooting several times with no peripherals connected at all, and deleteing other preferences like the Login Items, iPhone config and iPhoto. I have also cleared Recent Items from the apple menu and opened "Connect to Server" in the finder and cleared all servers from the dropdown menu.
    Last night I also completely restored my iPhone from scratch to see if that would clear away the issue and I have connected both iPhone and iPad to go through any apps that have permission to write content to my computer and deleted all of them completely from the devices.
    Nothing has changed at all after all that, and I have run out of ideas. Clearly there is something somewhere that has my old machine's name hard coded in it but I can't see any way to search for it. I would grep my Library folder but I think a lot of the files are binary so I'm not sure that would unearth anything. I've seen many posts saying that Apple phone support (which I would qualify for) can't help with this issue and so I have put off phoning them to simply run through all the things I've already tried.
    Any advice that anyone could offer would be extremely helpful. I can't use iTunes at all like this as it disrupts everything I try to do on the new machine.
    many thanks!!

    Nothing at all? Can't anyone help with this issue at all? I would be grateful for any suggstions as it is driving me crazy. It happens every time I open iTunes and also every time I open Mail.

  • Problem connecting from Oracle to MS Excel - 64 bit

    Hello,
    I have problem connecting to excel from oracle 11.2 using DG4ODBC.
    OS - Windows 7 - 64 bit
    Database version :- Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit
    Created System DSN using ODBC:
    Data Source Name = test12
    Oracle home Path :- D:\app\11g64db\product\11.2.0\dbhome_1
    Content of initdg4odbc.ora file :
    # This is a sample agent init file that contains the HS parameters that are
    # needed for the Database Gateway for ODBC
    # HS init parameters
    HS_FDS_CONNECT_INFO = test12
    HS_FDS_TRACE_LEVEL = 255
    # Environment variables required for the non-Oracle system
    #set <envvar>=<value>
    Content of listener.ora:
    # listener.ora Network Configuration File: D:\app\11g64db\product\11.2.0\dbhome_1\NETWORK\ADMIN\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (GLOBAL_DBNAME = vis)
          (ORACLE_HOME = D:\app\11g64db\product\11.2.0\dbhome_1)
          (SID_NAME = vis)
        (SID_DESC =
          (PROGRAM = dg4odbc)
          (SID_NAME = dg4odbc)
          (ORACLE_HOME = D:\app\11g64db\product\11.2.0\dbhome_1)
    LISTENER =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    ADR_BASE_LISTENER = D:\app\11g64db
    Content of tnsnames.ora:
    # tnsnames.ora Network Configuration File: D:\app\11g64db\product\11.2.0\dbhome_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    excel_test =
       (DESCRIPTION=
        (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521))
        (CONNECT_DATA=(SID=dg4odbc))
        (HS=OK)
    VIS =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = vis)
    Listener status
    LSNRCTL for 64-bit Windows: Version 11.2.0.4.0 - Production on 29-AUG-2014 13:56
    :11
    Copyright (c) 1991, 2013, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for 64-bit Windows: Version 11.2.0.4.0 - Produ
    ction
    Start Date                29-AUG-2014 13:34:58
    Uptime                    0 days 0 hr. 21 min. 12 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   D:\app\11g64db\product\11.2.0\dbhome_1\network\admin\l
    istener.ora
    Listener Log File         D:\app\11g64db\diag\tnslsnr\Est-Subramanya\listener\al
    ert\log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1521)))
    Services Summary...
    Service "dg4odbc" has 1 instance(s).
      Instance "dg4odbc", status UNKNOWN, has 1 handler(s) for this service...
    Service "vis" has 2 instance(s).
      Instance "vis", status UNKNOWN, has 1 handler(s) for this service...
      Instance "vis", status READY, has 1 handler(s) for this service...
    Service "visXDB" has 1 instance(s).
      Instance "vis", status READY, has 1 handler(s) for this service...
    The command completed successfully
    DB Link:
    CREATE PUBLIC DATABASE LINK TEST123 USING 'excel_test';
    error while querying the data:
    select * from test@test123;
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    ORA-02063: preceding line from TEST123
    28500. 00000 -  "connection from ORACLE to a non-Oracle system returned this message:"
    *Cause:    The cause is explained in the forwarded message.
    *Action:   See the non-Oracle system's documentation of the forwarded
               message.
    Error at Line: 1 Column: 20
    Appreciate the help in advance............
    Thanks...

    Also HS log file showed error.. Below are the contents of the trace file:
    Oracle Corporation --- FRIDAY    AUG 29 2014 14:01:06.212
    Heterogeneous Agent Release
    11.2.0.4.0
    Oracle Corporation --- FRIDAY    AUG 29 2014 14:01:06.211
        Version 11.2.0.4.0
    Entered hgogprd
    HOSGIP for "HS_FDS_TRACE_LEVEL" returned "255"
    Entered hgosdip
    setting HS_OPEN_CURSORS to default of 50
    setting HS_FDS_RECOVERY_ACCOUNT to default of "RECOVER"
    setting HS_FDS_RECOVERY_PWD to default value
    setting HS_FDS_TRANSACTION_LOG to default of HS_TRANSACTION_LOG
    setting HS_IDLE_TIMEOUT to default of 0
    setting HS_FDS_TRANSACTION_ISOLATION to default of "READ_COMMITTED"
    setting HS_NLS_NCHAR to default of "UCS2"
    setting HS_FDS_TIMESTAMP_MAPPING to default of "DATE"
    setting HS_FDS_DATE_MAPPING to default of "DATE"
    setting HS_RPC_FETCH_REBLOCKING to default of "ON"
    setting HS_FDS_FETCH_ROWS to default of "100"
    setting HS_FDS_RESULTSET_SUPPORT to default of "FALSE"
    setting HS_FDS_RSET_RETURN_ROWCOUNT to default of "FALSE"
    setting HS_FDS_PROC_IS_FUNC to default of "FALSE"
    setting HS_FDS_MAP_NCHAR to default of "TRUE"
    setting HS_NLS_DATE_FORMAT to default of "YYYY-MM-DD HH24:MI:SS"
    setting HS_FDS_REPORT_REAL_AS_DOUBLE to default of "FALSE"
    setting HS_LONG_PIECE_TRANSFER_SIZE to default of "65536"
    setting HS_SQL_HANDLE_STMT_REUSE to default of "FALSE"
    setting HS_FDS_QUERY_DRIVER to default of "TRUE"
    setting HS_FDS_SUPPORT_STATISTICS to default of "FALSE"
    setting HS_FDS_QUOTE_IDENTIFIER to default of "TRUE"
    setting HS_KEEP_REMOTE_COLUMN_SIZE to default of "OFF"
    setting HS_FDS_GRAPHIC_TO_MBCS to default of "FALSE"
    setting HS_FDS_MBCS_TO_GRAPHIC to default of "FALSE"
    Default value of 64 assumed for HS_FDS_SQLLEN_INTERPRETATION
    setting HS_CALL_NAME_ISP to "gtw$:SQLTables;gtw$:SQLColumns;gtw$:SQLPrimaryKeys;gtw$:SQLForeignKeys;gtw$:SQLProcedures;gtw$:SQLStatistics;gtw$:SQLGetInfo"
    setting HS_FDS_DELAYED_OPEN to default of "TRUE"
    setting HS_FDS_WORKAROUNDS to default of "0"
    Exiting hgosdip, rc=0
    ORACLE_SID is "dg4odbc"
    Product-Info:
      Port Rls/Upd:4/0 PrdStat:0
      Agent:Oracle Database Gateway for ODBC
      Facility:hsa
      Class:ODBC, ClassVsn:11.2.0.4.0_0019, Instance:dg4odbc
    Exiting hgogprd, rc=0
    hostmstr: 8795961769984: HOA After hoagprd
    hostmstr: 8795961769984: HOA Before hoainit
    Entered hgoinit
    HOCXU_COMP_CSET=1
    HOCXU_DRV_CSET=178
    HOCXU_DRV_NCHAR=1000
    HOCXU_DB_CSET=873
    HS_LANGUAGE not specified
    rc=1239980 attempting to get LANG environment variable.
    HOCXU_SEM_VER=112000
    Entered hgolofn at 2014/08/29-14:01:06
    Exiting hgolofn, rc=0 at 2014/08/29-14:01:06
    HOSGIP for "HS_OPEN_CURSORS" returned "50"
    HOSGIP for "HS_FDS_FETCH_ROWS" returned "100"
    HOSGIP for "HS_LONG_PIECE_TRANSFER_SIZE" returned "65536"
    HOSGIP for "HS_NLS_NUMERIC_CHARACTER" returned ".,"
    HOSGIP for "HS_KEEP_REMOTE_COLUMN_SIZE" returned "OFF"
    HOSGIP for "HS_FDS_DELAYED_OPEN" returned "TRUE"
    HOSGIP for "HS_FDS_WORKAROUNDS" returned "0"
    HOSGIP for "HS_FDS_MBCS_TO_GRAPHIC" returned "FALSE"
    HOSGIP for "HS_FDS_GRAPHIC_TO_MBCS" returned "FALSE"
    Invalid value of 64 given for HS_FDS_SQLLEN_INTERPRETATION
    treat_SQLLEN_as_compiled = 1
    Exiting hgoinit, rc=0 at 2014/08/29-14:01:06
    hostmstr: 8795961769984: HOA After hoainit
    hostmstr: 8795961769984: HOA Before hoalgon
    Entered hgolgon at 2014/08/29-14:01:06
    reco:0, name:OPTIM, tflag:0
    Entered hgosuec at 2014/08/29-14:01:06
    Exiting hgosuec, rc=0 at 2014/08/29-14:01:06
    HOSGIP for "HS_FDS_RECOVERY_ACCOUNT" returned "RECOVER"
    HOSGIP for "HS_FDS_TRANSACTION_LOG" returned "HS_TRANSACTION_LOG"
    HOSGIP for "HS_FDS_TIMESTAMP_MAPPING" returned "DATE"
    HOSGIP for "HS_FDS_DATE_MAPPING" returned "DATE"
    HOSGIP for "HS_FDS_MAP_NCHAR" returned "TRUE"
    HOSGIP for "HS_FDS_RESULTSET_SUPPORT" returned "FALSE"
    HOSGIP for "HS_FDS_RSET_RETURN_ROWCOUNT" returned "FALSE"
    HOSGIP for "HS_FDS_PROC_IS_FUNC" returned "FALSE"
    HOSGIP for "HS_FDS_REPORT_REAL_AS_DOUBLE" returned "FALSE"
    using OPTIM as default value for "HS_FDS_DEFAULT_OWNER"
    HOSGIP for "HS_SQL_HANDLE_STMT_REUSE" returned "FALSE"
    Entered hgocont at 2014/08/29-14:01:06
    HS_FDS_CONNECT_INFO = "test12"
    RC=-1 from HOSGIP for "HS_FDS_CONNECT_STRING"
    Entered hgogenconstr at 2014/08/29-14:01:06
    dsn:test12, name:OPTIM
    optn:
    Entered hgocip at 2014/08/29-14:01:06
    dsn:test12
    Exiting hgocip, rc=0 at 2014/08/29-14:01:06
    ##>Connect Parameters (len=31)<##
    ## DSN=test12;
    #! UID=OPTIM;
    #! PWD=*
    Exiting hgogenconstr, rc=0 at 2014/08/29-14:01:06
    Entered hgopoer at 2014/08/29-14:01:06
    SQLGetDiagRec returns rc=100 (SQL_NO_DATA) for handle 4619630 (SQL_HANDLE_DBC)
    Exiting hgopoer, rc=0 at 2014/08/29-14:01:06 with error ptr FILE:hgopoer.c LINE:186 ID:GetDiagRec error
    hgocont, line 2831: calling SqlDriverConnect got sqlstate
    Exiting hgocont, rc=28500 at 2014/08/29-14:01:06 with error ptr FILE:hgocont.c LINE:2851 ID:Something other than invalid authorization
    Exiting hgolgon, rc=28500 at 2014/08/29-14:01:06 with error ptr FILE:hgolgon.c LINE:806 ID:Calling hgocont
    hostmstr: 8795908591616: HOA After hoalgon
    RPC Calling nscontrol(0), rc=0
    hostmstr: 8795908591616: RPC Before Exit Agent
    hostmstr: 8795908591616: HOA Before hoaexit
    Entered hgoexit at 2014/08/29-14:01:06
    Exiting hgoexit, rc=0
    hostmstr: 8795911442432: HOA After hoaexit
    hostmstr: 8795911442432: RPC After Exit Agent

  • IPod touch 2G iOS4 can't connect to iTunes or App Store

    Since updating my 2G iPod touch to iOS4, I have been unable to connect to iTunes or the App Store. The device can connect to my wifi and Safari works, albeit significantly slower than before, but when I try connecting to either iTunes or the App Store, all that appears is the word 'loading'.
    None of the settings on my router have changed from before the update and I have tried rebooting, restoring the device and the router but nothing has worked.
    I have not been able to confirm whether this happens on a different wifi network as of yet but I was wondering if anyone else was experiencing the same problems.

    I've having a problem connecting to Itunes or the App Store from my Ipod Touch. I have a good wifi connection and am able to access webpages thru safari but when I try to go to Itunes it won't connect. I went to the settings>Store>tap sign in and entered my itunes sign-on info but it tells me it can't connect. In reading some of the help topics it says when you go into Store it should automatically show your account name after syncing with Itunes on your computer but mine doesn't show that. It just says not signed in.Any help would be greatly appreciated.

  • Error message: a problem connecting to the server "DriveMap"

    I recently uninstalled GoDaddy’s software Workspace, used to manage online storage which I no longer need. Every time I restart my computer, and worse, every time I update an app, put something in the trash, or empty the trash, I get the error message “There was a problem connecting to the server "DriveMap". Workspace (DriveMap) is no longer on my computer; I used GoDaddy’s Workspace uninstaller to remove it. Then I reinstalled and uninstalled again because I was getting that message. I then did a search of my computer for all files with “Starfield” in the title, which is the developer of WorkSpace. I found about a dozen files and deleted them. I’m still getting the message, and GoDaddy support is absolutely useless. I got this reply from them (their 15th reply about this problem).
    It appears that your computer is configured to open a drive, which is occurring during start up.  You will need to edit your computer's drives or start up commands and delete the command that is causing this to occur.  This would not be a file that from Workspace that is causing the issue.  It appears that your local system is still trying a program that no longer exists on the system.  We suggest researching support documentation related to your local system to remove the DriveMap. 
    It has to be a file from Workspace, it seems to me, or a system file that has been altered by Workspace. This didn’t happen before I installed Workspace. It started happening out of the blue... hadn’t added any files to online storage or accessed my online file folder for a month or more, and this event began occurring, at times rendering my computer unusable; that message pops up as fast as I can dismiss it, many many times... Intercepts all key strokes.
    I’ve looked at my account’s startup items; nothing there. And iMacHardDisk/Library/Startupitems has only a backup program in it.
    Has anyone had this problem and found a fix?

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    Third-party system modifications are a common cause of usability problems. By a “system modification,” I mean software that affects the operation of other software — potentially for the worse. The following procedure will help identify which such modifications you've installed. Don’t be alarmed by the complexity of these instructions — they’re easy to carry out and won’t change anything on your Mac.
    These steps are to be taken while booted in “normal” mode, not in safe mode. If you’re now running in safe mode, reboot as usual before continuing.
    Below are instructions to enter some UNIX shell commands. The commands are harmless, but they must be entered exactly as given in order to work. If you have doubts about the safety of the procedure suggested here, search this site for other discussions in which it’s been followed without any report of ill effects.
    Some of the commands will line-wrap or scroll in your browser, but each one is really just a single line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, and you can then either copy or drag it. The headings “Step 1” and so on are not part of the commands.
    Note: If you have more than one user account, Step 2 must be taken as an administrator. Ordinarily that would be the user created automatically when you booted the system for the first time. The other steps should be taken as the user who has the problem, if different. Most personal Macs have only one user, and in that case this paragraph doesn’t apply.
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ If you’re running OS X 10.7 or later, open LaunchPad. Click Utilities, then Terminal in the page that opens.
    When you launch Terminal, a text window will open with a line already in it, ending either in a dollar sign (“$”) or a percent sign (“%”). If you get the percent sign, enter “sh” and press return. You should then get a new line ending in a dollar sign.
    Step 1
    Copy or drag — do not type — the line below into the Terminal window, then press return:
    kextstat -kl | awk '!/com\.apple/{printf "%s %s\n", $6, $7}'
    Post the lines of output (if any) that appear below what you just entered (the text, please, not a screenshot.) You can omit the final line ending in “$”.
    Step 2
    Repeat with this line:
    sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix)|edu\.mit|org\.(amavis|apache|cups|isc|ntp|postfix|x)/{print $3}'
    This time, you'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. You don't need to post the warning.
    Note: If you don’t have a login password, you’ll need to set one before taking this step. If that’s not possible, skip to the next step.
    Step 3
    launchctl list | sed 1d | awk '!/0x|com\.apple|edu\.mit|org\.(x|openbsd)/{print $3}'
    Step 4
    ls -1A /e*/mach* {,/}L*/{Ad,Compon,Ex,Fram,In,Keyb,La,Mail/Bu,P*P,Priv,Qu,Scripti,Servi,Spo,Sta}* L*/Fonts 2> /dev/null
    Important: If you formerly synchronized with a MobileMe account, your me.com email address may appear in the output of the above command. If so, anonymize it before posting.
    Step 5
    osascript -e 'tell application "System Events" to get name of every login item' 2> /dev/null
    Remember, steps 1-5 are all drag-and-drop or copy-and-paste, whichever you prefer — no typing, except your password. Also remember to post the output.
    You can then quit Terminal.

  • Issue setting up eFax on HP Photosmart 7510 e-All-in-One "Problem connecting to internet"

    I'm having an issue setting up eFax on my new HP Photosmart 7510 e-All-in-One. I am following the on-screen instructions and receive an error "Problem connecting to internet" when trying to register the account. The ePrint service is working, and I can use the facebook app on the printer so it seems to be connecting to the internet. I am uncertain how to resolve the issue.

    Let's set a static IP address and external DNS for the printer:
    - Print a Network Config Page from the front of the printer. Note the printer's IP address.
    - Type that IP address into a browser to reveal the printer's internal settings.
    - Choose the Networking tab, then Wireless along the left side, then the IPv4 tab.
    - On this screen you want to set a Manual IP. You need to set an IP address outside the range that the router automatically sets (called the DHCP range). If you do not know the range, change the last set of numbers (those after the last '.') to 250
    - Use 255.255.255.0 for the subnet (unless you know it is different, if so, use that)
    - Enter your router's IP (on the Network Config Page) for the gateway.
    - Enter 8.8.8.8 for the first DNS and 8.8.4.4 for the second DNS.
    - Click 'Apply'.
    Now, shut down the router and printer, start the router, wait, then start the printer.
    After this you may need to redo 'Add a Printer' using the new IP address.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • Problem connecting wirelessly with home hub 3.

    Kodak gave me advice onthis problem. Entered security key in upper case instead of lower and it solved the problem . No help from BT on this.

    paulweekspat wrote:
    trying to connect kodak printer. i have resolved the issue with help from kodak. bt was no help at all. thanks anyway.
    What john46 says is quite correct, also Kodak would give you NO support for setting up the Home Hub..
    Thats not to say you would not have been given help on these forums if you had a problem connecting your printer and if we could not help,at least we might have been able to point you in the right direction.
    http://support.en.kodak.co.uk/app/home/selected/true
    toekneem
    http://www.no2nuisancecalls.net
    (EASBF)

  • "problem connecting to server" when trying to access local disk

    Recently (perhaps since I upgraded to Yosemite), the first time I try access one of my two hard drives through Finder I get two pop-up windows with error "there was a problem connecting to server". When I dismiss the pop-ups, the Finder window appears OK. I then don't get these errors for some time and then I get them again - and always two errors.
    It seems the access request goes through NAS which fails ...
    "NetAuthSysAgent[11958]: ERROR: AFP_GetServerInfo - connect failed 62"
    and "NetAuthSysAgent[11958]: GetStatus: connecting to self not allowed"
    but then it gets actioned as a local access. Can anyone think of why NAS gets involved? And mainly how to get rid of it :^).
    There is nothing in login items that mounts either of the disks as a server. Is there a way to find out if a local disk is mounted as a server and who caused it?

    Many thanks, I am impressed by the process :^)
    Here's the result:
    Start time: 23:05:00 04/03/15
    Revision: 1310
    Model Identifier: iMac12,2
    System Version: OS X 10.10.2 (14C1514)
    Kernel Version: Darwin 14.1.0
    Time since boot: 10:04
    UID: 501
    SerialATA
        Hitachi HDS723020BLA642                
    Bluetooth
        Apple Wireless Keyboard
        Apple Wireless Trackpad
    Energy (lifetime)
        kernel_task (UID 0): 7.72
    Energy (sampled)
        kernel_task (UID 0): 7.09
    Font issues: 60
    Nets
        en0 192.168.2
        en1 192.168.1
    Listeners
        AppleFileServer: afpovertcp
        kdc: kerberos
        launchd: afpovertcp
        launchd: microsoft-ds
    System caches/logs
        5.1 GiB: /System/Library/Caches/com.apple.coresymbolicationd/data
    Diagnostic reports
        2015-03-08 rapportd crash x2
        2015-03-11 rapportd crash
        2015-03-12 garcon crash
        2015-03-12 rapportd crash
        2015-03-14 MPEG Streamclip hang x2
        2015-03-19 secd crash x4
        2015-03-20 rapportd crash
        2015-03-21 rapportd crash
        2015-04-02 rapportd crash
        2015-04-03 rapportd crash x4
    HID errors: 16
    Kernel log
        Apr  3 11:33:33 vmnet: VMNetConnect: returning port 0xffffff8035f87a00
        Apr  3 11:33:33 vmnet: VMNetConnect: returning port 0xffffff80372f3000
        Apr  3 11:33:33 vmnet8: failed to restore 1 suspended link-layer multicast membership(s) (err=102)
        Apr  3 11:33:33 vmnet: VMNetConnect: returning port 0xffffff80386a1200
        Apr  3 11:33:50 IOAudioStream[0xffffff8031dd3000]::clipIfNecessary() - Error: counted 1 clip more than one buffer ahead errors.
        Apr  3 11:34:12 vmnet: netif-vmnet1: SIOCPROTODETACH failed: 16.
        Apr  3 11:34:12 vmnet: netif-vmnet8: SIOCPROTODETACH failed: 16.
        Apr  3 11:37:58 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
        Apr  3 12:01:20 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
        Apr  3 12:02:34 considerRebuildOfPrelinkedKernel com.apple.kext.OSvKernDSPLib triggered rebuild
        Apr  3 12:12:35 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
        Apr  3 13:00:53 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
        Apr  3 13:05:54 vmnet: VMNetConnect: returning port 0xffffff80162d8e00
        Apr  3 13:05:54 vmnet: VMNetConnect: returning port 0xffffff80199de600
        Apr  3 13:05:55 vmnet: VMNetConnect: returning port 0xffffff8022753a00
        Apr  3 13:05:55 vmnet: VMNetConnect: returning port 0xffffff8019ca0000
        Apr  3 13:05:55 vmnet: VMNetConnect: returning port 0xffffff80150d1a00
        Apr  3 13:05:55 vmnet: VMNetConnect: returning port 0xffffff80199c5e00
        Apr  3 13:06:06 vmnet: VMNetConnect: returning port 0xffffff801ad23600
        Apr  3 13:06:06 vmnet: VMNetConnect: returning port 0xffffff80162d8e00
        Apr  3 16:18:10 ASP_TCP Disconnect: triggering reconnect by bumping reconnTrigger from curr value 0 on so 0xffffff801cb013d8
        Apr  3 19:10:14 ASP_TCP Disconnect: triggering reconnect by bumping reconnTrigger from curr value 0 on so 0xffffff8015cd4000
        Apr  3 22:07:55 ASP_TCP Disconnect: triggering reconnect by bumping reconnTrigger from curr value 0 on so 0xffffff80154a2000
        Apr  3 22:50:17 vmnet: netif-vmnet1: SIOCPROTODETACH failed: 16.
        Apr  3 22:50:17 vmnet: netif-vmnet8: SIOCPROTODETACH failed: 16.
    System log
        Apr  3 16:13:20 fseventsd: Logging disabled completely for device:1: /Volumes/Recovery HD
        Apr  3 16:13:20 AppleFileServer: GetAttrListStandardVolumeInfo:  getattrlist failed with errno: 2!
        Apr  3 16:17:59 diskarbitrationd: mds [32]:21519 not responding.
        Apr  3 16:18:09 AppleFileServer: GetAttrListStandardVolumeInfo:  getattrlist failed with errno: 2!
        Apr  3 16:28:22 WindowServer: WSGetSurfaceInWindow : Invalid surface 474164185 for window 2896
        Apr  3 17:17:35 Google Chrome Helper: CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Apr  3 17:17:35 Google Chrome Helper: CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Apr  3 17:17:35 Google Chrome Helper: CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Apr  3 17:17:35 Google Chrome Helper: CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Apr  3 19:00:54 NetAuthSysAgent: TUAMHandler::SetUAMType setting UAMType to 13
        Apr  3 19:01:13 AppleFileServer: GetAttrListStandardVolumeInfo:  getattrlist failed with errno: 2!
        Apr  3 19:01:15 AppleFileServer: GetAttrListStandardVolumeInfo:  getattrlist failed with errno: 2!
        Apr  3 19:07:07 fseventsd: Logging disabled completely for device:1: /Volumes/Recovery HD
        Apr  3 19:07:07 AppleFileServer: GetAttrListStandardVolumeInfo:  getattrlist failed with errno: 2!
        Apr  3 19:10:13 AppleFileServer: GetAttrListStandardVolumeInfo:  getattrlist failed with errno: 2!
        Apr  3 22:00:54 NetAuthSysAgent: TUAMHandler::SetUAMType setting UAMType to 13
        Apr  3 22:01:13 AppleFileServer: GetAttrListStandardVolumeInfo:  getattrlist failed with errno: 2!
        Apr  3 22:01:15 AppleFileServer: GetAttrListStandardVolumeInfo:  getattrlist failed with errno: 2!
        Apr  3 22:07:38 fseventsd: Logging disabled completely for device:1: /Volumes/Recovery HD
        Apr  3 22:07:38 AppleFileServer: GetAttrListStandardVolumeInfo:  getattrlist failed with errno: 2!
        Apr  3 22:07:55 AppleFileServer: GetAttrListStandardVolumeInfo:  getattrlist failed with errno: 2!
        Apr  3 22:50:17 vmnet-dhcpd: select: Interrupted system call
        Apr  3 22:50:17 vmnet-dhcpd: exiting.
        Apr  3 22:50:17 vmnet-dhcpd: select: Interrupted system call
        Apr  3 22:50:17 vmnet-dhcpd: exiting.
    launchd log
        Apr  3 12:01:27 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.187, service = com.evernote.EvernoteHelper, error = 119: Service is disabled
        Apr  3 12:01:27 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.187, service = com.freshsqueezedapps.memoryboosterlauncher, error = 119: Service is disabled
        Apr  3 12:01:27 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.187, service = com.fiplab.MemoryCleanHelper, error = 119: Service is disabled
        Apr  3 12:01:27 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.187, service = QA2G25RMZ4.com.wunderkinder.wunderlist-helper, error = 119: Service is disabled
        Apr  3 12:12:40 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.188, service = com.deskconnect.mac.helper, error = 119: Service is disabled
        Apr  3 12:12:40 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.188, service = net.doo.dooLoginHelper, error = 119: Service is disabled
        Apr  3 12:12:40 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.188, service = com.evernote.EvernoteHelper, error = 119: Service is disabled
        Apr  3 12:12:40 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.188, service = com.freshsqueezedapps.memoryboosterlauncher, error = 119: Service is disabled
        Apr  3 12:12:40 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.188, service = com.fiplab.MemoryCleanHelper, error = 119: Service is disabled
        Apr  3 12:12:40 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.188, service = QA2G25RMZ4.com.wunderkinder.wunderlist-helper, error = 119: Service is disabled
        Apr  3 13:00:58 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.187, service = com.deskconnect.mac.helper, error = 119: Service is disabled
        Apr  3 13:00:58 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.187, service = net.doo.dooLoginHelper, error = 119: Service is disabled
        Apr  3 13:00:58 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.187, service = com.evernote.EvernoteHelper, error = 119: Service is disabled
        Apr  3 13:00:58 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.187, service = com.freshsqueezedapps.memoryboosterlauncher, error = 119: Service is disabled
        Apr  3 13:00:58 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.187, service = com.fiplab.MemoryCleanHelper, error = 119: Service is disabled
        Apr  3 13:00:58 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.187, service = QA2G25RMZ4.com.wunderkinder.wunderlist-helper, error = 119: Service is disabled
        Apr  3 14:01:57 com.citrixonline.GoToMeeting.G2MUpdate: Service could not initialize: 14C1514: xpcproxy + 14045 [1344][UUID]: 0x2
        Apr  3 15:02:57 com.citrixonline.GoToMeeting.G2MUpdate: Service could not initialize: 14C1514: xpcproxy + 14045 [1344][UUID]: 0x2
        Apr  3 16:03:57 com.citrixonline.GoToMeeting.G2MUpdate: Service could not initialize: 14C1514: xpcproxy + 14045 [1344][UUID]: 0x2
        Apr  3 17:04:57 com.citrixonline.GoToMeeting.G2MUpdate: Service could not initialize: 14C1514: xpcproxy + 14045 [1344][UUID]: 0x2
        Apr  3 18:05:57 com.citrixonline.GoToMeeting.G2MUpdate: Service could not initialize: 14C1514: xpcproxy + 14045 [1344][UUID]: 0x2
        Apr  3 19:06:57 com.citrixonline.GoToMeeting.G2MUpdate: Service could not initialize: 14C1514: xpcproxy + 14045 [1344][UUID]: 0x2
        Apr  3 20:07:56 com.citrixonline.GoToMeeting.G2MUpdate: Service could not initialize: 14C1514: xpcproxy + 14045 [1344][UUID]: 0x2
        Apr  3 21:08:56 com.citrixonline.GoToMeeting.G2MUpdate: Service could not initialize: 14C1514: xpcproxy + 14045 [1344][UUID]: 0x2
        Apr  3 22:09:56 com.citrixonline.GoToMeeting.G2MUpdate: Service could not initialize: 14C1514: xpcproxy + 14045 [1344][UUID]: 0x2
    Console log
        Apr  3 12:01:26 fontd: Failed to open read-only database, regenerating DB
    System services loaded
        com.adobe.fpsaud
        com.apple.AccountPolicyHelper
        com.apple.GSSCred
        com.apple.MobileFileIntegrity
        com.apple.awdd
        com.apple.coresymbolicationd
        com.apple.ctkd
        com.apple.icloud.findmydeviced
        com.apple.iconservices.iconservicesagent
        com.apple.ifdreader
        com.apple.nehelper
        com.apple.nsurlsessiond_privileged
        com.apple.nsurlstoraged
        com.apple.periodic-daily
        com.apple.sandboxd
        com.apple.secinitd
        com.apple.softwareupdated
        com.apple.systemadministration.writeconfig
        com.apple.tccd.system
        com.apple.wdhelper
        com.apple.xpc.smd
        com.barebones.authd
        com.barebones.textwrangler
        com.google.GoogleML
        - status: 1
        com.oracle.java.Helper-Tool
        com.timesoftware.timemachineeditor.backup-auto
        com.trusteer.rooks.rooksd
        org.macosforge.xquartz.privileged_startx
    System services disabled
        com.apple.mrt
    Login services loaded
        com.adobe.ARM.UUID
        com.apple.AirPlayUIAgent
        com.apple.CallHistoryPluginHelper
        com.apple.CallHistorySyncHelper
        com.apple.cloudd
        com.apple.coreservices.appleid.authentication
        com.apple.icloud.fmfd
        com.apple.mrt.uiagent
        com.apple.nsurlsessiond
        com.apple.recentsd
        com.apple.scopedbookmarksagent.xpc
        com.apple.soagent
        com.apple.spindump_agent
        com.apple.telephonyutilities.callservicesd
        com.citrixonline.GoToMeeting.G2MUpdate
        - status: 78
        com.divx.agent.postinstall
        com.f-secure.sync.BTCloud
        com.google.keystone.system.agent
        com.kodak.BonjourAgent
        com.kodak.KODAK AiO Annual Opt
        com.kodak.KODAK AiO Firmware Updater
        com.kodak.KODAK AiO Software Updater
        com.oracle.java.Java-Updater
        com.trusteer.rapport.rapportd
        - status: -11
        org.macosforge.xquartz.startx
    Login services disabled
        com.evernote.EvernoteHelper
    User services loaded
        com.apple.BKAgentService
        com.apple.DataDetectorsDynamicData
        com.apple.InputMethodKit.UserDictionary
        com.apple.MailServiceAgent
        com.apple.geod
        com.apple.imdpersistence.IMDPersistenceAgent
        com.apple.security.cloudkeychainproxy3
        com.apple.tonelibraryd
    User services disabled
        com.evernote.EvernoteHelper
    Startup items
        /Library/StartupItems/BRESINKx86Monitoring/BRESINKx86Monitoring
        /Library/StartupItems/BRESINKx86Monitoring/BRESINKx86Monitoring.kext/Contents/I nfo.plist
        /Library/StartupItems/BRESINKx86Monitoring/BRESINKx86Monitoring.kext/Contents/M acOS/BRESINKx86Monitoring
        /Library/StartupItems/BRESINKx86Monitoring/StartupParameters.plist
        /Library/StartupItems/CoreDuoTemp/CoreDuoTemp
        /Library/StartupItems/CoreDuoTemp/StartupParameters.plist
        /Library/StartupItems/MTU/MTU
        /Library/StartupItems/MTU/StartupParameters.plist
    User login items
        aLaunch
        - /Applications/aLaunch/aLaunch.app
        Alfred 2
        - /Applications/Alfred 2.app
        Meteorologist
        - /Applications/Utilities/meteo/Meteorologist.app
        AllBookmarks
        - /Applications/u-internet/AllBookmarks.app
        Yahoo! Widgets
        - /Applications/Yahoo! Widgets.app
        Dropbox
        - /Applications/Dropbox.app
    Safari extensions
        AdBlock
        - com.betafish.adblockforsafari
        Amazon Shopping Assistant
        - com.spigot.safari.amazonshopassist
        DivX Plus Web Player HTML5 <video>
        - com.divx.DivXHTML5
        Ebay Shopping Assistant
        - com.spigot.safari.ebayshopassist
        iTube Studio
        - com.wondershare.safari.itubestudio
        Omnibar
        - com.genieo.safari
        Searchme
        - com.spigot.safari.searchme
        Translate
        - com.sidetree.Translate
        Validator
        - be.grincheux.validator
        View Style Sheets
        - com.sonereker.vss
    Firefox extensions
        Status-4-Evar
        ImTranslator - Google Translator
        Test Pilot
        Ilana Segall
        Flash Video Downloader - YouTube HD Download [4K]
        LastPass Password Manager
        DownThemAll!
        Stefano Verna
    Widgets
        AccuWeather.com
        Time Machine Buddy
    iCloud errors
        bird 561
        cloudd 108
        comapple.InputMethodKit.UserDictionary 1
        Finder 1
    Continuity errors
        sharingd 9
    Restricted files: 346
    Lockfiles: 6
    High file counts
        Desktop: 66
    Accessibility
        Keyboard Zoom: On
    Contents of /Library/LaunchAgents/com.kodak.BonjourAgent.plist
        - mod date: Sep 21 07:39:00 2012
        - size (B): 528
        - checksum: 2625351456
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Kodak Version</key>
        <string>7.1.6.10</string>
        <key>Label</key>
        <string>com.kodak.BonjourAgent</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Printers/Kodak/AiO_Printers/KodakAiOBonjourAgent.app/Contents/ MacOS/KodakAiOBonjourAgent</string>
        </array>
        <key>ServiceIPC</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.oracle.java.Java-Updater.plist
        - mod date: Feb  6 16:00:20 2013
        - size (B): 104
        - checksum: 2306977922
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.oracle.java.Java-Updater</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Resources/Java Updater.app/Contents/MacOS/Java Updater</string>
        <string>-bgcheck</string>
        </array>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
        <key>StartCalendarInterval</key>
        <dict>
        <key>Hour</key>
        <integer>3</integer>
        <key>Minute</key>
        <integer>8</integer>
        <key>Weekday</key>
        <integer>1</integer>
        </dict>
        </dict>
        ...and 1 more line(s)
    Contents of /Library/LaunchAgents/com.trusteer.rapport.rapportd.plist
        - mod date: Sep  5 10:14:40 2010
        - size (B): 549
        - checksum: 4018397927
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.trusteer.rapport.rapportd</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Rapport/bin/rapportd</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>WorkingDirectory</key>
        <string>/Library/Rapport/bin</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>Umask</key>
        <integer>18</integer>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/org.macosforge.xquartz.startx.plist
        - mod date: Aug 11 22:52:54 2014
        - size (B): 721
        - checksum: 2451978492
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>org.macosforge.xquartz.startx</string>
        <key>ProgramArguments</key>
        <array>
        <string>/opt/X11/lib/X11/xinit/launchd_startx</string>
        <string>/opt/X11/bin/startx</string>
        <string>--</string>
        <string>/opt/X11/bin/Xquartz</string>
        </array>
        <key>Sockets</key>
        <dict>
        <key>org.macosforge.xquartz:0</key>
        <dict>
        <key>SecureSocketWithKey</key>
        <string>DISPLAY</string>
        </dict>
        </dict>
        <key>ServiceIPC</key>
        <true/>
        <key>EnableTransactions</key>
        <true/>
        ...and 2 more line(s)
    Contents of /Library/LaunchDaemons/com.barebones.authd.plist
        - mod date: May 15 22:46:29 2012
        - size (B): 634
        - checksum: 1995816654
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>EnableTransactions</key>
        <true/>
        <key>Label</key>
        <string>com.barebones.authd</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.barebones.authd</string>
        </array>
        <key>Sockets</key>
        <dict>
        <key>com.barebones.authd.socket</key>
        <dict>
        <key>SockPathMode</key>
        <integer>438</integer>
        <key>SockPathName</key>
        <string>/var/tmp/com.barebones.authd.socket</string>
        </dict>
        </dict>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.barebones.textwrangler.plist
        - mod date: Mar 31 11:41:07 2012
        - size (B): 802
        - checksum: 2824893286
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.barebones.textwrangler</string>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.barebones.textwrangler</string>
        </array>
        <key>ServiceIPC</key>
        <true/>
        <key>Sockets</key>
        <dict>
        <key>MasterSocket</key>
        <dict>
        <key>SockFamily</key>
        <string>Unix</string>
        <key>SockPathMode</key>
        <integer>438</integer>
        <key>SockPathName</key>
        ...and 7 more line(s)
    Contents of /Library/LaunchDaemons/com.google.GoogleML.plist
        - mod date: Mar 10 17:19:30 2008
        - size (B): 684
        - checksum: 315725308
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.google.GoogleML</string>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Google/GoogleML/GoogleML.bundle/Contents/MacOS/googleml-modwat ch</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
        <key>UserName</key>
        <string>root</string>
        <key>WatchPaths</key>
        <array>
        <string>/Library/Google/GoogleML/Modules</string>
        <string>/Library/Google/GoogleML</string>
        </array>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.timesoftware.timemachineeditor.backup-auto.plist
        - mod date: Oct 29 02:09:28 2013
        - size (B): 491
        - checksum: 39878998
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.timesoftware.timemachineeditor.backup-auto</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.timesoftware.timemachineeditor.helpe r</string>
        <string>--backup</string>
        </array>
        <key>StartInterval</key>
        <integer>10800</integer>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.trusteer.rooks.rooksd.plist
        - mod date: Oct 25 10:03:22 2010
        - size (B): 376
        - checksum: 1478412778
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.trusteer.rooks.rooksd</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Rapport/bin/rooksd</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /private/etc/auto_master
        - mod date: Nov 28 19:07:15 2013
        - size (B): 195
        - checksum: 1600620026
        +auto_master # Use directory service
        /home auto_home -nobrowse,hidefromfinder
        /Network/Servers -fstab
        /- -static
    Contents of /private/etc/auto_master.backup
        - mod date: Nov 28 19:05:07 2013
        - size (B): 194
        - checksum: 3752790267
        +auto_master # Use directory service
        /net -hosts -nobrowse,hidefromfinder,nosuid
        /home auto_home -nobrowse,hidefromfinder
        /Network/Servers -fstab
        /- -static
    Contents of /private/etc/auto_master~orig
        - mod date: Sep 19 08:15:44 2014
        - size (B): 194
        - checksum: 3752790267
        +auto_master # Use directory service
        /net -hosts -nobrowse,hidefromfinder,nosuid
        /home auto_home -nobrowse,hidefromfinder
        /Network/Servers -fstab
        /- -static
    Contents of /private/etc/ssh_config
        - mod date: Nov 15 13:07:00 2013
        - size (B): 3957
        - checksum: 2841432291
         Host *
           SendEnv LANG LC_*
        Host *
            XAuthLocation /opt/X11/bin/xauth
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Apr  1 12:59:17 2010
        - size (B): 589
        - checksum: 2544798274
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader 8/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.apple.FolderActions.folders.plist
        - mod date: Feb 17 02:43:15 2015
        - size (B): 759
        - checksum: 354310561
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.apple.FolderActions.folders</string>
        <key>Program</key>
        <string>/usr/bin/osascript</string>
        <key>ProgramArguments</key>
        <array>
        <string>osascript</string>
        <string>-e</string>
        <string>tell application "Folder Actions Dispatcher" to tick</string>
        </array>
        <key>WatchPaths</key>
        <array>
        <string>/Volumes/Macintosh HD 2/Pictures/fa-jpg</string>
        <string>/Volumes/Macintosh HD 2/Pictures/fa-L</string>
        <string>/Volumes/Macintosh HD 2/Pictures/fa-R</string>
        <string>/Volumes/Macintosh HD 2/Pictures/ap-copy</string>
        </array>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.divx.agent.postinstall.plist
        - mod date: Feb  4 12:10:23 2012
        - size (B): 695
        - checksum: 3163907459
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.divx.agent.postinstall</string>
        <key>LimitToSessionType</key>
        <string>Aqua</string>
        <key>LaunchOnlyOnce</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>//Library/Internet Plug-Ins/DivXBrowserPlugin.plugin/Contents/Resources/extensions-installer</stri ng>
        <string>install</string>
        <string>safari</string>
        <string>DivXHTML5</string>
        <string>//Library/Internet Plug-Ins/DivXBrowserPlugin.plugin/Contents/Resources/DivXHTML5.safariextz</stri ng>
        </array>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.f-secure.sync.BTCloud.plist
        - mod date: Oct 11 11:46:27 2013
        - size (B): 423
        - checksum: 1294862215
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.f-secure.sync.BTCloud</string>
                <key>RunAtLoad</key>
                <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/BT Cloud.app/Contents/MacOS/BT Cloud</string>
        </array>
        </dict>
        </plist>
    Bad plists
        Library/Preferences/com.macxtosh.SaveCircle1.2.plist
    Extensions
        /System/Library/Extensions/ElmediaPlayer.kext
        - com.eltima.ElmediaPlayer.kext
        /System/Library/Extensions/JMicronATA.kext
        - com.jmicron.JMicronATA
        /System/Library/Extensions/UsbEthernetGadget.kext
        - com.tomtom.driver.UsbEthernetGadget
        /System/Library/Extensions/speedit.kext
        - com.increw.kext.speedit
    Applications
        /Applications/ActiveState ActiveTcl/tclvfse.app
        - com.activestate.pkg.ActiveTcl.tclvfse
        /Applications/Adobe Reader 8/Adobe Reader.app
        - com.adobe.Reader
        /Applications/AllVideoDownloader.app
        - com.yourcompany.AllVideoDownloader
        /Applications/BBC iPlayer Desktop.app
        - BBCiPlayerDesktop.UUID.1
        /Applications/BT Home Hub/BT Broadband Life.app
        - com.bt.BTBroadbandLife
        /Applications/BT Home Hub/BT Yahoo! Online.app
        - com.bt.BTBroadband
        /Applications/BT Home Hub/HubManager.app
        - com.bt.HubManager
        /Applications/Buzan's iMindMap.app
        - com.Buzan Online.Buzan's iMindMap V3.Buzan's iMindMap
        /Applications/DVD Creator/DVD Creator.app
        - N/A
        /Applications/DeepVacuum.app
        - com.hexcat.deepvacuum
        /Applications/DivX Plus Player.app
        - com.divx.DivX_Plus_Player
        /Applications/FrostWire.app
        - N/A
        /Applications/GIMP.app
        - org.gimp.gimp
        /Applications/Google Desktop/Google Gadgets.app
        - com.google.GadgetToWidgetConvertor
        /Applications/Google Notifier.app
        - com.google.GmailNotifier
        /Applications/Google Updater Ghost.app
        - com.google.Updater
        /Applications/Guitar Pro/GuitarPro.app
        - com.arobas-music.GuitarPro
        /Applications/LimeWire.app
        - com.limegroup.gnutella
        /Applications/Mac CD DVD Label Maker.app
        - com.cristallight.cdlm
        /Applications/Mac PDF Password Remover.app
        - com.Doremisoft.Mac_PDF_Password_Remover
        /Applications/MkvMerge.app
        - org.matroska.mkvmerge
        /Applications/NeoOffice.app
        - org.neooffice.NeoOffice
        /Applications/Open XML Converter.app
        - com.microsoft.OfficeConverter
        /Applications/Paintbrush.app
        - com.soggywaffles.Paintbrush
        /Applications/PersonalBrain.app
        - com.install4j.1190-3857-8766-9166.5
        /Applications/Picasa Web Albums Uploader.app
        - com.google.macphotouploader
        /Applications/Python 3.4/IDLE.app
        - org.python.IDLE
        /Applications/Python 3.4/Python Launcher.app
        - org.python.PythonLauncher
        /Applications/SeaMonkey.app
        - org.mozilla.SeaMonkey
        /Applications/SiteSucker.app
        - us.sitesucker.mac.sitesucker
        /Applications/Sound Recorder Mac.app
        - de.monkeybreadsoftware.freeware.soundrecorder
        /Applications/StuffIt/StuffIt Expander.app
        - com.stuffit.Expander
        /Applications/Style Master 4.6.1 Demo/Style Master.app
        - N/A
        /Applications/TeamViewer 7/TeamViewer.app
        - com.teamviewer.TeamViewer
        /Applications/TeamViewer 7/Uninstall TeamViewer.app
        - com.teamviewer.Uninstall-TeamViewer
        /Applications/Utilities/APGrapher/AP Grapher.app
        - com.chimoosoft.apgrapher
        /Applications/Utilities/Adobe AIR Application Installer.app
        - com.adobe.air.ApplicationInstaller
        /Applications/Utilities/Adobe AIR Uninstaller.app
        - com.adobe.air.Installer
        /Applications/Utilities/Adobe Utilities.localized/Adobe Updater5/Adobe Updater.app
        - "com.Adobe.ESD.AdobeUpdaterApplication"
        /Applications/Utilities/Aluminum Keyboard Firmware Update.app
        - com.apple.keyboardupdater.89.1
        /Applications/Utilities/CSSEdit.app
        - com.macrabbit.CSSEdit
        /Applications/Utilities/ChronoSync.app
        - com.econtechnologies.chronosync
        /Applications/Utilities/CocoaJT.app
        - net.cocoanut.cocoajt
        /Applications/Utilities/Coda.app
        - com.panic.Coda
        /Applications/Utilities/FreeMind.app
        - freemind.main.FreeMind
        /Applications/Utilities/Kext Utility.app
        - ru.cvad.KextUtility
        /Applications/Utilities/Kext Wizard/Kext Wizard.app
        - janek202.Kext-Wizard
        /Applications/Utilities/RAGE SEKeyword.app
        - com.ragesw.sekeyword
        /Applications/Utilities/RAGE WebDesign/WebDesign.app
        - com.ragesw.webdesign
        /Applications/Utilities/Simple CSS.app
        - com.acreon.simplecss
        /Applications/Utilities/SymbolicLinker/SymbolicLinker.service
        - net.comcast.home.seiryu.SymbolicLinker
        /Applications/Utilities/Taco HTML Edit.app
        - com.tacosoftware.HTMLEdit
        /Applications/Utilities/Uninstall Rapport.app
        - N/A
        /Applications/Utilities/WakeOnLan/WakeOnLan.app
        - com.readpixel.wakeonlan
        /Applications/Utilities/WebArchive Extractor.app
        - com.robrohan.WebArchiveExtractor
        /Applications/Utilities/XQuartz.app
        - org.macosforge.xquartz.X11
        /Applications/Utilities/iStumbler.app
        - net.istumbler.release-99
        /Applications/Utilities/language/Asia Text Extras/Chinese Text Converter.app
        - com.apple.ChineseTextConverter
        /Applications/Utilities/language/Asia Text Extras/IM Plugin Converter.app
        - com.apple.IMPluginConverter
        /Applications/Utilities/language/Before You Know It/Before You Know It.app
        - com.transparentlanguage.BYKIViewer
        /Applications/Utilities/meteo/Meteorologist.app
        - com.heat.meteo
        /Applications/Utilities/music/Intervals.app
        - com.Matt.Intervals
        /Applications/Utilities/system/7z/7zX.app
        - com.sixtyfive.7zX
        /Applications/Utilities/system/AppDelete.app
        - com.apps4macs.AppDelete
        /Applications/Utilities/system/CLIX/CLIX-32/CLIX.app
        - com.rixstep.CLIX
        /Applications/Utilities/system/CLIX/CLIX-64/CLIX.app
        - com.rixstep.CLIX
        /Applications/Utilities/system/FormulatePro.app
        - info.adlr.formulatepro
        /Applications/Utilities/system/GeekTool/GeekTool Uninstaller.app
        - org.tynsoe.geektooluninstaller
        /Applications/Utilities/system/IceClean.app
        - com.MacDentro.IceClean
        /Applications/Utilities/system/KeePassX.app
        - com.apple.application-bundle
        /Applications/Utilities/system/LaunchBar.app
        - at.obdev.LaunchBar4
        /Applications/Utilities/system/Mac HelpMate.app
        - com.most.mhm
        /Applications/Utilities/system/MacDjView.app
        - org.andrew.zhezherun.macdjview
        /Applications/Utilities/system/MenuMeters/MenuMeters Installer.app
        - com.ragingmenace.MenuMetersInstaller
        /Applications/Utilities/system/Name Mangler.app
        - com.manytricks.Name Mangler
        /Applications/Utilities/system/Onyx/OnyX.app
        - com.titanium.OnyX
        /Applications/Utilities/system/Onyx/Uninstaller.app
        - com.titanium.Uninstaller
        /Applications/Utilities/system/PSRenamer/psrenamer.app
        - N/A
        /Applications/Utilities/system/PSTextMerge/pstextmerge.app
        - PSTextMerge
        /Applications/Utilities/system/Rapido/RapidoResizer.app
        - com.app4mac.RapidoResizer
        /Applications/Utilities/system/Rapido/RapidoSerial.app
        - com.app4mac.RapidoSerial
        /Applications/Utilities/system/Rapido/RapidoStart.app
        - com.app4mac.RapidoStart
        /Applications/Utilities/system/Rapido/RapidoWrite.app
        - com.app4mac.RapidoWrite3
        /Applications/Utilities/system/SMARTReporter/SMARTReporter.app
        - org.corecode.SMARTReporter
        /Applications/Utilities/system/SpotLook.app
        - ch.seriot.SpotLook
        /Applications/Utilities/system/The Unarchiver.app
        - cx.c3.theunarchiver
        /Applications/Utilities/system/Todos.app
        - com.opensoft.todos
        /Applications/Utilities/system/WhatsKeepingMe/Install Automator Workflow.app
        - N/A
        /Applications/Utilities/system/WhatsKeepingMe/What's Keeping Me?.app
        - com.HAMSoft.WhatsKeepingMe2
        /Applications/Utilities/system/iTLC.app
        - com.memention.itlc
        /Applications/Utilities/system/rar expander/Example Scripts/Replace RAR Archives with Expansion in Subfolders.app
        - N/A
        /Applications/Utilities/system/rar expander/Example Scripts/Replace RAR Archives with Expansion.app
        - N/A
        /Applications/Utilities/system/rar expander/RAR Expander.app
        - net.sourceforge.rarexpander
        /Applications/Utilities/system/uif2iso4mac.app
        - org.vafer.uif2iso4mac
        /Applications/Utilities/system/xMod.app
        - com.geekpeak.xMod
        /Applications/Utilities/z-misc/Audacity/Audacity.app
        - net.sourceforge.audacity
        /Applications/Utilities/z-misc/Stellarium/Stellarium.app
        - org.stellarium.Stellarium
        /Applications/Utilities/z-misc/iWisdom Folder/iWisdom.app
        - N/A
        /Applications/VMware Uninstall .app
        - com.vmware.fusion.uninstaller
        /Applications/Who Is Connected.app
        - com.littlemacapps.Who_Is_Connected
        /Applications/Wondershare PDF Editor Pro.app
        - com.wondershare.PDF_Editor_Pro
        /Applications/Xnntp.app
        - com.edvfz.XnFz
        /Applications/Yahoo! Widgets.app
        - com.yahoo.widgetengine
        /Applications/emlx to mbox Converter.app
        - N/A
        /Applications/iWork '08/Keynote.app
        - com.apple.iWork.Keynote
        /Applications/iWork '08/Numbers.app
        - com.apple.iWork.Numbers
        /Applications/iWork '08/Pages.app
        - com.apple.iWork.Pages
        /Applications/iWork '08/User Guides/Keynote User Guide.app
        - com.apple.KeynoteUserGuide
        /Applications/iWork '08/User Guides/Numbers User Guide.app
        - com.apple.NumbersUserGuide
        /Applications/iWork '08/User Guides/Pages User Guide.app
        - com.apple.PagesUserGuide
        /Applications/namebench.app
        - org.opensource.namebench
        /Applications/u-internet/A to G.app
        - com.bborofka.AtoG
        /Applications/u-internet/AbyssWebServer/Abyss Web Server.app
        - com.aprelium.AbyssWebServer
        /Applications/u-internet/AllBookmarks.app
        - com.agilewebsolutions.AllBookmarks
        /Applications/u-internet/Azureus.app
        - org.gudy.azureus2
        /Applications/u-internet/BitTyrant.app
        - org.gudy.azureus2bittyrant
        /Applications/u-internet/Charlotte/Charlotte.app
        - com.lifli.Charlotte
        /Applications/u-internet/Cyberduck/Cyberduck.app
        - ch.sudo.cyberduck
        /Applications/u-internet/FileZilla.app
        - de.filezilla
        /Applications/u-internet/IPNetTunerX folder/IPNetTunerX.app
        - com.sustworks.IPNetTunerX
        /Applications/u-internet/MAMP/MAMP.app
        - com.living-e.MAMP
        /Applications/u-internet/NetNewsWire.app
        - com.ranchero.NetNewsWire
        /Applications/u-internet/RAGE Domainer.app
        - com.ragesw.domainer
        /Applications/u-internet/vixy converter BETA.app
        - jp.co.sgra.vixy converter BETA
        /Applications/u-video/DVDManager.app
        - com.fennelsoftware.DVDManager
        /Applications/u-video/Dvd Hunter.app
        - org.JAres.Dvd Hunter
        /Applications/u-video/TubeTV/TubeTV.app
        - com.chimoosoft.TubeTV
        /Applications/u-video/TubeTV/iSkysoft iTube Studio.app
        - com.iSkysoft.iTube Studio
        /Applications/u-video/converters/FilmRedux.app
        - com.madhattersoft.filmredux
        /Applications/u-video/converters/Handbrake/HandBrake.app
        - fr.handbrake.HandBrake
        /Applications/u-video/converters/MacTheRipper.app
        - com.mtr3
        /Applications/u-video/converters/RipIt.app
        - com.thelittleappfactory.RipIt
        /Applications/u-video/converters/ffmpegX/ffmpegX.app
        - com.mac.homepage.major4.ffmpegX
        /Applications/u-video/converters/xACT/xACT.app
        - net.epix.crush.xact
        /Applications/u-video/iVideoWarehouse.app
        - com.OutTheDoorSoftware.iVideoWarehouse
        /Applications/u-video/macam.app
        - net.sourceforge.webcam-osx.application
        /Applications/u-video/players/Cellulo/Cellulo.app
        - fr.atvaark.cellulo
        /Applications/u-video/players/DivX Player.app
        - com.divx.DivX_Player
        /Applications/u-video/xVideoServiceThief.app
        - com.Xesc&Technology.xVideoServiceThief
        /Applications/uTorrent.app
        - com.bittorrent.uTorrent
        /Library/Application Support/ChronoSync/ChronoAgentLocal.app
        - com.econtechnologies.ChronoAgentLocal
        /Library/Application Support/ChronoSync/ChronoSyncBackgrounder.app
        - com.econtechnologies.backgrounder.chronosync
        /Library/Application Support/Microsoft/HV1.0/Microsoft Help Viewer.app
        - com.microsoft.helpviewer
        /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
        - com.microsoft.autoupdate2
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Charts.app
        - com.microsoft.openxml.chartconverter.app
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Excel.app
        - com.microsoft.openxml.excel.app
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Word.app
        - com.microsoft.openxml.word.app
        /Library/Application Support/Microsoft/Office Converter Support/pptfc.app
        - com.microsoft.openxml.powerpoint.app
        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
        - com.microsoft.silverlight.sllauncher
        /Library/Application Support/iWork '08/iWork Tour.app
        - com.apple.iWorkTour
        /Library/Documentation/HL1650_1670N/Brother Solutions Center
        - N/A
        /Library/Documentation/HL1650_1670N/Maintenance Tuto

  • My iPod touch will not connect to the itunes app!

    Hi, my ipod touch(4th generation) will not connect to the itunes app, app store, or the internet. It is connected to my wifi and shows full bars with connectivity. However when I click on the itunes app it takes to a blank white screen and says it is loading. It stays on that screen for about 5 minutes and then a little blue box pops up and says unable to connect to itunes store. I don't understand this because I also have an Ipad 2 connected to the same wifi and that has no problem connecting to the itunes store or internet. So I don't understand why my iPad can get on itunes while my iPod can't, when they are on the same wifi connection. Can anyone please help me!!!

    Does the iOS device connect to other networks?
    Does the iOS device see the network?
    Any error messages?
    Do other devices now connect?
    Did the iOS device connect before?
    Try the following to rule out a software problem:                 
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on the router
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

Maybe you are looking for

  • Nokia 5030 and GSM 850/1900

    Hi, My brother bought a Nokia 5030 phone for his trip to the USA, on the Nokia website at http://europe.nokia.com/find-products/devices/nokia-5030/specifications Nokia 5030 according to specifications it support the following frequencies: EGSM 900/18

  • Spaces in searches

    When I am searching for an image that has a space in the name like "1234.2.CR2" in the case of the way Apple now handles duplicate file names I don't get a result for just "1234.2.CR2", I get all images with either "1234" or "2.CR2". This seems like

  • Rules and Profile of approver

    How can I view the PO approver rules ,controls and profiles

  • Re-activate verizon service

    Hi there, last year i had disconnected my verizon service, was out of contract, switched to att, well i'm very dis please with att right now. I just wanted to know is it possible to switch back to verizon and re-activate my phone, i still have 4G sim

  • Install ios4 in diferent computer?

    Just to make sure, I have trouble with my home Internet, so can I instal the ios4 in my gf computer then go home and restore my backup and it would work with all my info right?