Remove accessibility from Oracle Linux 6.1

I have an oracle linux server (6.1 with gnome 2.28.2) that supports a number of terminals.
A user added the magnifier tool (accessibility feature) and now noone can login because the magnifier tool is over the accessibility icon. How can I correct this? Is there a way to completely disable the accessibility icon?
Please help,
Nikos

OK, I fixed the magnifier issue using:
sudo -u gdm gconftool-2 /desktop/gnome/applications/at/screen_magnifier_enabled type bool set false
I would still like to know how to disable or uninstall the accessibility feature all-together...
Best regards and sorry for troubling you,
Nikos
Edited by: nikos on Nov 23, 2012 4:09 PM

Similar Messages

  • RAR: Risk resolution options , Remove access from user is disabled

    Hi All,
    In RAR , After risk analysis, if we click on risk description 3 Risk resolution options are there.
    Mitigate Risk
    Remove access from user
    Delimit access for user
    In these options mitigate risk only working.I am using GRC SP 5.
    How about other two options , save button is disabled.How to enable this?
    can we remove/delimit access to  user using these options? any body  tested these options?
    Thanks n Regards,
    Joseph

    Joseph,
       These functionalities do not exist in the tool and these buttons have been in the RAR for past 2 years. SAP wants clients to use CUP for removing or delemiting access so I highly doubt this will ever work.
    Alpesh

  • Removing access from Project creator by admin account

    We are working with Microsoft Project Server 2013 installed with Sharepoint server 2013 
    We have two users U1 and U2 and Admin account as A1
    U1 created a Project P1 and gave owner access to U2
    after that Admin A1 removed U1 from owners list but still U1 is able to browse project with same access level.
    We want to Remove access of U1 from Project P1 with help of admin account.
    Tech Learner

    Change the project owner from U1 to U2 in the project information page in PWA. From the project center, click on the project P1, go to the project detail page and update the "project owner" field for U2.
    Already Did
    Then U2 must set himself as the status manager of the project. Ask the user U2 (be aware that this operation CANNOT be done by the admin) to open the project in MS Project, insert the status manager column and set his name (U2) for all tasks of the project.
    Save and publish the project.
    What is Status Manager ? I can't find such permission level anywhere in Project Server 2013
    See this blog
    from EPMA which explains the procedure very well.
    Not exactly for Project server 2013 
    In case U1 still has the same access to the project, it might be due to your RBS/categories configuration. 
    what is RBS/Categories Configuration n PS 2013 ?
    Tech Learner

  • Removing access from an iPad no longer in my possession

    Got divorced and my ex-wife kept my iPad. I changed my AppleID password but it looked like she was still able to download apps I had already purchased. I've gone in and deregistered the device from my AppleID; is there anything else I can do to force her to get her own ID and prevent her from using mine? I realize I should have thought of this before she took off with it but at the time things were looking like they'd be amicably resolved.

    Zazalia wrote:
    I imported some photos from my macbook to my iPhone. I no longer need them and I can't figure out how to remove them from my phone. I no longer have the laptop that I imported these photos from.
    Thanks for your help
    Then your only option to remove these photos from your phone is to restore your device as NEW.

  • JDBC Drivers to access from Oracle on Unix environment

    hi,
    Iam able to run my java application to access the data from the Oracle (8.1.7)using JDBC-ODBC bridge drivers on my Windows environment,but when i tried to execute the same program on Unix(I used same DSN)enivronmentit is giving an 'SQLException:NO Suitable Driver'.
    Iam using JDK1.2.2 version and have got Oracle 8.0.5 client on my PC.Iam using WindowsNT workstation and Unix on the same machine.
    This is the program Iam using in both Windows and Unix.
    import java.sql.*;
    import java.util.*;
    import java.math.*;
    public class db11
    public static void main(String[] args)
    String url="jdbc:odbc:dsn_name";
    try
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection dbconn=DriverManager.getConnection(url,"scott","tiger");
    System.out.println("Connection OK");
    catch(ClassNotFoundException c1)
    System.out.println(c1.toString());
    catch(SQLException c2)
    System.out.println(c2.toString());
    Can anyone help me out how to run the same in Unix.Iam able to ru my other Java applications with out database applications.
    Regards
    Rao

    Hi Sekar,
    Thanks for replies.Iam sending you the code.Pls go thru that and let me know where I went wrong.
    import java.io.*;
    import java.sql.*;
    import java.util.*;
    import java.math.*;
    public class db11
    public static void main(String[] args)
    String url="jdbc:oracle:thin@<host>:1521:dsn";
    try
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    // Class.forName("oracle.jdbc.driver.OracleDriver");
    Connection dbconn=DriverManager.getConnection(url,"username","pwd");
    System.out.println("Connection OK");
    catch(ClassNotFoundException c1)
    System.out.println(c1.toString());
    catch(SQLException c2)
    System.out.println(c2.toString());
    Iam still getting the error ClassNotFoundException:oracle.jdbc.driver.OracleDriver.
    I tried by including the oracle.sql.*;oracle.jdbc.driver.*; as well,then Iam getting cannot import the above packages.
    Classpath and path are same as I mentioned in my previous mail.
    regards
    Rao

  • Database access from Oracle Java Cloud Service application

    I have registered for Oracle Java Cloud Service for trial period. I want to deploy a Spring MVC 3.2 and Hibernate 4.0 web application.
    I created a table in the Database Cloud. I am not sure how do I access the Database Cloud Service from my application.
    Need your guidance/pointers/references that can help me establish connection from my application to the database.
    Thanks,
    Ujjwal

    Hi,
    Use JPA - see the visitors example, it uses @PersistenceUnit injection with previously weaved .class entity files.
    You can use application managed EMF's and EntityManagers with code like the following - which is not preferable to using @PersistenceContext injection on an @Stateless session EJB but...
              EntityManagerFactory emf = Persistence.createEntityManagerFactory("JPAServletPU");
              EntityManager em = emf.createEntityManager();
              EntityTransaction transaction = null;
              try {
                   transaction = em.getTransaction();
                   transaction.begin();
                   Visitor entity = new Visitor();
                   entity.setName(name);
                   entity.setNum(num);
                   em.persist(entity);
                   transaction.commit();
                   System.out.println("Committing: " + entity);
              } catch (Exception e) {
                   e.printStackTrace();
              } finally {
                   em.close();
                   emf.close();
    Use a persistence.xml like the following
    <persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
    <persistence-unit name="JPAServletPU" transaction-type="JTA">
    <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
         <!--https://cloud.oracle.com/mycloud/f?p=5300:1000:259334829915901-->
    <jta-data-source>database</jta-data-source>
    <class>com.vision.cloud.jpa.Visitor</class>
    <exclude-unlisted-classes>false</exclude-unlisted-classes>
    <properties>
         <property name="eclipselink.target-database" value="Oracle10g" />
    <property name="eclipselink.ddl-generation" value="create-tables"/>
    <!-- property name="eclipselink.ddl-generation" value="drop-and-create-tables"/-->
    </properties>
    </persistence-unit>
    </persistence>
    Check out a tutorial on WebLogic JPA ORM usage here to get started as well.
    http://wiki.eclipse.org/EclipseLink/Examples/JPA/WebLogic_Web_Tutorial

  • Upgrade from oracle linux 5.5 to oracle linux 6 with oracle kernel

    Hi
    Is it possible to directly upgrade this two OS
    Regards
    Jaroslaw

    Oracle Linux is derived from Red Hat Enterprise Linux, which does not support upgrading between major versions. Red Hat does not support in-place upgrades between any major versions of Red Hat Enterprise Linux. In-place upgrades across major releases do not preserve all system settings, services or custom configurations.

  • Swap size and / space from Oracle Linux VM Template

    Hi,
    I created few VMs with OVM_OL5U8_x86_64_PVM.ova.
    However, root file system is 10GB and swap is 2GB even I created 50GB virtual disk for VM system.
    I can't change these fixed size.
    Can I increase this from template?
    I create additional virtual disk and add to VM to use bigger swap(using OS command) but just want to implement default system virtual disk provides bigger than 10GB root filesystem and bigger swap size.
    Thanks,
    Jason

    I tried exactly same with another disk but got same error please find the screen shots.

  • Accessing non-oracle databases from oracle

    Is there any way to access from oracle to non-oracle databases and copy the data using COPY command?

    Hi Nitin!
    You can access these legacy applications as so-called external applications. Check out the Application Server Single Sign On guide.
    cu
    Andreas

  • How to migrate data from MS Access to Oracle???????

    how to migrate data from MS Access to Oracle???????

    You can use heterogeneous services (HS) connection to MS-Access from Oracle and still use the same PL/SQL (or even a single CTAS statement) or SQL to load directly to Oracle tables. It's transparent, quick and clean as opposed to writing complex control files.
    You might have to set the ODBC connection to your Access database and add the details to Oracle listener.
    Please let me know if you are not sure how to set up the connection.

  • SQL query (Windows) to Oracle (Linux)

    Hi,
    I have an Oracle on Linux, it is an Oracle XE. From Windows 7, I would like to access this Oracle Linux using any SQL query software. So, to do it, I would like to know:
    1) which components do I need to install ?
    2) how can I setup the components or the operating system or Oracle?
    4) where I can download the components? and what would be the name of the components?
    4) which SQL software I can run on Windows  to access Linux directly using the components or some settings on this software?
    5) are there any software that it is free to download?
    tks.

    ac01e371-bc09-4b23-81d2-b251ca9edd1e wrote:
    Hi,
    I have an Oracle on Linux, it is an Oracle XE. From Windows 7, I would like to access this Oracle Linux using any SQL query software. So, to do it, I would like to know:
    1) which components do I need to install ?
    2) how can I setup the components or the operating system or Oracle?
    4) where I can download the components? and what would be the name of the components?
    4) which SQL software I can run on Windows  to access Linux directly using the components or some settings on this software?
    5) are there any software that it is free to download?
    tks.
    Oracle SQL Developer Downloads&lt;/title&gt;&lt;meta name=&quot;Title&quot; content=&quot;Oracle SQL Developer Downloads…
    SQuirreL SQL Client Home Page&lt;/title&gt;&lt;/head&gt;&lt;body&gt;&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 …

  • Oracle Linux Patching/Updates Impact on Oracle Database

    I have several questions regarding Oracle Linux patching and its impact on Oracle Database.
    3 node Cluster
    Operating System: Oracle Linux Release 5 update 2
    Kernel: 2.6.18-92.1.22.0.1.el5 x86_64 GNU/Linux
    Grid Infrastructure: Oracle Grid Infrastructure 11g Release 2 (11.2.0.2)
    Database: Oracle Database 11g Release 2 Enterprise Edition (11.2.0.2) with RAC option
    ASM with ASMLib is being used for Data and FRA.
    *1)* Given your at Oracle Linux Release 5 update 2, will applying only Security Patches require any changes to ASMLib, Oracle Grid Infrastructure and/or Oracle Database (software binaries, configuration etc.)?
    *2)* Given your at Oracle Linux Release 5 update 2, will applying Bug Fixes and Security Patches to Oracle Linux 5 update 2 require any changes to ASMLib, Oracle Grid Infrastructure and/or Oracle Database (software binaries, configuration etc.)?
    *3)* Given your updating from Oracle Linux Release 5 update 2 to Oracle Linux Release 5 update 8, will this require any changes to ASMLib, Oracle Grid Infrastructure and/or Oracle Database (software binaries, configuration etc.)?
    I would most whole heartedly appreciate if someone could answer the specific questions asked, inline if possible. Our System Administrator is preparing to perform some patching and as the DBA I'd like to be certain what changes I need to prepare for? I also have a single instance database setup with Oracle Restart. I don't know if this impacts the answers above.
    Thanks in advance.

    How do you plan to apply Oracle Linux security patches? As far as I'm aware the yum security plug-in does not work with the Oracle public yum repository and there is no really feasible way to automate and determine security related patches only, unless you setup Oracle Enterprise Manager Grid Control (11g) or Cloud (12c)  and have a subscription to Oracle ULN.
    If you upgrade your Oracle Linux to the latest available version using the public yum repository, all patches, including errata will be applied. You cannot apply patches and stay on a specific release version unless you have a subscription and appropriate yum repository access.
    As far as I'm aware there are no changes required to your Oracle database or ASM setup and configuration when updating the OS, provided the version of the Oracle database is supported for the specific OS version (ASM features like ADVM/ACFS are kernel version depending). Upgrading from one major release to another, such as upgrading Oracle Linux 5 to Oracle Linux 6 is not supported and will require upgrading the Oracle Database to 11.2.0.3. You can check the Oracle database certification matrix to determine which Oracle database release version is required for which OS version http://docs.oracle.com/cd/E11882_01/relnotes.112/e23558/toc.htm
    The relinking of Oracle Database binaries is a common practice when updating the OS. I do not think it is necessary under Linux. Oracle binaries are typically standalone applications, or use Oracle provided libraries, or in some cases use OS shared libraries, which does not require relinking of Oracle binaries. Upgrading the Oracle database software of course requires relinking.
    Edited by: Dude on Dec 4, 2012 2:09 PM

  • How to get data from Oracle to SAP

    Hi All,
           I want to get data from Oracle to my internal table in SAP,
    I worked on puting  the data from SAP to Oracle, it's working fine...
    Can anybody suggest the code for accessing from Oracle with 4 primary keys in oracle.
    regards
    manish

    hi
    good
    there is two things in sap open sql and native .if you ll use the open sql than you can access any database.
    thanks
    mrutyun

  • Problem in connecting Non Oracle Database from Oracle

    Hi:
    I want to access "MS ACCESS" from Oracle 10g (10.2.0.1) using Windows XP.
    I tried my best, applied all proper instructions I found from books and from Internet, but getting an error.
    Here is what I did:
    My Oracle database is called "ORCL" and "MS ACCESS" is called "access_1".
    There is only one table "Employees" in "access_1".
    1. Accessed ODBC from Start | Control Panel | Administrative Tools.
    2. Clicked on Users DSN | "access_1" | Add.
    3. Clicked on "Drive do Microsoft Access (*.MDB)" .
    4. Hit Finish.
    5. Entered at DATA SOURCE NAME "ODBC1" and at DESCRIPTION "Connect Oracle to MS Access". Also I clicked on SELECT and chose the "Access_1.mdb" which is located at "C:\Documents and Settings\Muhammad\My Documents" folder. Clicked OK. and clicked on OK again.
    6. Now I went to Oracle side and configured listener as follows: (Only portion is shown here)
    # listener.ora Network Configuration File: C:\oracle\product\orcl\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\oracle\product\orcl)
    (PROGRAM = extproc)
    (SID_DESC =
    (SID_NAME = hsodbc)
    (ORACLE_HOME = C:\oracle\product\orcl)
    (PROGRAM = hsodbc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = RIYAZDESKTOP)(PORT = 1521))
    7. Configuring the hs file located at C:\oracle\Product\Orcl\hs|admin as follows:
    # HS init parameters
    # HS_FDS_CONNECT_INFO = <odbc data_source_name>
    # HS_FDS_TRACE_LEVEL = <trace_level>
    HS_FDS_CONNECT_INFO = odbc1
    HS_FDS_TRACE_LEVEL = OFF
    # Environment variables required for the non-Oracle system
    #set <envvar>=<value>
    8. The TNSNAMES.ORA File is located at C:\:\oracle\product\orcl\network\admin\ and has the following text (only the related text is shown here):
    # tnsnames.ora Network Configuration File: C:\oracle\product\orcl\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools
    access_db.world =
    (DESCRIPTION =
    (Address = (PROTOCOL = TCP) (HOST = RIYAZDESKTOP) (PORT = 1521))
    (CONNECT_DATA = (SID = hsodbc))
    (HS=OK)
    9. The database link is created as follows:
    SQL> create database link access_db USING 'access_db.world';
    Database link created.
    SQL>
    10. Now the test and selection:
    SQL> select * from employees@access_db;
    select * from employees@access_db
    ERROR at line 1:
    ORA-28545: error diagnosed by Net8 when connecting to an agent
    Unable to retrieve text of NETWORK/NCR message 65535
    ORA-02063: preceding 2 lines from ACCESS_DB
    OH! I HAVE TO RELOAD THE LISTENER AND I DID IT HERE.
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.
    C:\oracle\product\orcl\BIN>lsnrctl reload
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 17-NOV-2006 17:51:26
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    The command completed successfully
    C:\oracle\product\orcl\BIN>
    SQL> select table_name from all_tables@access_db;
    select table_name from all_tables@access_db
    ERROR at line 1:
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [Generic Connectivity Using ODBC][Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified (SQL State: IM002; SQL Code: 0)
    ORA-02063: preceding 2 lines from ACCESS_DB
    I HAVE DONE IT EXACTLY WHAT YOU PROVIDED ME BUT GOT THE SAME RESULT.
    ANY SOLUTION!
    THANKS.

    see Connect 9i to Microsoft Access Database

  • Issue Upgrade Oracle Linux 5U8 to 6U2 x64

    Dear Experts,
    trying to update my linux install from Oracle Linux 5 Update 8 on 64 bit to Oracle Linux 6 Update 2. This results in following errors for dependency check:
    Error resolving dependencies:
    Missing Dependency: libiw.so.28()(64bit) is needed by package rhpl-0.194.1-2.0.2.x86_64 (installed)
    Missing Dependency: libicui18n.so.36 is needed by package boost-1.33.1-15.el5.i386 (installed)
    udisks conflicts with kernel
    Missing Dependency: libicuuc.so.36 is needed by package boost-1.33.1-15.el5.i386 (installed)
    Missing Dependency: libiw.so.28()(64bit) is needed by package yast2-hardware-detection-2.13.7-0.9.x86_64 (installed)
    Missing Dependency: device-mapper = 1.02.66-6.el6 is needed by package device-mapper-libs-1.02.66-6.el6.x86_64 (ol6_latest)
    authconfig conflicts with nss_ldap
    Missing Dependency: python(abi) = 2.4 is needed by package alchemist-1.0.36-2.el5.x86_64 (installed)
    Missing Dependency: python(abi) = 2.4 is needed by package rhpxl-0.41.1-12.0.2.el5.x86_64 (installed)
    Missing Dependency: libedataserver-1.2.so.7 is needed by package gnome-panel-2.16.1-7.el5.i386 (installed)
    Missing Dependency: NetworkManager-glib = 1:0.7.0-13.el5 is needed by package 1:NetworkManager-0.7.0-13.el5.i386 (installed)
    nss conflicts with curl
    Missing Dependency: libgnome-desktop-2.so.2 is needed by package gnome-panel-2.16.1-7.el5.i386 (installed)
    Missing Dependency: python(abi) = 2.4 is needed by package rhpl-0.194.1-2.0.2.x86_64 (installed)
    Missing Dependency: perl = %{perl_version} is needed by package yast2-core-2.13.39-0.3.x86_64 (installed)
    Missing Dependency: /usr/lib/libaio.so.1 is needed by package oracle-validated-1.1.0-15.el5.x86_64 (installed)
    Missing Dependency: perl = %{perl_version} is needed by package perl-gettext-1.05-13.2.x86_64 (installed)
    Missing Dependency: python(abi) = 2.4 is needed by package python-numeric-23.7-2.2.2.el5_6.1.x86_64 (installed)
    Missing Dependency: python(abi) = 2.4 is needed by package kudzu-1.2.57.1.26-3.0.3.x86_64 (installed)
    Missing Dependency: librpm-4.4.so()(64bit) is needed by package libzypp-2.15.10-0.4.x86_64 (installed)
    Missing Dependency: libboost_filesystem.so.2()(64bit) is needed by package libzypp-2.15.10-0.4.x86_64 (installed)
    Missing Dependency: libnm_glib.so.0 is needed by package 1:NetworkManager-0.7.0-13.el5.i386 (installed)
    Missing Dependency: libneon.so.25()(64bit) is needed by package cadaver-0.22.3-4.el5.x86_64 (installed)
    Missing Dependency: /usr/lib/gcc/x86_64-redhat-linux/4.1.1/libstdc++.a is needed by package oracle-validated-1.1.0-15.el5.x86_64 (installed)
    Missing Dependency: perl = %{perl_version} is needed by package perl-X500-DN-0.28-133.2.x86_64 (installed)
    Missing Dependency: libcurl.so.3()(64bit) is needed by package libzypp-2.15.10-0.4.x86_64 (installed)
    Missing Dependency: libwnck-1.so.18 is needed by package gnome-panel-2.16.1-7.el5.i386 (installed)
    Missing Dependency: libgnome-desktop-2.so.2 is needed by package 1:gnome-utils-2.16.0-5.el5.i386 (installed)
    Missing Dependency: libboost_regex.so.2()(64bit) is needed by package libzypp-2.15.10-0.4.x86_64 (installed)
    Missing Dependency: python-abi = 2.4 is needed by package alchemist-1.0.36-2.el5.x86_64 (installed)
    Missing Dependency: redhat-artwork >= 0.61-1 is needed by package system-config-display-1.0.48-4.el5.noarch (installed)
    Missing Dependency: libaudit.so.0()(64bit) is needed by package ipsec-tools-0.6.5-14.el5_5.5.x86_64 (installed)
    initscripts conflicts with NetworkManager
    Missing Dependency: system-config-network-tui = 1.3.99.21-1.0.1.el5 is needed by package system-config-network-1.3.99.21-1.0.1.el5.noarch (installed)
    Missing Dependency: python(abi) = 2.4 is needed by package up2date-5.10.1-41.10.el5.x86_64 (installed)
    Missing Dependency: python(abi) = 2.4 is needed by package rhel-instnum-1.0.9-1.el5.noarch (installed)
    Missing Dependency: mkinitrd >= 3.2.2 is needed by package up2date-5.10.1-41.10.el5.x86_64 (installed)
    Missing Dependency: python-optik is needed by package up2date-5.10.1-41.10.el5.x86_64 (installed)
    I have already tried
    - upgrade latest patchset Linux 5 U8
    - tried 'yum update --skip-broken'
    - installed yum-utils and run
    - 'package-cleanup --problems'
    - 'package-cleanup --dupes'
    - tried 'rpm -Va nofiles nodigest'
    Any help is welcome.
    Kind regards
    Lorenz

    Oracle Linux, like Red Hat Enterprise Linux, does not support upgrading from one major version to another, and you cannot use yum to perform the installation.
    You can try using the installation DVD, but:
    http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/6/html/Installation_Guide/ch-upgrade-x86.html
    Red Hat does not support in-place upgrades between any major versions of Red Hat Enterprise Linux. A major version is denoted by a whole number version change. In-place upgrades across major releases do not preserve all system settings, services or custom configurations. Consequently, Red Hat strongly recommends fresh installations when upgrading from one major version to another.

Maybe you are looking for

  • How do I sync my email with ipad, iphone, mac.

    I have to delete the same messages on all three devices. Does anyone know how to setup so when I delete on one device, it trashes it on all of em? Thx. Bruce R.

  • Stop error messages in a particular application

    I have an application open all the time which allows me to monitor our printing presses. My problem is that every time there is an error/status message on the printing machine the application takes over my machine and forces me to look at the message

  • ECATT - Actual page not viewable when executing testscript

    As you can see when I run ECATT I dont see the actual page anymore. I only see the recorded page. I think I mis some settings.

  • .swf object/embed problem (only on Win XP IE)

    I have a swf move on domain http://www.foo.com. I am trying to embed this swf movie on a webpage hosted on http://www.bar.com. Mac OS X (all browsers) and on Windows Netscape (7.2 and 8.0/8.1 using the Firefox display option) and Firefox work fine! J

  • Getting setup assistant every time I open itunes

    Hey everyone I get setup assisant everytime I open itunes. My content is fine, the library is there in full but it just pops up everytime... and gets annoying (though its not a large issue). For what it's worth I did transfer my music from another PC