Rember passwords is inactive

Remember passwords for sites is inactive as well as the "Stop Private Browsing"
I can change these settings as they are inactive.
Im running Firefox 17.0.1 on Mac OS-X 10.8.2

The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
To Reset Firefox do the following:
#Go to Firefox > Help > Troubleshooting Information.
#Click the "Reset Firefox" button.
#Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
#Firefox will open with all factory defaults applied.
Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
Did this fix your problems? Please report back to us!

Similar Messages

  • IPhone prompting for password for inactive Apple ID

    Since I updated to iOS 7, my iPhone keeps prompting me for the password for an old Apple ID. How do I switch it to my current Apple ID?

    If you have an old iCloud ID showing in Settings>iCloud after updating to iOS 7, you have to delete the old account, provide the password for the old ID when prompted to turn off Find My iPhone, then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https//appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Tap edit next to the primary email account, tap Edit, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https//appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • Reference a dataSource in cle-providers.xml

    How can I reference in cle-providers.xml a dataSource specified in data-sources.xml in my OC4J configuration. So that I can specify my datasources in a generic way
    outside my application?
    My cle-providers.xml :
    <?xml version = '1.0'?>
    <cle-providers>
    <provider name="IarEntryServiceProvider" class="oracle.clex.persistence.bc4j.ApplicationModuleProvider">
    <property name="persistencebase" value="asml.iar.persistence.bc4j"/>
    <property name="modulename" value="asml.iar.persistence.bc4j.IarBc4jModule"/>
    <property name="connectionstring" value="jdbc:oracle:thin:<user>/<pwd>@<host>:1521:<sid>"/>
    <property name="user" value="<user>"/>
    <property name="password" value="<pwd>"/>
    <property name="host" value="<host>"/>
    <property name="sid" value="<sid>"/>
    <property name="port" value="1521"/>
    <property name="encryptiontype" value=""/>
    <property name="drivertype" value=""/>
    <property name="failover" value=""/>
    <property name="scope" value="request"/>
    <property name="managestate" value="false"/>
    </provider>
    </cle-providers>
    My data-sources.xml:
    <?xml version="1.0" standalone='yes'?>
    <!DOCTYPE data-sources PUBLIC "Orion data-sources" " " target="_new">http://xmlns.oracle.com/ias/dtds/data-sources.dtd"> <data-sources>
    <data-source
    class="com.evermind.sql.DriverManagerDataSource"
    name="MyDataSource"
    location="jdbc/MyDataSource"
    connection-driver="oracle.jdbc.driver.OracleDriver"
    url="jdbc:oracle:thin:@<host>:5521:<sid>"
    username="<username>"
    password="<pwd>"
    inactivity-timeout="30"
    />
    </data-sources>
    I also posted this question on cleveland forum. In the JHeadstart documentation I miss a proper description of what
    my options are in cle-providers.xml. In the Jheadstart developer guide there are references to Cleveland docs but
    where can I find these; is it possible to ship these together with the JHeadstart documentation?
    Regards,
    Rinse Veltman
    CIBER Solution Partners

    Rinse,
    Do you want BC4J to use your connection defined in data-sources.xml, instead of its own connection pooling mechanism? Or do you want to use the connection straight in your own code?
    For configuring BC4J to use data-sources.xml, I copied this from the Jdev online help:
    For Local or web module deployment, you can use a JDBC URL or a JDBC data source. However, make sure that you rebuild the Middle Tier BC4J project to make the configuration available to the JSP client. You'll also need to edit the x:\<ORACLE_HOME>\j2ee\home\config\data-sources.xml file to include a matching <location> value that you are using in your BC4J project. By default, local or web module deployments use the JDBC URL connection.
    In combination with the MVC Framework cle-providers.xml, this means you should specify the data-osurces.xml <location> value as the value of the connectionstring attribute within the <provider> element. We have not tested this though...
    Note that although using data-sources.xml is more "standards-based", the connection pooling facility of BC4J is superior with its support for high-water marks. See jdev online help for more info on this. I also think that password encryption is not yet possible in data-sources.xml.
    I could not find the MVC Framework User Guide on OTN anymore. I will check where it is located and let you know.
    Steven Davelaar,
    JHeadstart Team.

  • [Microsoft][SQLServer 2000 Driver for JDBC] Broken pipe

    Using 10.1.2.0.2
    I have Web App in which I am connecting to MS SQLServer 2005. I have created a datasource on the server and used Microsoft's free JDBC drivers i.e. msutil.jar,mssqlserver.jar,msbase.jar. Now every now and then I am getting the following error when trying to connect to the SQLServer
    [Microsoft][SQLServer 2000 Driver for JDBC]Broken pipe;nested exception is: java.sql.SQLException:[Microsoft][SQLServer 2000 Driver for JDBC]Broken pipeAny ideas what might be wrong and how to take care of this issue.
    Thanks

    DataDirect driver is certified with Oracle Application Server accessing SQLServer, here is an example of a data source entry for SQLServer in OralceAS 10.1.2.x.
    <data-source
    class="com.evermind.sql.DriverManagerDataSource"
    name="MerantDS"
    location="jdbc/MerantCoreSSDS"
    xa-location="jdbc/xa/MerantSSXADS"
    ejb-location="jdbc/MerantSSDS"
    connection-driver="com.oracle.ias.jdbc.sqlserver.SQLServerDriver"
    username="test"
    password="secret"
    url="jdbc:oracle:sqlserver://hostname:port;User=test;Password=secret"
    inactivity-timeout="30"
    />
    Here shows a SQLServer managed data source example and a SQLServer native source example in OracleAS 10.1.3.x:
    SQLServer Managed Data Source
    <connection-pool name="ConnectionSqlserver"
    max-connections="20"
    min-connections="1">
    <connection-factory
    factory-class="com.oracle.ias.jdbcx.sqlserver.SQLServerDataSource"
    user="msuser"
    password="mspass"
    url="jdbc:oracle:sqlserver://myserver\\myinstance;User=msuser;Password=mspass" >
    <property name="serverName" value="myserver\\myinstance"/>
    <xa-recovery-config>
    <password-credential>
    <username>msuser</username>
    <password>mspass</password>
    </password-credential>
    </xa-recovery-config>
    </connection-factory>
    </connection-pool>
    <managed-data-source connection-pool-name="ConnectionSqlserver"
    jndi-name="jdbc/mysqlserver"
    name="mysqlserver" />

  • MDB from AQ in OC4J R2 developers preview.

    Does any one have an example of the configuration reqired to instantiate MDBs from an Oracle AQ.
    I can see no Oracle docs on this although it is listed as one of the features in OC4J R2.
    Cheers,
    Matt

    good afternoon all -
    The Oracle AQ integration for OC4J should function with the developer's release available on OTN. I do recall seeing a few issues that needed to be worked around, I will dig the email I have up and send that in a separate post.
    What follows is a text cut-n-paste of a few sections from the J2EE Services Guide documentation we are providing for Release 2. These books are not yet published on OTN - I'll try and find out when we will be making them available, they contain a lot of good information.
    Please take a read of this see if it helps you to configure Oracle AQ/OJMS as a JMS resource provider for OC4J.
    cheers!
    -steve-
    Resource Providers
    The ResourceProvider interface allows you to plug in third-party message providers (such as Oracle Advanced Queuing, MQSeries and SonicMQ) as JMS resource providers. This allows EJBs, servlets, and OC4J clients to access many different queue implementations. The third-party message providers are accessed through the ResourceProvider interface.
    Note:
    Except as noted here, you configure OC4J JMS as you would any other JMS implementation.
    Plugging In Resource Providers
    To add a custom resource provider to OC4J, you must add the <resource-provider> tag to orion-application.xml. This section describes how to add one such ResourceProvider.
    An example ResourceProvider, ContextScanningResourceProvider, is bundled with OC4J. To use this ResourceProvider, you would add the following tag to orion-application.xml:
    <resource-provider
    class="com.evermind.server.deloyment.ContextScanningResourceProvider"
    display-name="SwiftMQ">
    <description>
    SwiftMQ resource provider.
    </description>
    <property name="java.naming.factory.initial"
    value="com.swiftmq.jndi.InitialContextFactoryImpl">
    <property name="java.naming.provider.url"
    value="smqp://localhost:4001">
    </resource-provider>
    This example makes SwiftMQ the default ResourceProvider for JMS connections -- the first <resource-provider> tag in orion-application.xml becomes the default resource provider for the types it handles. Adding this tag makes the resource available in the Orion JNDI under java:comp/resource/, as well as making SwiftMQ the default JMS resource for such actions as deploying a message-driven bean.
    Configuring Message Providers
    Install and configure the message provider according to the instructions in its documentation, then verify the installation by running any examples or tools supplied by the vendor.
    Register the message provider in some JNDI-accessible store (a file system, an LDAP OiD, or the like.) Use JMS provider tools to configure and populate this JNDI store with, for instance, the provider's QueueConnectionFactory and the queues of interest.
    Make the JNDI store accessible to OC4J by adding a <resource-provider> entity to orion-application.xml pointing to the JNDI store. This example demonstrates using SonicMQ as the message provider and the file system as the JNDI store:
    <resource-provider
    class="com.evermind.server.deployment.ContextScanningResourceProvider"
    name="SonicJMS">
    <property name="java.naming.factory.initial"
    value="com.sun.jndi.fscontext.RefFSContextFactory" />
    <property name="java.naming.provider.url"
    value="file:/private/jndi-directory" />
    </resource-provider>
    Copy the required JNDI files (for a file-system JNDI, fscontext.jar and providerutils.jar) to $J2EE_HOME/lib.
    Restart OC4J. Whenever you add, delete, or reconfigure a resource provider, you must restart OC4J.
    JNDI Resource Provider Names
    OC4J resource provider extensions create resources under the java:comp/resource JNDI name tree. OJMS resource names take the form:
    java:comp/resource/ProviderName/ResourceType/ResourceName
    where:
    ProviderName
    is the user-chosen name of the resource provider.
    ResourceType
    (required for Oracle AQ/OJMS resource providers only) is a fixed string that can take one of four values: QueueConnectionFactories, TopicConnectionFactories, Queues, or Topics. The specified value identifies the JMS resource as being of the appropriate administered object type.
    ResourceName
    is a user-chosen name for a JMS connection factory or a valid AQ queue name for a JMS destination. Valid Oracle AQ names conform to the [schema.]queue_name scheme.
    Accessing Message Queues
    OC4J applications can now access the message queues. Message queues can be accessed in one of two ways:
    Through their names, as in
    java:comp/resource/<Provider_Name>/<Queue_Name>
    An application would access the queue like this:
    queueConnectionFactory=(QueueConnectionFactory)
    jndiContext.lookup("java:comp/resource/SonicJMS/QueueConnectionFactory");
    By binding message-driven beans to queues in orion-ejb-jar.xml
    To bind message-driven beans to queues in orion-ejb-jar, you would add a tag like:
    <message-driven-deployment
    connection-factory-location="java:comp/resource/SonicJMS/QueueConnectionFactory"
    destination-location="java:comp/resource/SonicJMS/SampleQ1"
    name="MessageBean">
    Using Oracle AQ as a Resource Provider
    To access Oracle AQ queues through JMS, you must do the following:
    Create an RDBMS user through which the JMS application will connect to the back-end database. The user should have the necessary privileges to perform AQ operations. AQ allows any database user to access queues in any schema, provided the user has and the schema exports the appropriate access privileges.
    Configure an OC4J resource provider with information about the back-end database. Create data sources or LDAP directory entries, if needed.
    Access the resource using Oracle AQ/OJMS resource names, which include the ResourceName name component.
    Configuration
    The OC4J resource provider for OJMS is implemented by the class oracle.jms.OjmsContext. Each OJMS resource provider instance is a <resource-provider ...> XML element (a child element of the orion-application element) in the $J2EE_HOME/config/application.xml file.
    There are 3 ways of configuring the OJMS resource provider.
    Inline configuration (all relevant information for accessing the back-end database is specified within the resource-provider element in application.xml).
    Data Source configuration (the resource-provider element in application.xml refers to a data-source element configured in data-sources.xml which contains information on accessing the back-end database).
    LDAP configuration (the resource provider contains information to access an OID/LDAP directory which contains information on accessing the back-end database).
    This section describes only the inline and data source configuration methods.
    Inline Configuration
    An inline resource provider configuration consists of a resource provider instance name (user-chosen, but unique among all resource providers configured in OC4J), a JDBC URL to connect to the back-end database, and the user/password to connect as. For example:
    <resource-provider class="oracle.jms.OjmsContext" name="MyContext1">
    <description>OJMS Context using thin JDBC</description>
    <property name="url"
    value="jdbc:oracle:thin:@myhost.foo.com:1521:mydb"></property>
    <property name="username" value="myuser"></property>
    <property name="password" value="mypass"></property>
    </resource-provider>
    <resource-provider class="oracle.jms.OjmsContext" name="MyContext2">
    <description>OJMS Context using OCI JDBC</description>
    <property name="url" value="jdbc:oracle:oci:@mydb.foo.com"></property>
    <property name="username" value="myuser"></property>
    <property name="password" value="mypass"></property>
    </resource-provider>
    This creates 2 resource providers, MyContext1 and MyContext2, that log in as myuser/mypass to the back-end database mydb using the thin and OCI JDBC drivers respectively.
    Data Source Configuration
    A data source resource provider configuration consists of a resource provider instance name (user-chosen, but unique among all resource providers configured in OC4J), a data source name, and the data source configuration (in data-sources.xml). For example:
    <resource-provider class="oracle.jms.OjmsContext" name="MyContext3">
    <description>OJMS Context using a datasource</description>
    <property name="datasource" value="jdbc/MyDS3"></property>
    </resource-provider>
    <resource-provider class="oracle.jms.OjmsContext" name="MyContext4">
    <description>OJMS Context using a datasource</description>
    <property name="datasource" value="jdbc/MyDS4"></property>
    </resource-provider>
    in application.xml and the following data sources in data-sources.xml:
    <data-source
    class="oracle.jdbc.pool.OracleDataSource"
    name="MyDS3"
    location="jdbc/MyDS3"
    xa-location="jdbc/xa/MyXADS3"
    ejb-location="jdbc/MyEjbDS3"
    url="jdbc:oracle:thin:@myhost.foo.com:1521:mydb"
    username="myuser"
    password="myuser"
    inactivity-timeout="30"
    />
    <data-source
    class="oracle.jdbc.pool.OracleDataSource"
    name="MyDS4"
    location="jdbc/MyDS4"
    xa-location="jdbc/xa/MyXADS4"
    ejb-location="jdbc/MyEjbDS4"
    url="jdbc:oracle:oci:@mydb.foo.com"
    username="myuser"
    password="myuser"
    inactivity-timeout="30"
    />
    This creates 2 resource providers, MyContext3 and MyContext4, that use the data sources jdbc/MyDS3 and jdbc/MyDS4 respectively to connect to the back-end database. The data sources themselves contain the appropriate JDBC driver/connect information.

  • How to register MySQL JDBC Driver in OC4J

    Does anyone know how to register the MySQL JDBC driver in OC4J ?

    When your application must connect to heterogeneous databases, use DataDirect JDBC drivers. DataDirect JDBC drivers are not meant to be used with an Oracle database but for connecting to non-Oracle databases, such as Microsoft, SQLServer, Sybase and DB2. If you want to use DataDirect drivers with OC4J, add corresponding entries for each database in the data-sources.xml file.
    Please see the DataDirect documentation for information on installing the DataDirect JDBC drivers.
    The following is an example of a data source entry for SQLServer. For more detailed information, see the DataDirect Connect JDBC User's Guide and Reference.
    <data-source
    class="com.evermind.sql.DriverManagerDataSource"
    name="MerantDS"
    location="jdbc/MerantCoreSSDS"
    xa-location="jdbc/xa/MerantSSXADS"
    ejb-location="jdbc/MerantSSDS"
    connection-driver="com.merant.datadirect.jdbc.sqlserver.SQLServerDriver"
    username="test"
    password="secret"
    url="jdbc:sqlserver//hostname:port;User=test;Password=secret"
    inactivity-timeout="30"
    />
    For a DB2 database, here is a data source configuration sample:
    <data-source
    class="com.evermind.sql.DriverManagerDataSource"
    name="MerantDS"
    location="jdbc/MerantDB2DS"
    xa-location="jdbc/xa/MerantDB2XADS"
    ejb-location="jdbc/MerantDB2DS"
    connection-driver="com.merant.datadirect.jdbc.db2.DB2Driver"
    username="test"
    password="secret"
    url="jdbc:sqlserver//hostname:port;LocationName=jdbc;CollectionId=default;
    inactivity-timeout="30"
    />
    For a Sybase database, here is a data source configuration sample:
    <data-source
    class="com.evermind.sql.DriverManagerDataSource"
    name="MerantDS"
    location="jdbc/MerantCoreSybaseDS"
    xa-location="jdbc/xa/MerantSybaseXADS"
    ejb-location="jdbc/MerantSybaseDS"
    connection-driver="com.merant.datadirect.jdbc.sybase.SybaseDriver"
    username="test"
    password="secret"
    url="jdbc:sqlserver//hostname:port;User=test;Password=secret"
    inactivity-timeout="30"
    />
    please link: http://otn.oracle.com/docs/products/ias/doc_library/903doc_otn/generic.903/a97690/ds3.htm#100612

  • DB connections from oc4j app

    Hi!
    I'd like to verify if our app (configured by other company) is configured properly.
    We should handle 2000-4000 of users, and I was told that each user uses db connection.
    In oc4j data-sources.xml I have:
    <data-source name="WebAppDataSource" location="jdbc/core/WebAppDataSource" class="com.evermind.sql.DriverManagerDataSource" ejb-location="jdbc/WebAppDataSource" xa-location="jdbc/xa/WebAppDataSource" pooled-location="jdbc/pool/WebAppDataSource" connection-driver="oracle.jdbc.driver.OracleDriver" username="app_portal" url="jdbc:oracle:thin:@10.10.10.4:1521:mydb" min-connections="50" max-connections="500" password="portal_03" inactivity-timeout="60" wait-timeout="10"/></data-sources>
    So - at startup (currently 20 processes of oc4j) i got 1000 db connections (and 1000 db processes), but on heavy load (>1000 clients on the same time) it raises to more than 100 conns. per process. A lot of...
    In addition our app was configured to use connection pooling (to reduce db coonections amount), and in oc4j.properties we have:
    oracle.home=/u01/oas10g
    jbo.ampool.initpoolsize=100
    jbo.ampool.maxpoolsize=300
    jbo.recyclethreshold=250
    jbo.ampool.maxavailablesize=250
    jbo.ampool.minavailablesize=250
    jbo.ampool.maxinactiveage=1500
    jbo.dofailover=true
    jbo.maxpoolsize=300
    jbo.doconnectionpooling=true
    Could someone tell me whether using such config files makes any sense?
    Regards
    Rafal

    In my experience I think you would want to have a managed data source setup to allow the application server to manage the pool. Based on the data-source.xml you provided, this doesn't look like it is configured for that.
    also the driver class to use for a pooled data source should be: oracle.jdbc.pool.OracleDataSource
    I would think it should be structured like:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <data-sources>
    <managed-data-source connection-pool-name="Pool_WebAppDataSource" jndi-name="WebAppDataSource" name="WebAppDataSource"/>
    <managed-data-source connection-pool-name="Pool_WebAppDataSource" jndi-name="jdbc/core/WebAppDataSource" name="jdbc/core/WebAppDataSource" />
    <managed-data-source connection-pool-name="Pool_WebAppDataSource" jndi-name="jdbc/WebAppDataSource" name="jdbc/WebAppDataSource" />
    <managed-data-source connection-pool-name="Pool_WebAppDataSource" jndi-name="jdbc/xa/WebAppDataSource" name="jdbc/xa/WebAppDataSource" />
    <connection-pool name="Pool_WebAppDataSource" connection-retry-interval="0" inactivity-timeout="60" wait-timeout="10" min-connections="50" max-connections="500" property-check-interval="30" validate-connection="true" validate-connection-statement="select 1 from dual">
    <connection-factory factory-class="oracle.jdbc.pool.OracleDataSource" username="app_portal" password="portal_03" url="jdbc:oracle:thin:@10.10.10.4:1521:mydb" />
    </connection-pool>
    </data-sources>

  • I just synced with my MBP, but my iCloud account email address remains in a "inactive" status. Under settings the Apple ID and Password is wrong, and I can't find out how to fix it

    I just switched over to an iPhone 4 CDMA on the verizon network the other day. I connected with my MBP/ w Lion and the sync seemed to go flawless.... All my date was pushed thru the iCloud, but then I saw that my main email address @me.com says that it is inactive when I look at it in Settings- Mail-Accounts. I can see that the iCloud account name and password is wrong, but I can not seem to find out how to correct it. Can anyone help me?
    Thanks a lot,
    Fred

    You either have an incredibly complex computer setup or I think you are confusing terminology here.  If you have iTunes set to share your library with others in your iTunes preferences then other computers in the area will see it as an item when they are running their iTunes and have it set to check for shared libraries.  Your husband is probably seeing this when running iTunes on his computer.  You can disable this sharing on your computer and/or he can set his not to pick up shared libraries.
    By the way, an iTunes account is something you log into when you want to buy something from Apple.  On your computer it is simply your iTunes collection or your iTunes application.  So you need to turn off sharing in your iTunes application preferences.
    Your husband is seeing "his" iTunes collection when running iTunes, but it is possible he doesn't have anything in it if it is a brand new computer.

  • How do you re-set an apple ID password when I go into reset it states apple ID is inactive but I can't set a new one up with the email

    My husband got his first iphone and we tried to set him up an apple id using his email but when we tried it stated an apple ID was already set-up.  So we tried to re-set the password but then it states the Apple ID is inactive.........its a crazy circle!!!! HELP!!!!

    Hi AppleGuy678,
    Welcome to the Support Communities!  The article below will help you troubleshoot the issue you are having with your Apple ID:
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    I hope this information helps ....
    - Judy

  • My old email is inactive, can't remember password

    I started an Apple account a long time ago. My old email account is inactive and I can't remember the password. I've tried to reset it but it says my birthday is incorrect.

    Hello,
    First off, ignore Blend for now...get your device/BBID straightened out first. Please see this "sticky" post for helpful information concerning your BBID situation:
    http://supportforums.blackberry.com/t5/BlackBerry-World/How-to-regain-access-to-your-BBID/td-p/25467...
    Hopefully, this information will be of use to you.Given what you describe, it is most likely that you will have to abandon your BBID, WIPE your device, and start over again with a brand new BBID (and this time, take heed of the high security and don't lose track of the credentials/associated email accounts).
    As for the backup/restore problem and it's association of the BBID to link, complete documentation of your configuration (email accounts, configurations, etc.) should allow you to manually reconfigure afterwards, and that would then re-sync any of your accounts/data that are on servers somewhere. If you have only been storing contacts/calendar/etc on the device itself...well, that indeed is a problem. I'm not sure there is a way to overcome that, given the tie within LINK of a backup file to a BBID. Maybe you can find an older version of LINK that does not have that tie-in (and no, I do not know what version to recommend nor where to find it).
    Cheers, and Good Luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Would like to return to opening session window after inactivity for confidentilaty purposes - need to access with a password. tks

    In order to protect emails and documents, I would like it so that after a few minutes of inactivity, the screen goes back to the opening session screen which asks you for a password to continue.  I have a teenager and would like to prevent her from looking into my documents.  Anybody can tell me if that is possible and if so, how to do it ?  Thanking you in advance.

    System Preferences > security ...
    ... has that feature, ready-to-go.
    [√] require password nnn minutes After sleep or when screensaver begins
    Your teen should have their own separate account as well.

  • I am trying to update my apps. When it prompts for my password my old deleted email address comes up. I don't even rember the password for that old email. How can I get to update my apps with my current email?

    I am trying to update my apps. When it prompts for my password my old deleted email address comes up. I don't even rember the password for that old email. How can I get to update my apps with my current email?

    All apps are tied to the Apple ID they are purchased with and is not transferable.
    Delete app and download app with your new Apple ID.

  • An OLD INACTIVE email address, asking for a password, continues to show up to play certain selections in my iTunes Music Library.  I want to REMOVE this old email, HOW DO I REMOVE IT!!  All attempts to remove it have failed!

    An OLD INACTIVE email address, asking for a password, continues to show up to play certain selections in my iTunes Music Library.  I want to REMOVE this old email address, HOW DO I REMOVE IT!!  All attempts to remove it have failed!

    Yes, if you change your Apple ID to your new email address. You don't have to. Under those sort of situations you can speak to Apple about transferring your purchased items to the new Apple ID, and see if they will help you.
    You don't lose access to your older purchased items, you simply cannot update or re-download them or, in some cases, use them without providing the old Apple ID and password. All purchased items are permanently tied to the Apple ID used at time of purchase.

  • Normal behaviour for "inactive passwords" setting?

    If I have the OD policy for passwords set to "disable after inactive for xx days" - does this take effect if a user is not an interactive logon?  ie, I have a user account setup that is used solely for connecting to a share on the server.  It never "logs in" like a human would sitting at a mac.  A process would connect to a share on the server using this user each day.
    Related:  Is there any way to setup "do not expire" for users?

    Hi Jeffery
    As a new user to SAP b1 I have no answer to your question but an observation. I have placed several questions on this forum about Dates because I am convinced that in B1 2007, SAP programmers made a mess in naming Date Field names in such a confusing way that they cannot tell which Date is what. For example in OINV table DocDate field is named Posting Date and in the same table the TaxDate field is named Document Date.
    So this is only a guess but perhaps the Date Ranges you are referring to are pointing to the wrong DATE field so it would  not work.
    Good luck
    Robert

  • Why must my password must be re-entered after so few seconds of inactivity?

    I find that only a few seconds of contemplation cause me to have to re-enter my password to return to the page I was editing. Sometimes the password retuns me without a complete sign-in. my browser is MozillaFirefox 3.6.** but internet explorer 8 is in my system. 'Crash' may be the wrong term. What I called 'Crash' is a few seconds of inactivity.

    Hi,
    Post in the MacBookPro forum here.
    https://discussions.apple.com/community/notebooks/macbook_pro
    This is the Mac App Store forum. Don't worry..  might take awhile to adjust to the new ASC.
    Carolyn 

Maybe you are looking for

  • Looping Multiple Text files in SSIS

    Hi, I have a requirement in which i have 100 text files having one row each in it. Now i need to load Each row of data into a SQL table using SSIS and i dont want to stop the package even though it fails for any reason ( like inapporiate Data somethi

  • Just snipping wires to remove a completely broken display

    I know there's been a bunch of topics posted on repairing/replacing a broken screen, but... I've got a Powerbook Ti with a completely inop screen and two broken hinges (yes, I dropped it badly!). The laptop works fine with an external monitor. The on

  • Oracle BAM Application Policies in EM missing

    Hello, I am trying to assign users and/or groups to the pre-seeded Oracle BAM application policies (section 26.3.2 and 26.3.3 of below support document). The way I get there is to navigate in the EM: BAM/OracleBamServer(right-click)/Security/Applicat

  • Aperture and RAW support with Canon EOS 60D

    Got my new Canon EOS 60D yesterday. But Aperture does not support the new RAW photos from the EOS 60D yet. Anyone with the same problem? When is Apple updating the RAW support for the 60D in Aperture?

  • Pixma MX860 shows an error 9000

    Cannon MS860 printer shows an error 9000 on screen, I followed Instruction to turn it off then back on and get the same error.  The manual gives no help.  Any suggestions from out there?