Safari 4.0.4 update creates 7510 new permissions problems

Prior to installing Safari update, running the 'Repair Permissions' in Disk Utility found only one error -- the SUID modification on ARDAgent (Apple Remote Desktop Agent). Apple documents this as being a known issue, but harmless and can be safely ignored. (I'm on OS X 10.6.2 -- if you're still on Leopard then you probably see more errors reported by Disk Utility.)
AFTER installing the Safari update, running the 'Repair Permissions' now finds 7511 errors (7510 new issues).
Most of the errors (I confess I did not actually read all 7510 of them line-by-line) indicate that permissions on the files have been modified to -rw-rw-r-- when they should have been -rw-r--r-- (in Unix that means they've added 'write' permission to make the files group-writeable when they should have been just owner-writeable and universally read-able.)
People have been commenting on the sloppiness of Apple's file permissions for years. It would be so trivial for Apple to catch this during their testing.... after applying the patch, check Disk Utility's 'Repair Permissions' and see if the patch introduced new errors and, if so, correct them prior to releasing the patch.
The good news is that Disk Utility does correctly repair the permissions. If you run a 2nd pass of 'Repair Permissions' you'll see that all the new errors introduced by Safari 4.0.4 patch are cleaned up.

Hello Tim:
Ignore the list. All of us have seen that and have reported it to Apple.
Barry

Similar Messages

  • Thunderbird is no longer able to connect to internet (sending/receiving email, updating, creating a new account,...Firefox connects well

    Version 24.4.0 worked fine until yesterday (2014-04-06) running under windows 8.1 and suddenly it could no longer connetc to internet (sending/receiving email, updating, creating a new account,..). No change was done on my accounts configuration. Other applications connect correctly to internet. Some Windows 8.1 updates were automaticaly applied during the same period (??).
    Any suggestion would be appreciate
    Rgds

    Thank you for your answer. Of course before posting I checked the differetn relmated topics..
    As I explained nothing changed between the moment Thunderbird worked and the moment it stopped working. I checked the firewall (Norton intenet security) and the firewall of my router (Netgear). Nothing relates to Thunderbird.
    I cans get my mail from another workqtation (ubuntu/evolution) with the same provider (same parameters). I just wonder if the last windows 8.1 updates could provoke this trouble...
    For the moment I cannot get rid of this.

  • Create a new system problem???

    Hi
    I'm working with SAP 2007 and the B1i that comes with it.
    I have created a new system in the console under landscape. Then I go to it to edit the details. When I save what I have edited it does nothing and gives an error at the bottom left. It shows the yellow triangle and says error next to it.
    What is wrong?? How do I resolve this???

    Hi Louis,
    What does that error says? I think I had a similar problem... and after reading some javascript in the page came up that I forgot to install MSXML 4.0. After that it worked.
    HTH,
    Ian
    PS. The message was an automatation error or something like that, when making an instance of a XML.

  • Safari Issue - No Thumbnails of Web Pages + New Page problem

    The icon next to the Bookmarks icon is not active. It does not respond to anything. So I can't get access to the thumbnail view of websites. And I can't open a new page. Surfing via one page is possible.
    I've tried shutting down safari by double-tapping the home button and holding the icon until the " - " appears. Then touch the ' - '.
    I've also done a soft reset by pressing the home and power buttons for ten seconds until the apple is displayed. The ipad to restarted and I rechecked Safari but no luck.
    I've also cleared the History, Cookies, and Cache in Settings/ Safari. Still no luck.
    If anyone can help, that would be much appreciated. Thanks.
    - Peter
    http://identityzoom.dk (Video Production in Copenhagen, Denmark)

    Update: Noticed that the 'thumbnail view of webpages' can be activated when the iPad is in a vertical position (it's also possible to view the thumbnails horizontally when in 'thumbnail webpage view mode'). But it can not be activated when the iPad is in a horizontal position. So I have to turn the iPad to a vertical state in order to open a new page. This may be how it is supposed to work, but to me, that seems odd. :-) So I'd be happy, if anyone could tell me how to make the 'thumbnail view of webpages' possible when the iPad is in a horizontal position. Thanks. - Peter.

  • Safari 5.0.3, open link in new tab problem

    I have a Mac 10.6.5.
    When I open safari it works fine, then if I right click on a link I see the options open in a new tab, or window (and many other options), when I click open link in a new tab it works, then in the new tab I have a problem: If I right click on a link I can't see anymore the option "open in a new tab", all I can see is, open link, open link in a new window, download linked file and copy link, if I click on open link in a new window it opens a blank tab :s.
    Also right click options are always limited in a new tab and, if I right click on a picture in the new tab I can't see the same options that are normally listed when I fist open a window.
    How can I fix it, is someone else having this problem?
    .

    Hi and welcome......
    Try troubleshooting the Safari .plist file.
    Quit Safari if it's open (Command + Q)
    Open a Finder window. Select your Home Folder in the Sidebar on the left. It has a small house icon. Then open the Library folder then the Preferences folder.
    Move the com.apple.Safari.plist file from the Preferences folder to the Desktop.
    Relaunch Safari. Now launch Safari. If Tabs work as they should, move that .plist file to the Trash.
    Carolyn

  • Safari 5.0.1 update is out, fixed my problems

    Had regular crashes related either to javascriptcore.dll or safari.exe on my Win7 box. This update seems to have resolved thoose problems, not crashing on the sites that used to give me problems, at least not yet. Recommend this upgrade for all, includes ability to add nifty extensions.

    Good to hear.
    Both Safari and Apple Application Support were updated this time around. (AAS to 1.3.1 from 1.3.0.) I wonder which one helped with your crash? (Perhaps both ... JavaScriptCore.dll is AAS, Safari.exe is Safari.)
    The update is also worth a try with the issues discussed in the following document:
    [iTunes for Windows / Safari for Windows: Quits unexpectedly|http://support.apple.com/kb/TS3418]

  • Creating a new folder in a SharePoint library using C# Windows Application.

    I have tried to create a folder within a SharePoint document library. The coding is as follows.
    Text Box Name: txtNewFolderName
    Button Name : btnCreateNewFolder
    private void btnCreateNewFolder_Click(object sender, EventArgs e)
    //String parameters for site URL and site name
    const string siteUrl = "http://thekingsbury/";
    const string siteName = "/SiteDirectory/thekingsbury/";
    //Freeze UI
    Cursor = Cursors.WaitCursor;
    btnCreateNewFolder.Enabled = false;
    //Use SPSite constructor to assign site collection based on top-level URL
    SPSite siteCollection = new SPSite(siteUrl);
    //Assign target site (SPWeb instance) based on site name
    SPWeb site = siteCollection.AllWebs[siteName];
    //Create an instance of SPDocumentLibrary based on the named doc library list
    SPDocumentLibrary docLibrary = (SPDocumentLibrary)site.Lists["Test Library"];
    //Create instance of SPFolderCollection and add a named folder based on forms input,
    //then update library to reflect added folder
    SPFolderCollection myFolders = site.Folders;
    myFolders.Add("http://thekingsbury/Test%20Library/" + txtNewFolderName.Text + "/");
    docLibrary.Update();
    //UI clean-up
    Cursor = Cursors.Default;
    btnCreateNewFolder.Enabled = true;
    Site URL :
    http://thekingsbury/
    Site Name: thekingsbury
    Document Library  : Test Library
    My problem is when I click the button it gives an error as the following.
    The Web application at http://thekingsbury/ could not be found.
    Verify that you have typed the URL correctly.
    If the URL should be serving existing content, the system administrator may need to add a new request URL mapping to the intended application.
    The error shows at the following statement.
    "SPSite siteCollection = new SPSite(siteUrl);"
    I created both Windows & Web solutions and the result was the same.
    Note: I have add the reference to the SharePoint using the Microsoft.SharePoint.dll file. And used the "using Microsoft.SharePoint;" statement.
    Please can someone help me on this matter.It's a real paint to me.

    The complete solution using an InfoPath 2010 form is as the below.
    using Microsoft.Office.InfoPath;
    using System;
    using System.Xml;
    using System.Xml.XPath;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Client;
    using Microsoft.SharePoint.Linq;
    namespace Create_Folder_In_SharePoint_Library
    public partial class FormCode
    public void InternalStartup()
    ((ButtonEvent)EventManager.ControlEvents["btnCreateFolder"]).Clicked += new ClickedEventHandler(btnCreateFolder_Clicked);
    public void btnCreateFolder_Clicked(object sender, ClickedEventArgs e)
    SPSite mySite = new SPSite("Http://thekingsbury/");
    SPWeb myWeb = mySite.OpenWeb();
    //Code to retreive the new library.
    XPathNavigator xLibraryName = MainDataSource.CreateNavigator();
    String NewLibraryName = xLibraryName.SelectSingleNode("/my:myFields/my:LibraryName", NamespaceManager).Value;
    //Code to retreive the library description.
    XPathNavigator xLibraryDesc = MainDataSource.CreateNavigator();
    String NewLibDesc = xLibraryDesc.SelectSingleNode("/my:myFields/my:LibraryDescription", NamespaceManager).Value;
    //Code to retreive the new folder name.
    XPathNavigator xFolderName = MainDataSource.CreateNavigator();
    String NewFolderName = xFolderName.SelectSingleNode("/my:myFields/my:FolderName", NamespaceManager).Value;
    //Creating the new library.
    myWeb.Lists.Add(NewLibraryName, NewLibDesc, SPListTemplateType.DocumentLibrary);
    myWeb.Update();
    //Creating the new folder within the new library.
    SPDocumentLibrary newDocLibrary = (SPDocumentLibrary)myWeb.Lists[NewLibraryName];
    SPFolderCollection newFolders = myWeb.Folders;
    newFolders.Add("http://thekingsbury/" + NewLibraryName + "/" + NewFolderName + "/");
    newDocLibrary.Update();
    I think everyone can use this.
     When you are generating a folder always try to avoid reserved characters  : ; # $ % ^ a and suchlike.

  • How can I create a new recovery key if you automatically removed my trusted device after update do iOS 8?

    How can I create a new recovery key if you automatically removed my trusted device after update do iOS 8?

    Hey -
    I need to do the EXACT same thing, but have no idea how. Has anyone out there done this?
    My situation is a tad different..this is a new Mac (and I'm a brand new Mac user). Tons of querks occur under my original account (videos won't run, Safari won't support certain plug-ins). I spent 6 hours on the phone w/ 4 different Apple Reps and nobody could fix it. A rep finally looked at my MacBook Pro in person today. He created a new account just to see if that would work and under that new account, everything works perfectly fine (no querks, can view video). He tried switching a million settings in my original account to no avail.
    He said to create a new account (as he did) and move my files over to the new account and then go back to the original and delete it. How do you do this?! I can't figure it out! I've got a new account created, but of course it just has the default folders in it w/ the little red icons next to them! Thanks in advance!

  • Create a new document in Sharepoint Document Library/OneDrive on iPad/Safari

    Hi,
    My users are having trouble creating a new document from OneDrive in Safari on their iPads. The screen goes grey like its going to show the popup to select the new file type, but the popup never comes up. If they clear their cache, it works for exactly 1
    time and then goes back to this behavior. I'm not exactly sure if it worked before and/or when it stopped working. The iPad I have tested was at the latest 8.2 version of IOS and my Sharepoint farm is an On-Prem install of 2013 with SP1 mark2. My WAC farm
    is also 2013 SP1.
    Any suggestions?
    Thanks,
    Matt

    Hi,
    I understand you are suffering the issue when create a document in Sharepoint Document Library/OneDrive on  iPad.
    According to the official article
    https://technet.microsoft.com/en-us/library/fp161353.aspx?f=255&MSPPError=-2147217396, the version of your iOS should be in the supported list. I guess the issue may start after you installed an update, and if there is any other version (low versions)
    of iPads in your company, please use a different version device to test the issue.
    Meanwhile, to determine whether the issue is related to your SharePoint environment, I suggest you just to register an Office 365 trail account, and test the issue with SharePoint Online. In case the same issue happens with SharePoint Online, the issue should
    be related to your client device, and my next suggestion is to contact support of your device manufacture.
    Once you need any help from SharePoint end, please don’t hesitate to come back, and we are always happy to support you.
    Best Regards,
    Lisa Chen
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Create a new web application, how shall I update the file server.xml

    Hi,
    I will create a new web application, i.e named newApp. Then I create a file structure as follows:
    - <server-root>/newApp
    - <server-root>/newApp/WEB-INF
    - <server-root>/newApp/WEB-INF/classes
    Then I must tell the server that I have created a new web application. Then I must update my file server.xml, How shall I do this and where in the file shall I type in the new information?
    I use windows XP Pro, and Tomcat 4.1.27.
    My server.xml file looks like below:
    <!-- Example Server Configuration File -->
    <!-- Note that component elements are nested corresponding to their
    parent-child relationships with each other -->
    <!-- A "Server" is a singleton element that represents the entire JVM,
    which may contain one or more "Service" instances. The Server
    listens for a shutdown command on the indicated port.
    Note: A "Server" is not itself a "Container", so you may not
    define subcomponents such as "Valves" or "Loggers" at this level.
    -->
    <Server port="8005" shutdown="SHUTDOWN" debug="0">
    <!-- Comment these entries out to disable JMX MBeans support -->
    <!-- You may also configure custom components (e.g. Valves/Realms) by
    including your own mbean-descriptor file(s), and setting the
    "descriptors" attribute to point to a ';' seperated list of paths
    (in the ClassLoader sense) of files to add to the default list.
    e.g. descriptors="/com/myfirm/mypackage/mbean-descriptor.xml"
    -->
    <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener"
    debug="0"/>
    <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"
    debug="0"/>
    <!-- Global JNDI resources -->
    <GlobalNamingResources>
    <!-- Test entry for demonstration purposes -->
    <Environment name="simpleValue" type="java.lang.Integer" value="30"/>
    <!-- Editable user database that can also be used by
    UserDatabaseRealm to authenticate users -->
    <Resource name="UserDatabase" auth="Container"
    type="org.apache.catalina.UserDatabase"
    description="User database that can be updated and saved">
    </Resource>
    <ResourceParams name="UserDatabase">
    <parameter>
    <name>factory</name>
    <value>org.apache.catalina.users.MemoryUserDatabaseFactory</value>
    </parameter>
    <parameter>
    <name>pathname</name>
    <value>conf/tomcat-users.xml</value>
    </parameter>
    </ResourceParams>
    </GlobalNamingResources>
    <!-- A "Service" is a collection of one or more "Connectors" that share
    a single "Container" (and therefore the web applications visible
    within that Container). Normally, that Container is an "Engine",
    but this is not required.
    Note: A "Service" is not itself a "Container", so you may not
    define subcomponents such as "Valves" or "Loggers" at this level.
    -->
    <!-- Define the Tomcat Stand-Alone Service -->
    <Service name="Tomcat-Standalone">
    <!-- A "Connector" represents an endpoint by which requests are received
    and responses are returned. Each Connector passes requests on to the
    associated "Container" (normally an Engine) for processing.
    By default, a non-SSL HTTP/1.1 Connector is established on port 8080.
    You can also enable an SSL HTTP/1.1 Connector on port 8443 by
    following the instructions below and uncommenting the second Connector
    entry. SSL support requires the following steps (see the SSL Config
    HOWTO in the Tomcat 4.0 documentation bundle for more detailed
    instructions):
    * Download and install JSSE 1.0.2 or later, and put the JAR files
    into "$JAVA_HOME/jre/lib/ext".
    * Execute:
    %JAVA_HOME%\bin\keytool -genkey -alias tomcat -keyalg RSA (Windows)
    $JAVA_HOME/bin/keytool -genkey -alias tomcat -keyalg RSA (Unix)
    with a password value of "changeit" for both the certificate and
    the keystore itself.
    By default, DNS lookups are enabled when a web application calls
    request.getRemoteHost(). This can have an adverse impact on
    performance, so you can disable it by setting the
    "enableLookups" attribute to "false". When DNS lookups are disabled,
    request.getRemoteHost() will return the String version of the
    IP address of the remote client.
    -->
    <!-- Define a non-SSL Coyote HTTP/1.1 Connector on port 8080 -->
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8080" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="100" debug="0" connectionTimeout="20000"
    useURIValidationHack="false" disableUploadTimeout="true" />
    <!-- Note : To disable connection timeouts, set connectionTimeout value
    to -1 -->
    <!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -->
    <!--
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8443" minProcessors="5" maxProcessors="75"
    enableLookups="true"
    acceptCount="100" debug="0" scheme="https" secure="true"
    useURIValidationHack="false" disableUploadTimeout="true">
    <Factory className="org.apache.coyote.tomcat4.CoyoteServerSocketFactory"
    clientAuth="false" protocol="TLS" />
    </Connector>
    -->
    <!-- Define a Coyote/JK2 AJP 1.3 Connector on port 8009 -->
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8009" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="10" debug="0" connectionTimeout="0"
    useURIValidationHack="false"
    protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>
    <!-- Define an AJP 1.3 Connector on port 8009 -->
    <!--
    <Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
    port="8009" minProcessors="5" maxProcessors="75"
    acceptCount="10" debug="0"/>
    -->
    <!-- Define a Proxied HTTP/1.1 Connector on port 8082 -->
    <!-- See proxy documentation for more information about using this. -->
    <!--
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8082" minProcessors="5" maxProcessors="75"
    enableLookups="true"
    acceptCount="100" debug="0" connectionTimeout="20000"
    proxyPort="80" useURIValidationHack="false"
    disableUploadTimeout="true" />
    -->
    <!-- Define a non-SSL legacy HTTP/1.1 Test Connector on port 8083 -->
    <!--
    <Connector className="org.apache.catalina.connector.http.HttpConnector"
    port="8083" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="10" debug="0" />
    -->
    <!-- Define a non-SSL HTTP/1.0 Test Connector on port 8084 -->
    <!--
    <Connector className="org.apache.catalina.connector.http10.HttpConnector"
    port="8084" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="10" debug="0" />
    -->
    <!-- An Engine represents the entry point (within Catalina) that processes
    every request. The Engine implementation for Tomcat stand alone
    analyzes the HTTP headers included with the request, and passes them
    on to the appropriate Host (virtual host). -->
    <!-- You should set jvmRoute to support load-balancing via JK/JK2 ie :
    <Engine name="Standalone" defaultHost="localhost" debug="0" jmvRoute="jvm1">
    -->
    <!-- Define the top level container in our container hierarchy -->
    <Engine name="Standalone" defaultHost="localhost" debug="0">
    <!-- The request dumper valve dumps useful debugging information about
    the request headers and cookies that were received, and the response
    headers and cookies that were sent, for all requests received by
    this instance of Tomcat. If you care only about requests to a
    particular virtual host, or a particular application, nest this
    element inside the corresponding <Host> or <Context> entry instead.
    For a similar mechanism that is portable to all Servlet 2.3
    containers, check out the "RequestDumperFilter" Filter in the
    example application (the source for this filter may be found in
    "$CATALINA_HOME/webapps/examples/WEB-INF/classes/filters").
    Request dumping is disabled by default. Uncomment the following
    element to enable it. -->
    <!--
    <Valve className="org.apache.catalina.valves.RequestDumperValve"/>
    -->
    <!-- Global logger unless overridden at lower levels -->
    <Logger className="org.apache.catalina.logger.FileLogger"
    prefix="catalina_log." suffix=".txt"
    timestamp="true"/>
    <!-- Because this Realm is here, an instance will be shared globally -->
    <!-- This Realm uses the UserDatabase configured in the global JNDI
    resources under the key "UserDatabase". Any edits
    that are performed against this UserDatabase are immediately
    available for use by the Realm. -->
    <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
    debug="0" resourceName="UserDatabase"/>
    <!-- Comment out the old realm but leave here for now in case we
    need to go back quickly -->
    <!--
    <Realm className="org.apache.catalina.realm.MemoryRealm" />
    -->
    <!-- Replace the above Realm with one of the following to get a Realm
    stored in a database and accessed via JDBC -->
    <!--
    <Realm className="org.apache.catalina.realm.JDBCRealm" debug="99"
    driverName="org.gjt.mm.mysql.Driver"
    connectionURL="jdbc:mysql://localhost/authority"
    connectionName="test" connectionPassword="test"
    userTable="users" userNameCol="user_name" userCredCol="user_pass"
    userRoleTable="user_roles" roleNameCol="role_name" />
    -->
    <!--
    <Realm className="org.apache.catalina.realm.JDBCRealm" debug="99"
    driverName="oracle.jdbc.driver.OracleDriver"
    connectionURL="jdbc:oracle:thin:@ntserver:1521:ORCL"
    connectionName="scott" connectionPassword="tiger"
    userTable="users" userNameCol="user_name" userCredCol="user_pass"
    userRoleTable="user_roles" roleNameCol="role_name" />
    -->
    <!--
    <Realm className="org.apache.catalina.realm.JDBCRealm" debug="99"
    driverName="sun.jdbc.odbc.JdbcOdbcDriver"
    connectionURL="jdbc:odbc:CATALINA"
    userTable="users" userNameCol="user_name" userCredCol="user_pass"
    userRoleTable="user_roles" roleNameCol="role_name" />
    -->
    <!-- Define the default virtual host -->
    <Host name="localhost" debug="0" appBase="webapps"
    unpackWARs="true" autoDeploy="true">
    <!-- Normally, users must authenticate themselves to each web app
    individually. Uncomment the following entry if you would like
    a user to be authenticated the first time they encounter a
    resource protected by a security constraint, and then have that
    user identity maintained across all web applications contained
    in this virtual host. -->
    <!--
    <Valve className="org.apache.catalina.authenticator.SingleSignOn"
    debug="0"/>
    -->
    <!-- Access log processes all requests for this virtual host. By
    default, log files are created in the "logs" directory relative to
    $CATALINA_HOME. If you wish, you can specify a different
    directory with the "directory" attribute. Specify either a relative
    (to $CATALINA_HOME) or absolute path to the desired directory.
    -->
    <!--
    <Valve className="org.apache.catalina.valves.AccessLogValve"
    directory="logs" prefix="localhost_access_log." suffix=".txt"
    pattern="common" resolveHosts="false"/>
    -->
    <!-- Logger shared by all Contexts related to this virtual host. By
    default (when using FileLogger), log files are created in the "logs"
    directory relative to $CATALINA_HOME. If you wish, you can specify
    a different directory with the "directory" attribute. Specify either a
    relative (to $CATALINA_HOME) or absolute path to the desired
    directory.-->
    <Logger className="org.apache.catalina.logger.FileLogger"
    directory="logs" prefix="localhost_log." suffix=".txt"
    timestamp="true"/>
    <!-- Define properties for each web application. This is only needed
    if you want to set non-default properties, or have web application
    document roots in places other than the virtual host's appBase
    directory. -->
         <DefaultContext reloadable="true"/>
    <!-- Tomcat Root Context -->
    <Context path="" docBase="ROOT" debug="0"/>
    <!-- Tomcat Examples Context -->
    <Context path="/examples" docBase="examples" debug="0"
    reloadable="true" crossContext="true">
    <Logger className="org.apache.catalina.logger.FileLogger"
    prefix="localhost_examples_log." suffix=".txt"
    timestamp="true"/>
    <Ejb name="ejb/EmplRecord" type="Entity"
    home="com.wombat.empl.EmployeeRecordHome"
    remote="com.wombat.empl.EmployeeRecord"/>
    <!-- If you wanted the examples app to be able to edit the
    user database, you would uncomment the following entry.
    Of course, you would want to enable security on the
    application as well, so this is not done by default!
    The database object could be accessed like this:
    Context initCtx = new InitialContext();
    Context envCtx = (Context) initCtx.lookup("java:comp/env");
    UserDatabase database =
    (UserDatabase) envCtx.lookup("userDatabase");
    -->
    <!--
    <ResourceLink name="userDatabase" global="UserDatabase"
    type="org.apache.catalina.UserDatabase"/>
    -->
    <!-- PersistentManager: Uncomment the section below to test Persistent
    Sessions.
    saveOnRestart: If true, all active sessions will be saved
    to the Store when Catalina is shutdown, regardless of
    other settings. All Sessions found in the Store will be
    loaded on startup. Sessions past their expiration are
    ignored in both cases.
    maxActiveSessions: If 0 or greater, having too many active
    sessions will result in some being swapped out. minIdleSwap
    limits this. -1 or 0 means unlimited sessions are allowed.
    If it is not possible to swap sessions new sessions will
    be rejected.
    This avoids thrashing when the site is highly active.
    minIdleSwap: Sessions must be idle for at least this long
    (in seconds) before they will be swapped out due to
    activity.
    0 means sessions will almost always be swapped out after
    use - this will be noticeably slow for your users.
    maxIdleSwap: Sessions will be swapped out if idle for this
    long (in seconds). If minIdleSwap is higher, then it will
    override this. This isn't exact: it is checked periodically.
    -1 means sessions won't be swapped out for this reason,
    although they may be swapped out for maxActiveSessions.
    If set to >= 0, guarantees that all sessions found in the
    Store will be loaded on startup.
    maxIdleBackup: Sessions will be backed up (saved to the Store,
    but left in active memory) if idle for this long (in seconds),
    and all sessions found in the Store will be loaded on startup.
    If set to -1 sessions will not be backed up, 0 means they
    should be backed up shortly after being used.
    To clear sessions from the Store, set maxActiveSessions, maxIdleSwap,
    and minIdleBackup all to -1, saveOnRestart to false, then restart
    Catalina.
    -->
    <!--
    <Manager className="org.apache.catalina.session.PersistentManager"
    debug="0"
    saveOnRestart="true"
    maxActiveSessions="-1"
    minIdleSwap="-1"
    maxIdleSwap="-1"
    maxIdleBackup="-1">
    <Store className="org.apache.catalina.session.FileStore"/>
    </Manager>
    -->
    <Environment name="maxExemptions" type="java.lang.Integer"
    value="15"/>
    <Parameter name="context.param.name" value="context.param.value"
    override="false"/>
    <Resource name="jdbc/EmployeeAppDb" auth="SERVLET"
    type="javax.sql.DataSource"/>
    <ResourceParams name="jdbc/EmployeeAppDb">
    <parameter><name>username</name><value>sa</value></parameter>
    <parameter><name>password</name><value></value></parameter>
    <parameter><name>driverClassName</name>
    <value>org.hsql.jdbcDriver</value></parameter>
    <parameter><name>url</name>
    <value>jdbc:HypersonicSQL:database</value></parameter>
    </ResourceParams>
    <Resource name="mail/Session" auth="Container"
    type="javax.mail.Session"/>
    <ResourceParams name="mail/Session">
    <parameter>
    <name>mail.smtp.host</name>
    <value>localhost</value>
    </parameter>
    </ResourceParams>
    <ResourceLink name="linkToGlobalResource"
    global="simpleValue"
    type="java.lang.Integer"/>
    </Context>
    </Host>
    </Engine>
    </Service>
    </Server>

    To use servlets u have indeed to update your web.xml...Well I'm not sure this is relevant to your case anyway.
    You have to add a <servlet> element to this file.
    Something like this:
    <servlet>
    <servlet-name>blabla</servlet-name>
    <servlet-class>blablapackage.Blablaclass</servlet-class>
    <init-param>...</init-param>
    </servlet>
    Now this may not solve your problem. Make sure you refer to your servlets using their full qualified names.btw, just to be sure, what is your definition of "servlet"? (i mean: any java class or only javax.servlet.Servlet)

  • HT5858 I can't update apps on my iphone 5. theirs an old apple ID. That I don't have the pass word. I've created a new apple ID. but the old one keeps popping up. I have it on the Itunes on the phone but the old one keeps comming up and asking for a pass

    I can't update apps on my iphone 5. theirs an old apple ID. That I don't have the pass word. I've created a new apple ID. but the old one keeps popping up. I have it on the Itunes on the phone but the old one keeps comming up and asking for a pass word. 

    Apps are permanently tied to the Apple ID used to purchase them. You will have to delete the apps from the phone and re-purchase them using your Apple ID.

  • Cannot update published website without errors: requires deletion of site, then creating a new one.

    Hello all,
    This has been a long persisting issue since we purchased Muse in January 2013, but has since then led to a shutdown of my office's website and email in September. Multiple support technicians were eventually able to restore the website, as well as our email function, but the core of the problem lies in the fact that when I update my website, it becomes entirely scrambled, and the only solution provided to me right now is that I need to delete my site completely (through Adobe Business Catalyst) and then create a new one, while transferring over the same domain information. I have yet to receive guidance on how to resolve this issue properly:
    September 06 Email: detailing the series of events
    Good evening, Zak,
    I am reluctant to bring this to your attention because of the comprehensive nature of the following, but I have been told that my absolute last effort should be to contact you with what has been a persistent problem since the last time we had mediated this particular issue. Essentially, when publishing a website multiple times, sooner than later the format becomes scrambled when viewed online. I am being told I am the only customer known to have this issue, and that it needs to be investigated deeper.
    This is a blurb from our original conversation in March 2013:
    (The whole thread may be found at the following address: http://forums.adobe.com/message/5653912#5653912)
    9.Zak Williamson (Adobe), 
    Mar 12, 2013 4:03 PM   in reply to essbarr
    I'm also puzzled. This isn't a problem I've seen before for a site published to Business Catalyst.
    Please try publishing again, this time to a new temporary site (they're free). You can choose this option under More Options in the Publish dialog. I'm curious whether publishing to a new empty trial site works.
    If that doesn't work, please send me the .muse file at [email protected] along with a link to this thread. If the file is larger than 20Mb you can use a service like Adobe SendNow, SendThisFile, WeTransfer, Dropbox, etc.
    Thanks.
    10.essbarr, 
    Mar 13, 2013 6:49 AM   in reply to Zak Williamson (Adobe)
    Hi Zak,
    I published the website to a new temporary site, and it worked beautifully. Now I just have to fuss with the horizontal bar, and then I'll be super happy. Thank you for your help!
    Sincerely,
    Sarah
    Since this bit of advice, I have freely published to a new temporary site every time the website gets scrambled. I have had temporary websites titled:
    argponline01.businesscatalyst.com
    through
    argponline15.businesscatalyst.com
    along with a bunch more than I cannot recall.
    and Muse files titled:
    argp-uc.muse
    argponline.muse
    argponline_02.muse
    through
    argponline_05.muse
    argponine_3A.muse
    argponline_3B.muse
    and currently, my file name is
    argponline_4.muse (dropbox link)
    I am using Muse on a Mac Powerbook, OSX 10.8.4.
    I don't know how much of the above is relevant, but maybe it makes a difference to you.
    The timestamp on the following thread says September 5th, 2013 4.50AM, but I really sent it the evening of September 4th, 2013. No difference anyhow:
    http://forums.adobe.com/message/5653912#5653912
    What was going on in detail:
    1
    I made a few changes to my argponline_4.muse file on September 4th, 2013.
    The published website at that point was argponlined.businesscatalyst.com (D).
    The domain name was argponline.com .
    (D) was published probably about two months previous, maybe longer ago.
    When publishing (D) on September 4th, 2013, the website appeared scrambled.
    I tried to publish only modified files, as well as publish the entire site, as well as close programs, and restart the laptop.
    I decided to follow the advice given previously, and I published and launched argponlinef.businesscatalyst.com (F).
    2
    At this point I have two bookmarked websites for Adobe Business Catalyst Admin Consoles.
    For (D), the Admin Console address was argponlined.businesscatalyst.com/AdminConsole/#!/Admin/Websites.aspx 
    For (F), the Admin Console address was argponlinef.businesscatalyst.com/AdminConsole/#!/Admin/Websites.aspx
    I was able to sign into both.
    When signed into the Admin Console for (F), I tried to Add a New Domain, but was told that I only had a plan for one hosted website through Adobe Business Catalyst, and that I would need to purchase a plan that offered more hosted websites.
    I signed into the Admin Console for (D) and deleted the domain, but given the option to keep associated files just in case, I opted yes, to keep them.
    When signed into the Admin Console for (F), I tried to Add a New Domain, but received the following error message:
    Domain already exists. Please delete all records associated with this domain before re-adding it.
    There was nothing visible though the Admin Console for (D) to delete the associated records, so I deleted site (D) in its entirety.
    I continued to try to Add a New Domain for (F), but continued to receive the same error Domain already exists...
    3
    At this point (the morning of September 6th, 2013) we have the following set of parts:
    The published and launched site is argponlinef.businesscatalyst.com (F). 
    For (F), the Admin Console address is argponlinef.businesscatalyst.com/AdminConsole/#!/Admin/Websites.aspx
    The website is now completely down, and I have disrupted email service for the office.
    I chatted with Lokesh, who determined this was a technical issue, and I was forwarded to Anshul.
    Anshul's assessment is as follows:
    Anshul: I see the error, Sarah it seems there are some Domain traces left with the system , I tried to clear then out and I am getting errors as well. In this case , we might need to escalate the case to higher level to have deeper investigation related to this issue.
    Anshul: Sarah, the issue is the domain not the site. It seems like there are some traces related this domain in the backend. This issue is more of related to BC and not Muse. I will have this issue escalated and checked with the team and request them to run internal queries to clear the traces and then you should be able to add the domain.
    4
    Soon after I received the following message from Matt Baracz:
    Matt Baracz (Adobe Business Catalyst Support)
    Sep 06 10:50 (EEST)
    Thank you for contacting us.
    I have escalated this issue to our engineering team and have requested them to clear any references to the domain argponline.com from our database. Once cleared, you will then be able to re-add the domain successfully to your site.
    As soon as I receive a response from engineering confirming that this has been actioned, I will let you know directly via this support ticket.
    Regards,
    Matt.
    Around 3 or 4pm, I had not heard anything back, so I attempted to Add a New Domain through the Admin Console for (F). (Turns out Matt works in Australia, and was unable to alert me due to the time zone difference. Understandable!)
    This was done successfully, so the website began to work again, but the email was still down.
    5
    I began a chat again, this time with Srividya. I was transferred to technical support and began conversation with Sanjit. The length of our conversation was probably around 3 hours, and I am so grateful for the time he put in. What a great guy.
    He stated that he had gone through the case details and that Engineering had fixed the issue. We spent some time coordinating the Site Domain information through the Admin Console for (F). Ultimately, email is still not working (settings were probably updated around 5pm), but I understand sometimes it takes a while. Just wanted to note, the last time I updated the email settings it worked within a couple minutes. Varying lengths of time are expected, but I am still curious what effects those variations. Regardless.
    6
    The current situation is this:
    My boss is a bit steamed that our website was down for a day and a half, and that our email is down for a relatively indeterminate amount of time. It's bad for business, and ultimately, I am responsible for these disruptions. I am incredibly concerned that the next time I update our website there will be a slew of problems, which have the potential to knock down service for the website and email again. I am desperate for a surefire way to simply and fluidly update our Adobe Muse website to Adobe Business Catalyst without making the same mistakes again.
    I don't believe I did this the right way. I looked at FAQs, Community Forums, goDaddy Support and anything I could lay my eyes on to try to do things properly, but managed to make a few well-intentioned blunders. I continued to try undo the damage I've done in the past couple days, and with utter frustration, have not been able to fix them on my own. The people who have helped me thus far have done an amazing job, but ultimately, I am happier when I am not taking up their time, or panicking here.
    When I first launched the website a few months ago, there was a step-by-step process that took me through every single action with screenshots included when appropriate. It was exponentially helpful. I was so lost without it this time around, and I was wondering if I could access it again in the future if needed.
    The following is a blurb from my conversation with Sanjit tonight:
    Sanjit: You have purchased Muse subscription , correct ?
    Sanjit: or Creative cloud >
    Sarah Rushing: Yes, we purchased Muse for 1-year, as well as Business Catalyst for 1-year
    Sanjit: Perfect
    Sanjit: With Muse you get 1 free site , so once you create a site and then publish to BC. In admin console you launch the site, that makes your free count used. Now if you create another site, then system asks you to upgrade the site to a paid site plan. ut when you delete the previous site then the free count becomes free and can be used for any other site
    Sarah Rushing: Yes, that is what I did. Is this what I need to do each time? Because I am concerned that the email and website will be disrupted every time I need to make slight adjustments to the website?
    Sanjit: No, you dont need to do that everytime. If the site is scrambled everytime you publish then please report to us. Thats not the ideal way for solution.
    Sarah Rushing: Well Sanjit, I can tell you right now, that is how it has been functioning since we bought the program. I am not entirely certain, but I believe we bought Muse and BC in January.
    Sarah Rushing: I can absolutely guarantee you that the site will inevitably scramble. Am I the only customer you have heard of to have this issue?
    Sanjit: Yes, i have not seen any other reports for this issue
    Sanjit: Well this needs a deep investigation
    Zak, anything that you could offer for clarity of process, would be incredible. I don't know if you will have time to look at this before Monday, but I can tell you I will be available at a moment's notice to fix this issue and to learn anything about Muse and Business Catalyst that you have to offer. Thank you for your time, and I hope you have a wonderful weekend.
    Sincerely,
    Sarah Rushing
    I'm concerned that no one will really read this because it is so detailed and boring and comprehensive, but it is absolutely critical that I find a proper solution before the next update to the website. Thank you so so much to anyone who can possibly provide some insight into this issue.
    Sincerely,
    Sarah Rushing

    In case anyone is experiencing the same issue, I am trying this today.
    Sachin: Okay Sarah, so is it everytime you try to republish the website, it gets scrambled?
    Sarah: Yes, that is correct. And the solution thus far was to publish to an entirely new site, meaning delete the existing one on Business Catalyst and transfer the domain information.
    Sarah: The last time I did that I experience a slew of issues that resulted in no website and email for 4 or more days. My boss was very angry.
    Sachin: Sarah, can you publish your site as a new trial site once.
    Sachin: And provide me the URL.
    Sachin: Then republish on the same trial site and let me check the results.
    Sarah: If I updated the published site within the period of a day, it will be fine. It is when I update the next day or later than that, then the website appears scrambled. So I can create a trial site for you, but it will behave normally for now.
    Sachin: Sarah, while republishing the site, did you select "Only modified file" or "All files" while publishing?
    Sarah: I tried everything.
    Sarah: I made a few changes to my argponline_4.muse file on September 4th, 2013. The published website at that point was argponlined.businesscatalyst.com (D). The domain name was argponline.com . (D) was published probably about two months previous, maybe longer ago. When publishing (D) on September 4th, 2013, the website appeared scrambled. I tried to publish only modified files, as well as publish the entire site, as well as close programs, and restart the laptop. I decided to follow the advice given previously, and I published and launched argponlinef.businesscatalyst.com (F).
    Sachin: Okay. there is one  more thing I would like you to try.
    Sachin: Publish a site as a trial site.
    Sachin: Then wait till tomorrow.
    Sachin: After that login to the admin panel of the site.
    Sarah: Okay
    Sachin: There go to Site Manager>File manager
    Sachin: There will be a file there named Muse_manifest.xml
    Sachin: Delete that file and then republish the  site from Muse.
    Sarah: So in the Adobe Admin Console, underneath Site Manager, I see Web Forms and System E-mails. No file manager?
    Sachin: Please hover the muse on your name at top right corner and click  on My details.
    Sarah: Okay, yes.
    Sachin: Now scroll down  and check the option that says Enable online content editing (incompatible with Muse)
    Sachin: And  then click  on save.
    Sarah: What does this do, and why does it say it is incompatible with Muse?
    Sachin: It will help you see  other options in BC.
    Sarah: Okay, thank you.
    Sarah: I see the File Manager now
    Sachin: Okay.
    Sachin: Now select the file named Muse_manifest.xml
    Sachin: And use the delete button on the right side.
    Sachin: but do it tomorrow
    Sachin: With a trial site
    Sachin: Not with  the live site.
    Sarah: Okay, could you please explain to me what deleting that particular file is supposed to do? I am just very interested in how this works.
    Sachin: This file contains the information about your last upload.
    Sachin: Deleting it will make sure that "ALL" the files are uploaded again from Muse.
    Sarah: Okay, so:
    Sarah: I will publish a trial site.
    Sarah: Wait until tomorrow.
    Sarah: Publish again. If I have an issue, I can log-in to the admin console for this particular trial site and go to Site Manager --> File Manager, and delete muse_manifest.xml.
    Sachin: I will create a case for you and you can respond to the case.
    Sachin: Correct.
    Sarah: After that, I will try publishing again and see if it resolves the issue.
    Sarah: That would be great, thank you Sachin.
    Sachin: Thank you for contacting us. Have a Good Day!

  • Osx 10.7.4   safari 6.0  when I add a new bookmark to the "bookmarks menu" it is added somewhere in the middle instead of at the end of the list.  this just started a few days ago after an update.  Has anyone else noticed this?.

    osx 10.7.4   safari 6.0  When I add a new bookmark to the "bookmarks menu" it is added somewhere in the middle instead of at the end of the list.  This just started a few days ago after an update.  Has anyone else noticed this?.

    Just for those who are interested, this is what cleared the "bookmark menu"  trbl I had.
    Open System Preferences > iCloud
    Deselect the box next to Bookmarks, then reselect it.
    Quit and relaunch Safari. Try a bookmark again.

  • TS2446 If i create a new apple id account on my ipod, will i still have all my music, apps, books and other stuff on my ipod that i downloaded and bought with my old account or will i loose everything; will i be able to still do the updates to those apps?

    If I create a new apple id account on my ipod, will I still have all my music, apps, books and other stuff on my ipod that I downloaded and bought with my old account or will I loose everything; will I be able to still do the updates to those apps?
    I really need help!

    I don't think you understood what I wrote. You don't HAVE to pay for everything if you are happy with using the other account for updates, etc. But if you don't want to do that then you will have to buy new copies of everything for the new account. There's only one purchase item per account, but you can redownload an item in the account many times.
    The idea is this:
    One computer, multiple devices, one Apple ID.
    One user, multiple devices, one Apple ID.
    The basic idea is that each user has an Apple ID under which he/she can manage multiple devices on a single computer.
    Once you step outside of that model you create such problems as not being able to use or update apps purchase under one Apple ID when using a different Apple ID. Or not being able to easily sync one device on more than one computer.

  • Due to my account being hacked, I changed my Apple ID, I did not create a new account.  Now my software updates want the old ID but will not accept the password.  How can I update built in software.

    My orginal Apple ID was hacked, so I changed my Apple ID.  I did not create a new ID.  I have changed my ID on my profile on my MacBook Pro.  However now I have an update for factory installed software iPhoto and iMovie that is asking for the old ID.  How can I get the updates or force them to use the new ID that I am using for every other Apple product I own.

    You'll have to talk to Apple about AppleID and account issues, we are just other users here.

Maybe you are looking for

  • Report Region Layout help

    i am trying to create a page with 4 regions i need something link below region 1,2 and 3 should be on top ( 1 row 3 columns) Region 4 should be on 2nd row ( 4 will be below) I have attached word doc to below link. [http://www.megafileupload.com/en/fi

  • Error while opening the backup information fom Maxdb

    Hello All, I am getting the below error while opening the backup information from Maxdb. Backup history file /sapdb/data/wrk/<sid>/dbm.knl corrected in line <xxxx> ; 2012-02-21 07:30:25 can not be convert in to a signed 32 bit integer value The full

  • Help needed in SYNCBO Creation with MI 2.5 SP 09

    Hi I have got the MI 2.5 downloaded from the SAP download center.First sync is over Device ID is generated and i have deployed a application(<b>details below</b>) to the device.From the merep_mon transaction i could see the data in the  outbound cont

  • What is the general way to invoke a rpc/encoded webservice?

    Hi, I have some confusion in invoking webservices, ok, let me explain my question in detail: Usually, we access a web service througt its wsdl file, for a rpc/encoded style, for example, in Axis enviroment, I will need the java object for the complex

  • JDK 1.5 and TimeZone/sun.util.calendar.ZoneInfo issue

    Hi - I am working on a client/server application. The server code is being ported to JDK 1.5, but we need to support clients that are still running JDK 1.3. One of the issues we are facing is that the defaultTimeZone in JDK 1.5 has been changed to su