Can Not Edit JSP Page

Running SJSC2.1 on XP
I have a project which uses tables and DB
I can not edit the JSP page (the tab for the Page1.jsp page has an asterisk) after the name.
The IDE can not edit the page either, I add a table column for display and the design mode shows the added column but the JSP page does not show the new column, nor does the new column show when the app is deployed..
I can edit the file with wordpad outside of the IDE
What gives???
Thanks

Actually, I did say that I am able to edit the file and save it in WordPad..
Outside of the IDE..
Thanks anyway...
I have restarted the IDE, Rebooted the system (which reboots the app server) made sure there are no "hanging" "app module" entries in the domain.xml file...
Anybody know why the "*" is shown with the filename on the SJSC Design tab..
There was also a series of very small "red somethings" to the upper left of the file name in the Files> listing
The red somethings looked like:
| | | |
| o |
I have no idea what this red something is.. I thought if might say something but even with a magnifying glass it is unreadable, if in fact the somethings is text
Thanks
any help would be appreciated...

Similar Messages

  • The edit JSP page does not appear...

    Hi!
    I make a simple JSF application, I would like to show a DB table in a h:dataTable component and edit a given row after click, but the edit JSP page does not appear. I click the on link in the table, but the list is loaded again and not the edit page...:(
    (no exception in application server console)
    Please help me!
    my code:
    **************************************** listmydata.jsp***************************
                   <h:dataTable
                             value="#{myBean.myDataList}"
                             var="myDataItem"
                             binding="#{myBean.myDataTable}"
                   >
                        <h:column>
                             <f:facet name="header">
                                  <h:outputText value="Ajdi"/>
                             </f:facet>
                             <h:commandLink action="#{myBean.editMyData}">
                                  <h:outputText value="#{myDataItem.id}"/>
                             </h:commandLink>
                        </h:column>
    ********************************* MyBean.java *******************************
    package bean;
    import java.sql.Connection;
    import java.sql.SQLException;
    import java.util.ArrayList;
    import java.util.List;
    import javax.faces.component.html.HtmlDataTable;
    import javax.faces.context.FacesContext;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.sql.DataSource;
    import wrapper.MyData;
    public class MyBean {
         private List myDataList;
         private HtmlDataTable myDataTable;
         private MyData myDataItem;
         protected Connection Conn;
         // *********************** actions ***********************
         public String editMyData() {
              myDataItem = (MyData)getMyDataTable().getRowData();
              return "editmydata";
         public String saveMyData() {
              try {
                   updateDataInDB();
              catch (SQLException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              catch (NamingException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              return "listmydata";
         // *********************** setter ***********************
         public void setMyDataList(List myDataList) {
              this.myDataList = myDataList;
         public void setMyDataTable(HtmlDataTable myDataTable) {
              this.myDataTable = myDataTable;
         public void setMyDataItem(MyData myDataItem) {
              this.myDataItem = myDataItem;
         // *********************** getter ***********************
         public List getMyDataList() {
              if (myDataList == null || FacesContext.getCurrentInstance().getRenderResponse()) {
                   loadMyDataList();
              return myDataList;
         public HtmlDataTable getMyDataTable() {
              return myDataTable;
         public MyData getMyDataItem() {
              return myDataItem;
         // *********************** others ***********************
         public void loadMyDataList() {
              try {
                   getDataFromDB();
              catch (NamingException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              catch (SQLException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
         void getDataFromDB() throws NamingException, SQLException {
              myDataList = new ArrayList();
              java.sql.PreparedStatement PreStat = ownGetConnection().prepareStatement("SELECT id, name, value FROM BEA_JSF_SAMPLE");
              PreStat.execute();
              java.sql.ResultSet Rs = PreStat.getResultSet();
              while(Rs.next()) {
                   MyData OneRecord = new MyData();
                   OneRecord.setId(Rs.getLong(1));
                   OneRecord.setName(Rs.getString(2));
                   OneRecord.setValue(Rs.getString(3));
                   myDataList.add(OneRecord);
         void updateDataInDB() throws SQLException, NamingException {
              String sql = new String("UPDATE BEA_JSF_SAMPLE SET name=?,value=? WHERE id=?");
              java.sql.PreparedStatement PreStat = ownGetConnection().prepareStatement(sql);
              PreStat.setString(1,myDataItem.getName());
              PreStat.setString(2,myDataItem.getValue());
              PreStat.setLong(3,myDataItem.getId().longValue());
              PreStat.execute();
              ownGetConnection().commit();
         Connection ownGetConnection() throws SQLException, NamingException {
              if (Conn == null) {
                   InitialContext IniCtx = new InitialContext();
                   DataSource Ds = (DataSource)IniCtx.lookup("JDBCConnectToLocalhost_CRS");
                   Conn = Ds.getConnection();
              return Conn;
    ******************************* editmydata.jsp *****************************
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
    <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
    <html>
    <body>
    <f:view>
    <h:form>
         <h:panelGrid columns="2">
              <h:outputText value="Name"/>
              <h:inputText id="name" value="#{myBean.myDataItem.name}"/>
              <h:outputText value="Value"/>
              <h:inputText id="value" value="#{myBean.myDataItem.value}"/>
         </h:panelGrid>
         <h:commandButton action="#{myBean.saveMyData}" value="Save"/>
    </h:form>
    </f:view>
    </body>
    </html>

    I have put his lines in the faces-config.xml and now it works:
         <navigation-rule>
              <from-view-id>*</from-view-id>
              <navigation-case>
                   <from-outcome>editmydata</from-outcome>
                   <to-view-id>editmydata.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
         <navigation-rule>
              <from-view-id>*</from-view-id>
              <navigation-case>
                   <from-outcome>listmydata</from-outcome>
                   <to-view-id>listmydata.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
    I don't understand, that I define the next JSP page in the bean java file, which must be shown, but I must define this in the faces-config.xml as well.
    for example:
         public String editMyData() {
              myDataItem = (MyData)getMyDataTable().getRowData();
              return "editmydata";
    is it right or Do I make a mistake somewhere?

  • Can not edit parts of page

    Can not edit part of a web page. I can edit text and pictures in the center of the page. When I go
    to the info at top or bottom  of page cursor changes to a circle with a line thru it. Went to adminster website and did the unlock on the 2 files it showed. No help I am new to contribute and web flie editing.
    Thanks for your help.

    There's also the chance that they are include files. The newest version of Contribute can edit those on-page(assuming you have permissions to the folder they sit in) but I believe that older versions could not edit them on-page. With older version, you would need to open them directly if you know where they are.

  • Can not edit text in a PDF with Adobe acrobat professional version 8

      I have a PDF doccument that I can not edit any of the text on. all it lets me do is slide the pages around like images but dose not allow me to delete or add any text. It is not password protected at all.
    Any ideas on why this is and how to fix it so I can edit this 40 page pdf?
    Thanks,
    Tim

    Document > OCR Text Recognition > Recognize Text Using OCR
    In the Recognize Text dialog, click the "Edit" button.
    In the Recognize Text - Settings dialog the middle entry has a drop-down menu.
    From this menu you can select one of three PDF Output Styles.
    --| Searchable Image
    --| Searchable Image (Exact)
    --| Formatted Text & Graphics
    These output styles are discussed in Acrobat Help.
    Be well...

  • How can WLS use JSP pages in a Web Application witth just a JRE [Web Application, WAR, JSP, weblogic.jsp.pageCheckSeconds and JRE]

              How can WLS use JSP pages in a Web Application (either a .war file or a war directory structure) without a java compiler?
              I suspect either the JSP specification is flawed (i.e. it doesn't take account of servers using just a JRE), or BEA's implementation is broken.
              Production servers do not have a JDK installed. They only have a JRE. Therfore a java compiler is not present on the machine that the Web Application is deployed onto.
              On the development machine, when the server is requested to load the JSP it creates a tmpwar directory within the Web Application directory structure. This is then included in the resultant .war file thus:
              D:\war>jar -tf gmi.war
              META-INF/
              META-INF/MANIFEST.MF
              gmiService.jsp
              WEB-INF/
              WEB-INF/classes/
              WEB-INF/classes/com/
              WEB-INF/classes/com/bt/
              WEB-INF/classes/com/bt/gmi/
              WEB-INF/classes/com/bt/gmi/gmiService.class
              WEB-INF/getList.xsl
              WEB-INF/getListByConnection.xsl
              WEB-INF/getListByDistrict.xsl
              WEB-INF/getListByDistrictConnection.xsl
              WEB-INF/lib/
              WEB-INF/source/
              WEB-INF/source/build.bat
              WEB-INF/source/gmiService.java
              WEB-INF/web.xml
              WEB-INF/weblogic.xml
              tmpwar/
              tmpwar/jsp_servlet/
              tmpwar/jsp_servlet/_gmiservice.class
              tmpwar/jsp_servlet/_gmiservice.java
              When deployed on the production server with the web.xml file set to use the following values (note XML stripped):
              weblogic.jsp.pageCheckSeconds
              -1
              weblogic.jsp.precompile
              false
              weblogic.jsp.compileCommand
              javac
              weblogic.jsp.verbose
              true
              weblogic.jsp.packagePrefix
              jsp_servlet
              weblogic.jsp.keepgenerated
              false
              And in the weblogic.properties file:
              weblogic.httpd.webApp.gmi=war/gmi
              I've also tried with the .war file, but that insists on creating another tmpwar directory outside of the .war file.
              Then, although I have set pageCheckSeconds to -1 (don't check and don't recompile) ter production server still attempts to recompile the JSP's:
              Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: init
              Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param verbose initialized to: true
              Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param packagePrefix initialized to: jsp_servlet
              Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param compileCommand initialized to: javac
              Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param srcCompiler initialized to weblogic.jspc
              Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param superclass initialized to null
              Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param workingDir initialized to: /opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war
              Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param pageCheckSeconds initialized to: -1
              Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: initialization complete
              Mon Sep 25 11:40:12 BST 2000:<I> <WebAppServletContext-gmi> Generated java file: /opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war/jsp_servlet/gmiService.java
              Mon Sep 25 11:40:14 BST 2000:<E> <WebAppServletContext-gmi> Compilation of /opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war/jsp_servlet/gmiService.java failed: Exception in thread "main" java.lang.NoClassDefFoundError: sun/tools/javac/Main
              java.io.IOException: Compiler failed executable.exec([Ljava.lang.String;[javac, -classpath, /opt/Solaris_JRE_1.2.1_04/lib/rt.jar:/opt/Solaris_JRE_1.2.1_04/lib/i18n.jar:/opt/Solaris_JRE_1.2.1_04/classes:/var/wls/5.1/weblogic/lib/weblogic510sp4boot.jar:/var/wls/5.1/weblogic/classes/boot:/var/wls/5.1/weblogic/eval/cloudscape/lib/cloudscape.jar:/var/wls/5.1/weblogic/lib/wleorb.jar:/var/wls/5.1/weblogic/lib/wlepool.jar:/var/wls/5.1/weblogic/lib/weblogic510sp4.jar:/var/wls/5.1/weblogic/license:/var/wls/5.1/weblogic/classes:/var/wls/5.1/weblogic/lib/weblogicaux.jar:/opt/wls-servers/gmiServer/weblogic/gmiServer/serverclasses:/opt/wls-servers/gmiServer/weblogic/lotusxsl.jar:/opt/wls-servers/gmiServer/weblogic/xerces.jar:/opt/wls-servers/gmiServer/weblogic/logging.jar::/opt/wls-servers/gmiServer/weblogic/war/gmi/WEB-INF/classes:/opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war, -d, /opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war, /opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war/jsp_servlet/gmiService.java])
              at java.lang.Throwable.fillInStackTrace(Native Method)
              at java.lang.Throwable.fillInStackTrace(Compiled Code)
              at java.lang.Throwable.<init>(Compiled Code)
              at java.lang.Exception.<init>(Compiled Code)
              at java.io.IOException.<init>(Compiled Code)
              at weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(Compiled Code)
              at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:200)
              at weblogic.servlet.jsp.JspStub.compilePage(Compiled Code)
              at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:173)
              at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:187)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:118)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:142)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:744)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:692)
              at weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContextManager.java:251)
              at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:363)
              at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:263)
              at weblogic.kernel.ExecuteThread.run(Compiled Code)
              

    The default Java compiler from sun lives in the tools.jar that comes with
              the JDK. Just add that to your set of JARs which are deployed in production
              and you should be fine. No need to install the full JDK - just make the
              tools.jar available to WebLogic.
              Regards
              James
              James Strachan
              =============
              email: [email protected]
              web: http://www.metastuff.com
              "Martin Webb" <[email protected]> wrote in message
              news:[email protected]...
              >
              > How can WLS use JSP pages in a Web Application (either a .war file or a
              war directory structure) without a java compiler?
              >
              > I suspect either the JSP specification is flawed (i.e. it doesn't take
              account of servers using just a JRE), or BEA's implementation is broken.
              >
              > Production servers do not have a JDK installed. They only have a JRE.
              Therfore a java compiler is not present on the machine that the Web
              Application is deployed onto.
              >
              > On the development machine, when the server is requested to load the JSP
              it creates a tmpwar directory within the Web Application directory
              structure. This is then included in the resultant .war file thus:
              >
              > D:\war>jar -tf gmi.war
              > META-INF/
              > META-INF/MANIFEST.MF
              > gmiService.jsp
              > WEB-INF/
              > WEB-INF/classes/
              > WEB-INF/classes/com/
              > WEB-INF/classes/com/bt/
              > WEB-INF/classes/com/bt/gmi/
              > WEB-INF/classes/com/bt/gmi/gmiService.class
              > WEB-INF/getList.xsl
              > WEB-INF/getListByConnection.xsl
              > WEB-INF/getListByDistrict.xsl
              > WEB-INF/getListByDistrictConnection.xsl
              > WEB-INF/lib/
              > WEB-INF/source/
              > WEB-INF/source/build.bat
              > WEB-INF/source/gmiService.java
              > WEB-INF/web.xml
              > WEB-INF/weblogic.xml
              > tmpwar/
              > tmpwar/jsp_servlet/
              > tmpwar/jsp_servlet/_gmiservice.class
              > tmpwar/jsp_servlet/_gmiservice.java
              >
              > When deployed on the production server with the web.xml file set to use
              the following values (note XML stripped):
              >
              > weblogic.jsp.pageCheckSeconds
              > -1
              >
              > weblogic.jsp.precompile
              > false
              >
              > weblogic.jsp.compileCommand
              > javac
              >
              > weblogic.jsp.verbose
              > true
              >
              > weblogic.jsp.packagePrefix
              > jsp_servlet
              >
              > weblogic.jsp.keepgenerated
              > false
              >
              >
              > And in the weblogic.properties file:
              >
              > weblogic.httpd.webApp.gmi=war/gmi
              >
              > I've also tried with the .war file, but that insists on creating another
              tmpwar directory outside of the .war file.
              >
              >
              > Then, although I have set pageCheckSeconds to -1 (don't check and don't
              recompile) ter production server still attempts to recompile the JSP's:
              >
              >
              > Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: init
              > Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param
              verbose initialized to: true
              > Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param
              packagePrefix initialized to: jsp_servlet
              > Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param
              compileCommand initialized to: javac
              > Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param
              srcCompiler initialized to weblogic.jspc
              > Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param
              superclass initialized to null
              > Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param
              workingDir initialized to:
              /opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war
              > Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param
              pageCheckSeconds initialized to: -1
              > Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp:
              initialization complete
              > Mon Sep 25 11:40:12 BST 2000:<I> <WebAppServletContext-gmi> Generated java
              file:
              /opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war/jsp_servlet/gmiService.
              java
              > Mon Sep 25 11:40:14 BST 2000:<E> <WebAppServletContext-gmi> Compilation of
              /opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war/jsp_servlet/gmiService.
              java failed: Exception in thread "main" java.lang.NoClassDefFoundError:
              sun/tools/javac/Main
              >
              > java.io.IOException: Compiler failed
              executable.exec([Ljava.lang.String;[javac, -classpath,
              /opt/Solaris_JRE_1.2.1_04/lib/rt.jar:/opt/Solaris_JRE_1.2.1_04/lib/i18n.jar:
              /opt/Solaris_JRE_1.2.1_04/classes:/var/wls/5.1/weblogic/lib/weblogic510sp4bo
              ot.jar:/var/wls/5.1/weblogic/classes/boot:/var/wls/5.1/weblogic/eval/cloudsc
              ape/lib/cloudscape.jar:/var/wls/5.1/weblogic/lib/wleorb.jar:/var/wls/5.1/web
              logic/lib/wlepool.jar:/var/wls/5.1/weblogic/lib/weblogic510sp4.jar:/var/wls/
              5.1/weblogic/license:/var/wls/5.1/weblogic/classes:/var/wls/5.1/weblogic/lib
              /weblogicaux.jar:/opt/wls-servers/gmiServer/weblogic/gmiServer/serverclasses
              :/opt/wls-servers/gmiServer/weblogic/lotusxsl.jar:/opt/wls-servers/gmiServer
              /weblogic/xerces.jar:/opt/wls-servers/gmiServer/weblogic/logging.jar::/opt/w
              ls-servers/gmiServer/weblogic/war/gmi/WEB-INF/classes:/opt/wls-servers/gmiSe
              rver/weblogic/war/gmi/_tmp_war, -d,
              /opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war,
              /opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war/jsp_servlet/gmiService.
              java])
              > at java.lang.Throwable.fillInStackTrace(Native Method)
              > at java.lang.Throwable.fillInStackTrace(Compiled Code)
              > at java.lang.Throwable.<init>(Compiled Code)
              > at java.lang.Exception.<init>(Compiled Code)
              > at java.io.IOException.<init>(Compiled Code)
              > at
              weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(Compiled Code)
              > at
              weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:200)
              > at weblogic.servlet.jsp.JspStub.compilePage(Compiled Code)
              > at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:173)
              > at
              weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:18
              7)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :118)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :142)
              > at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:744)
              > at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:692)
              > at
              weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
              Manager.java:251)
              > at
              weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:363)
              > at
              weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:263)
              > at weblogic.kernel.ExecuteThread.run(Compiled Code)
              >
              >
              >
              

  • Can't edit home page

    When I select "edit page" on the home page I get an error message (in both CS3 and CS5; I just upgraded because I thought the problem might lie with an incompatibilty with the old version). I have no problems with any of the other pages on this web site. There's no open draft of the page at the time. Help!?!

    Thanks for trying, but that doesn't work.
    I'm the administrator, owner, and sole user. When I click on "administer websites - manage sent drafts" there are no entries in the manage sent drafts box. And I can't "send for edit" or "send for review" because I have to get a successful response when I click on "edit this page", and that's where the trouble originates.
    I've used "save as" to save the page with another name and managed to edit it, but then I can't save it under the "proper" name (which would be index.htm) because I get an error message saying that file name already exists, and I'm not given an option to replace/rewrite the existing file. So I've been unable to publish the new page to the server so that it can see it with my browser. I still get the old version with the browser.
    I can't even delete the page (in order to replace it with the new one) because I get that same message error "You can't edit this page because  is editing it".
    I'm now trying to manage page expiry to see if I can get rid of the original page that way...
    Any other suggestions will be most welcome!

  • Can we place jsp pages on JAVA_TOP and access them from controllers

    can we place jsp pages on JAVA_TOP and access them from controllers from the same path?
    Soujanya

    Hi All,
    Can any one please resond to this thread for atleas discussion.We have folder on HTML top with all jsps.We want to move the folder from HTML top to some other TOP.We are planning to move them to JAVA_TOP.
    But we could not refer or call the file from JAVA_TOP.
    Any solution.
    Thanks
    Soujanya

  • Can not edit locally built providers!!

    hi,
    i can not edit providers when i click edit button,
    it opens create new portlet page.
    but it is running if i click run button portlet is running.
    how can i pass this?
    urgent
    thanks.

    this does not make sense!
    1. when you are on the Navigator page, you should see the Providers tab on the top right side highlighted.
    2. if you say you have selected the provider, and if it is a db-provider, then you should see on the top-left side of the page, this message.
    Here are the portlets and associated actions available to you in this provider.
    Create New... [Form], [Report], [Chart], [Calendar], [Dynamic Page], [XML Component], [Hierarchy], [Menu], URL, [Frame Driver], [Link], [List of Values], [Data Component]
    please confirm;
    - do you see it as above?
    - you still missed my question about the type of provider. but i suppose, you are using db-provider; right?
    - what type of portlet it asks you to create?
    if you do not see the Navigator page as above, you will not be on this page.

  • HT4922 Downloaded 5.1.1. to my iphone. Now, Safari will not connect to my server.  Can not download web pages and many of my apps. Running very slow sluggish! Is there a fix? Sound like other users are experiencing same problems.  Anyone have a solution?

    Downloaded 5.1.1 to my iphone. Now, Safari will not connect to my server. Can not download web pages and many of my apps. Email seems to be ok. iphone running slow and sluggish.  I have read several other users have experienced the same problem. Any solutions?

    Basic troubleshooting steps oultlined in the User Guide are restart, reset, restore from backup, restore as new device.
    You need to go through all steps in succession until your problem is solved.  If going through ALL these steps fails to resolve your issue, then you'll need to bring your phone into Apple for evaluation and possible replacement.

  • Why is my iPad suddenly not opening the Yahoo home page? I get a message saying Safari can not open the page due to too many redirects. This started yesterday. I shut my iPad down and still no luck.

    Why is my iPad suddenly not opening the Yahoo home page? I get a message saying Safari can not open the page due to too many redirects. This started yesterday, and I have already tried shutting off my iPad.

     

  • Firefox sometime can find specific server then at other times it can not. Also when on a web site and you attempt to go to anotherpage on the site, it lock up or can not find the page.

    Firefox cannot find a server that it has gone to easily in the past. Also it will lock up or can not find a page with in a web site ie like with FoxNews and you want to read and article. Firefox cannot find it. Sometimes I can not even log on to FireFox.

    Hi Corel
    Thank you for your reply
    However I need the lower case version for some sites and the upper case version for the site in question? To make matters worse this site does not allow you to change your log on name unless it is in the form of an e-mail address
    So what I need is Kostas for this site and kostas saved for other sites and allow me to choose which one I want to use
    How do I do this please
    I have no bother with this on Win Internet Explorer but I like Firefox
    Mind it may be as simple as deleting The appropriate entry and resetting with Kostas instead of kostas?
    But I would appreciate knowing the correct solution from an expert

  • Can not edit photos - cannot see photos after import from camera

    Hello all - Im having a very frustrating time getting Iphoto to work.
    First is that I can not edit photos
    double clicking photo - does not launch edit mode
    select photo and click edit pencil - does not launch edit mode
    Sometimes, however, edit mode is launched and thumbnails of photos can be seen along the top but not in the edit window.
    Clicking any effects or adjustment buttons results in a program crash.
    Originally installed with two users on the system - both admin.
    Problem occurs with both admin users
    Uninstalled all the I apps and deleted one admin user. Now only one user on the system (admin)
    Reinstalled I Life 8 and updated with the 8.2 updater
    Import 6 photos form camera in to new library. Still no joy.
    Is there some permissions problem going on?
    I have tried to rebuild the library several times.
    Also - after importing photos from camera. No photos appears within the library window until I click on the screen. THEN a photo appears.
    Sincerely
    Daniel
    Software hardware information
    Iphoto 7.1.3 (364)
    I life update 8.2
    PowerPC G4 dual 800 - 1.25 GB SDRAM
    NVIDIA GeForce2 MX

    Hello
    Here is the crash log.
    Many Thanks
    Daniel
    Host Name: masters-power-mac-g4
    Date/Time: 2008-05-10 19:29:46.227 +0100
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [63]
    Version: 7.1.3 (7.1.3)
    Build Version: 10
    Project Name: iPhotoProject
    Source Version: 3640000
    PID: 612
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 com.apple.iPhoto 0x003efa0c 0x1000 + 4123148
    1 com.apple.AppKit 0x937d65e8 -[NSView _drawRect:clip:] + 2128
    2 com.apple.AppKit 0x937d5ba8 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 404
    3 com.apple.AppKit 0x937d88f0 _recursiveDisplayInRect2 + 84
    4 com.apple.CoreFoundation 0x907ee1e4 CFArrayApplyFunction + 416
    5 com.apple.AppKit 0x937d5cbc -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 680
    6 com.apple.AppKit 0x937d88f0 _recursiveDisplayInRect2 + 84
    7 com.apple.CoreFoundation 0x907ee1e4 CFArrayApplyFunction + 416
    8 com.apple.AppKit 0x937d5cbc -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 680
    9 com.apple.AppKit 0x937d5170 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 196
    10 com.apple.AppKit 0x937d4fb0 -[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 280
    11 com.apple.AppKit 0x937cede4 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 384
    12 com.apple.AppKit 0x937c40d8 -[NSView displayIfNeeded] + 248
    13 com.apple.AppKit 0x937c3f48 -[NSWindow displayIfNeeded] + 180
    14 com.apple.iPhoto 0x00342540 0x1000 + 3413312
    15 com.apple.AppKit 0x937c3df4 _handleWindowNeedsDisplay + 200
    16 com.apple.CoreFoundation 0x907de55c __CFRunLoopDoObservers + 352
    17 com.apple.CoreFoundation 0x907de7fc __CFRunLoopRun + 420
    18 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    19 com.apple.HIToolbox 0x932abb20 RunCurrentEventLoopInMode + 264
    20 com.apple.HIToolbox 0x932ab12c ReceiveNextEventCommon + 244
    21 com.apple.HIToolbox 0x932ab020 BlockUntilNextEventMatchingListInMode + 96
    22 com.apple.AppKit 0x93790874 _DPSNextEvent + 384
    23 com.apple.AppKit 0x93790538 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    24 com.apple.AppKit 0x9378ca7c -[NSApplication run] + 472
    25 com.apple.AppKit 0x9387d598 NSApplicationMain + 452
    26 com.apple.iPhoto 0x000038a0 0x1000 + 10400
    27 com.apple.iPhoto 0x000035a4 0x1000 + 9636
    Thread 1:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de998 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c1c7bc +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de998 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c1b67c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9001f88c select + 12
    1 com.apple.CoreFoundation 0x907f122c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.AppKit 0x937bebe8 -[NSViewHierarchyLock lockForReadingWithExceptionHandler:] + 260
    3 com.apple.AppKit 0x9382d66c -[NSUIHeartBeat _heartBeatThread:] + 792
    4 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de998 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c030e4 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92c47e44 -[NSRunLoop runUntilDate:] + 80
    6 com.apple.iLifeMediaBrowser 0x010454c8 -[ILMediaBrowserPathWatcher watcherThread:] + 628
    7 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de998 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c030e4 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92c47e44 -[NSRunLoop runUntilDate:] + 80
    6 com.apple.iLifeMediaBrowser 0x01047690 -[ILMediaBrowserPathWatcher(SpotlightSupport) spotlightWatcherThread:] + 652
    7 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf93f4 TSWaitOnSemaphoreCommon + 176
    3 ...ickTimeComponents.component 0x9934fa84 ReadSchedulerThreadEntryPoint + 5316
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf93f4 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90c03e9c AIOFileThread(void*) + 520
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 9:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.ColorSync 0x915a1060 pthreadSemaphoreWait(t_pthreadSemaphore*) + 56
    3 com.apple.ColorSync 0x915a02fc CMMConvTask(void*) + 40
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000003efa0c srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x24042244 xer: 0x0000000000000004 lr: 0x00000000003ef9e0 ctr: 0x0000000092bf3734
    r0: 0x00000000021b1238 r1: 0x00000000bfffd870 r2: 0x0000000000000000 r3: 0x00000000a2bf159c
    r4: 0x0000000090a908b4 r5: 0x000000000d1a69b0 r6: 0x00000000006aa0c0 r7: 0x00000000a07bb960
    r8: 0x0000000000000004 r9: 0x0000000000000000 r10: 0x0000000090a3f628 r11: 0x000000000000003c
    r12: 0x0000000092bf3734 r13: 0x0000000000000001 r14: 0x00000000bfffe6b0 r15: 0x00000000006d0000
    r16: 0x00000000006e0000 r17: 0x00000000bffff270 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x00000000006d0000 r21: 0x00000000006d0000 r22: 0x00000000006e0000 r23: 0x0000000000000000
    r24: 0x00000000006d0000 r25: 0x0000000090a908b4 r26: 0x00000000006d279c r27: 0x00000000006dc168
    r28: 0x00000000006e0000 r29: 0x00000000006e0000 r30: 0x000000000d1b0b90 r31: 0x00000000021a4550
    Binary Images Description:
    0x1000 - 0x687fff com.apple.iPhoto 7.1.3 /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0x76b000 - 0x775fff com.apple.UpgradeChecker 1.0 /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x77d000 - 0x7cbfff com.apple.ImageIO.framework 2.0.1 /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/Image IO.framework/Versions/A/ImageIO
    0x7e9000 - 0x7edfff libGIF.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7f2000 - 0x7f4fff libRadiance.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x1008000 - 0x1070fff com.apple.iLifeMediaBrowser 1.0.5 (205.0.2) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x10ad000 - 0x10cdfff libJPEG.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x10d4000 - 0x10effff libPng.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x1205000 - 0x12a6fff com.apple.DotMacKit 47 (3.0.2L) /Applications/iPhoto.app/Contents/Frameworks/DotMacKit.framework/Versions/A/Dot MacKit
    0x1314000 - 0x136efff libJP2.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x1384000 - 0x13c5fff libTIFF.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x13cf000 - 0x144bfff com.apple.imageKit 1.0 /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/Image Kit.framework/Versions/A/ImageKit
    0x149b000 - 0x160dfff com.apple.QuartzComposer 2.0 (106) /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/Quart zComposer.framework/Versions/A/QuartzComposer
    0x584b000 - 0x584dfff com.apple.framework.iPhoto.CubeTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/CubeTransition.IAPlugin/Contents/MacO S/CubeTransition
    0x5853000 - 0x5854fff com.apple.framework.iPhoto.DissolveTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/DissolveTransition.IAPlugin/Contents/ MacOS/DissolveTransition
    0x58c0000 - 0x58ddfff com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x5b19000 - 0x5be9fff com.apple.RawCamera.bundle 2.0.1 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x675e000 - 0x6768fff com.apple.BookService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x6771000 - 0x6779fff com.apple.NetServices.BDControl 1.0.5 /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x6781000 - 0x6784fff com.apple.NetServices.BDRuleEngine 1.0.2 /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x678a000 - 0x6793fff com.apple.CalendarsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x679c000 - 0x67a5fff com.apple.CardsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x67ae000 - 0x67b3fff com.apple.NetSlidesService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/NetSlidesService.NetServi ce/Contents/MacOS/NetSlidesService
    0x67ba000 - 0x67c4fff com.apple.PrintsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x69f8000 - 0x6a6ffff com.apple.NetServices.NetServices 6.0 /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x6cc0000 - 0x6d61fff com.apple.QuickTimeImporters.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x6ebd000 - 0x6ebffff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x6f16000 - 0x6fbffff com.apple.iTunesAccess 7.6.2 /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x7190000 - 0x7192fff com.apple.framework.iPhoto.BlackAndWhiteEffect 7.0 /Applications/iPhoto.app/Contents/PlugIns/BlackAndWhiteEffect.IAPlugin/Contents /MacOS/BlackAndWhiteEffect
    0x78a2000 - 0x78a5fff com.apple.framework.iPhoto.DropletTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/DropletTransition.IAPlugin/Contents/M acOS/DropletTransition
    0x78e4000 - 0x78e5fff com.apple.framework.iPhoto.FadeThroughBlackTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/FadeThroughBlackTransition.IAPlugin/C ontents/MacOS/FadeThroughBlackTransition
    0x7906000 - 0x7907fff com.apple.framework.iPhoto.FlipTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/FlipTransition.IAPlugin/Contents/MacO S/FlipTransition
    0x7fec000 - 0x7feefff com.apple.framework.iPhoto.TwirlTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/TwirlTransition.IAPlugin/Contents/Mac OS/TwirlTransition
    0x8123000 - 0x813cfff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x8142000 - 0x815dfff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x81f8000 - 0x81fafff com.apple.framework.iPhoto.MosaicFlipTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/MosaicFlipTransition.IAPlugin/Content s/MacOS/MosaicFlipTransition
    0x8305000 - 0x8377fff com.apple.GeForce2MXGLDriver 1.4.18 (4.1.8) /System/Library/Extensions/GeForce2MXGLDriver.bundle/Contents/MacOS/GeForce2MXG LDriver
    0x83ac000 - 0x83adfff com.apple.framework.iPhoto.WipeTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/WipeTransition.IAPlugin/Contents/MacO S/WipeTransition
    0x83f4000 - 0x83f6fff com.apple.framework.iPhoto.MosaicFlipTransitionSmall 7.0 /Applications/iPhoto.app/Contents/PlugIns/MosaicFlipTransitionSmall.IAPlugin/Co ntents/MacOS/MosaicFlipTransitionSmall
    0x853a000 - 0x853dfff com.apple.framework.iPhoto.PageFlipTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/PageFlipTransition.IAPlugin/Contents/ MacOS/PageFlipTransition
    0x8553000 - 0x8554fff com.apple.framework.iPhoto.PushTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/PushTransition.IAPlugin/Contents/MacO S/PushTransition
    0x8569000 - 0x856afff com.apple.framework.iPhoto.RevealTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/RevealTransition.IAPlugin/Contents/Ma cOS/RevealTransition
    0x8586000 - 0x8588fff com.apple.framework.iPhoto.SepiaEffect 7.0 /Applications/iPhoto.app/Contents/PlugIns/SepiaEffect.IAPlugin/Contents/MacOS/S epiaEffect
    0x858d000 - 0x85ccfff com.apple.QuickTimeFireWireDV.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x8905000 - 0x897efff com.apple.applepixletvideo 1.2.5 (1.2d5) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0xc989000 - 0xca98fff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xcb05000 - 0xccb9fff net.telestream.wmv.advanced 2.2.0.49 /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0xd405000 - 0xd63efff net.telestream.wmv.import 2.2.0.49 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x8e9c9000 - 0x8ea99fff com.apple.QuickTimeMPEG4.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x8ed6f000 - 0x8ed73fff com.apple.QuickTimeH264.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x8ee6e000 - 0x8ef2afff AppleAppSupport /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x8f4f0000 - 0x8f4f5fff com.apple.CoreMediaAuthoringPrivate 1.3 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x8f760000 - 0x8f7a1fff com.apple.CoreMediaIOServicesPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x8f840000 - 0x8f86efff com.apple.CoreMediaPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.10 (368.33) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5cfff IOKit /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b72000 - 0x90b84fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8b000 - 0x90e62fff com.apple.CoreServices.CarbonCore 681.17 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f92000 - 0x90fd4fff com.apple.CFNetwork 129.22 (129.23) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe9000 - 0x91001fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91011000 - 0x91092fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d8000 - 0x91101fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91112000 - 0x91120fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91123000 - 0x912defff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dd000 - 0x913e6fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ed000 - 0x913f5fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f9000 - 0x91421fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91434000 - 0x9143ffff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91444000 - 0x914bffff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fc000 - 0x914fcfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fe000 - 0x91536fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91551000 - 0x91623fff com.apple.ColorSync 4.4.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91676000 - 0x91707fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174e000 - 0x91805fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91842000 - 0x918a0fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cf000 - 0x918f0fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91904000 - 0x91929fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193c000 - 0x9197efff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199a000 - 0x919aefff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91a19000 - 0x91ae0fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2e000 - 0x91b43fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91d4f000 - 0x91e3dfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e5c000 - 0x91e5cfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e5e000 - 0x91f43fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f4b000 - 0x91f6afff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fd6000 - 0x92044fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9204f000 - 0x920e4fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920fe000 - 0x92686fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926b9000 - 0x929e4fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a14000 - 0x92b02fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92b05000 - 0x92b8dfff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bce000 - 0x92df9fff com.apple.Foundation 6.4.10 (567.37) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f26000 - 0x92f44fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f4f000 - 0x92fa9fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fc7000 - 0x92fc7fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fc9000 - 0x92fddfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92ff5000 - 0x93005fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93011000 - 0x93026fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93038000 - 0x930bffff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930d3000 - 0x930defff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930e8000 - 0x93115fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9312f000 - 0x9313efff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9314a000 - 0x931b0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931e1000 - 0x93230fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9325e000 - 0x9327bfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9328d000 - 0x9329afff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932a3000 - 0x935b1fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93701000 - 0x9370dfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93712000 - 0x93732fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93786000 - 0x93786fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93788000 - 0x93dbbfff com.apple.AppKit 6.4.10 (824.45) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94148000 - 0x941bafff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941f3000 - 0x942b8fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9430b000 - 0x9430bfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9430d000 - 0x944cdfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94517000 - 0x94554fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9455c000 - 0x945acfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945b5000 - 0x945cffff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945e0000 - 0x94601fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x9463e000 - 0x94683fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x947a4000 - 0x947b3fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947bb000 - 0x947c8fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9480e000 - 0x94827fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9482e000 - 0x94b58fff com.apple.QuickTime 7.4.5 (67) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c3f000 - 0x94cb0fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94e25000 - 0x94f55fff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94fe8000 - 0x94ff7fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94fff000 - 0x9502cfff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95033000 - 0x95043fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x95047000 - 0x95076fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x95086000 - 0x950a3fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95495000 - 0x95495fff com.apple.DiscRecording 3.1.3 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x95497000 - 0x9551afff com.apple.DiscRecordingEngine 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x95547000 - 0x9558dfff com.apple.DiscRecordingContent 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x957c5000 - 0x95883fff com.apple.WebKit 4525.18 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x958f1000 - 0x959d9fff com.apple.JavaScriptCore 4525.17 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x95a15000 - 0x960e7fff com.apple.WebCore 4525.18.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x965a5000 - 0x9662ffff com.apple.QTKit 7.4.5 (67) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x966a8000 - 0x966aafff com.apple.ExceptionHandling 1.2 (???) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x966ad000 - 0x966dffff com.apple.PDFKit 1.0.4 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x97673000 - 0x97692fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97d03000 - 0x97d28fff com.apple.speech.LatentSemanticMappingFramework 2.2 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x97da9000 - 0x97e6afff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x97e95000 - 0x97e96fff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x97e98000 - 0x97ea5fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x98005000 - 0x98006fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x98af9000 - 0x98af9fff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x98c28000 - 0x98c4afff com.apple.DiscRecordingUI 3.1.3 /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x990ea000 - 0x990edfff com.apple.DisplayServicesFW 1.8.1 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x99338000 - 0x9a148fff com.apple.QuickTimeComponents.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9a553000 - 0x9a55efff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9a569000 - 0x9a6c2fff com.apple.MessageFramework 2.1.2 (753) /System/Library/Frameworks/Message.framework/Versions/B/Message
    Host Name: masters-power-mac-g4
    Date/Time: 2008-05-11 09:42:54.809 +0100
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [62]
    Version: 7.1.3 (7.1.3)
    Build Version: 10
    Project Name: iPhotoProject
    Source Version: 3640000
    PID: 215
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 com.apple.iPhoto 0x003efa0c 0x1000 + 4123148
    1 com.apple.AppKit 0x937d65e8 -[NSView _drawRect:clip:] + 2128
    2 com.apple.AppKit 0x937d5ba8 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 404
    3 com.apple.AppKit 0x937d88f0 _recursiveDisplayInRect2 + 84
    4 com.apple.CoreFoundation 0x907ee1e4 CFArrayApplyFunction + 416
    5 com.apple.AppKit 0x937d5cbc -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 680
    6 com.apple.AppKit 0x937d88f0 _recursiveDisplayInRect2 + 84
    7 com.apple.CoreFoundation 0x907ee1e4 CFArrayApplyFunction + 416
    8 com.apple.AppKit 0x937d5cbc -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 680
    9 com.apple.AppKit 0x937d5170 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 196
    10 com.apple.AppKit 0x937d4fb0 -[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 280
    11 com.apple.AppKit 0x937cede4 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 384
    12 com.apple.AppKit 0x937c40d8 -[NSView displayIfNeeded] + 248
    13 com.apple.AppKit 0x937c3f48 -[NSWindow displayIfNeeded] + 180
    14 com.apple.iPhoto 0x00342540 0x1000 + 3413312
    15 com.apple.AppKit 0x937c3df4 _handleWindowNeedsDisplay + 200
    16 com.apple.CoreFoundation 0x907de55c __CFRunLoopDoObservers + 352
    17 com.apple.CoreFoundation 0x907de7fc __CFRunLoopRun + 420
    18 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    19 com.apple.HIToolbox 0x932abb20 RunCurrentEventLoopInMode + 264
    20 com.apple.HIToolbox 0x932ab12c ReceiveNextEventCommon + 244
    21 com.apple.HIToolbox 0x932ab020 BlockUntilNextEventMatchingListInMode + 96
    22 com.apple.AppKit 0x93790874 _DPSNextEvent + 384
    23 com.apple.AppKit 0x93790538 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    24 com.apple.AppKit 0x9378ca7c -[NSApplication run] + 472
    25 com.apple.AppKit 0x9387d598 NSApplicationMain + 452
    26 com.apple.iPhoto 0x000038a0 0x1000 + 10400
    27 com.apple.iPhoto 0x000035a4 0x1000 + 9636
    Thread 1:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.Foundation 0x92bfb284 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.AppKit 0x9382d498 -[NSUIHeartBeat _heartBeatThread:] + 324
    4 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9001f88c select + 12
    1 com.apple.CoreFoundation 0x907f122c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de998 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c030e4 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92c47e44 -[NSRunLoop runUntilDate:] + 80
    6 com.apple.iLifeMediaBrowser 0x010454c8 -[ILMediaBrowserPathWatcher watcherThread:] + 628
    7 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de998 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c030e4 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92c47e44 -[NSRunLoop runUntilDate:] + 80
    6 com.apple.iLifeMediaBrowser 0x01047690 -[ILMediaBrowserPathWatcher(SpotlightSupport) spotlightWatcherThread:] + 652
    7 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000003efa0c srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x24042244 xer: 0x0000000000000004 lr: 0x00000000003ef9e0 ctr: 0x0000000092bf3734
    r0: 0x000000000216a1c8 r1: 0x00000000bfffd870 r2: 0x0000000000000000 r3: 0x00000000a2bf159c
    r4: 0x0000000090a908b4 r5: 0x00000000066865f0 r6: 0x00000000006aa0c0 r7: 0x00000000a07bb960
    r8: 0x0000000000000008 r9: 0x0000000000000000 r10: 0x0000000090a3f628 r11: 0x000000000000003c
    r12: 0x0000000092bf3734 r13: 0x0000000000000001 r14: 0x00000000bfffe6b0 r15: 0x00000000006d0000
    r16: 0x00000000006e0000 r17: 0x00000000bffff270 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x00000000006d0000 r21: 0x00000000006d0000 r22: 0x00000000006e0000 r23: 0x0000000000000000
    r24: 0x00000000006d0000 r25: 0x0000000090a908b4 r26: 0x00000000006d279c r27: 0x00000000006dc168
    r28: 0x00000000006e0000 r29: 0x00000000006e0000 r30: 0x000000000a227370 r31: 0x000000000a225b40
    Binary Images Description:
    0x1000 - 0x687fff com.apple.iPhoto 7.1.3 /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0x76b000 - 0x775fff com.apple.UpgradeChecker 1.0 /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x77d000 - 0x7cbfff com.apple.ImageIO.framework 2.0.1 /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/Image IO.framework/Versions/A/ImageIO
    0x7e9000 - 0x7edfff libGIF.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7f2000 - 0x7f4fff libRadiance.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x1008000 - 0x1070fff com.apple.iLifeMediaBrowser 1.0.5 (205.0.2) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x10ad000 - 0x10cdfff libJPEG.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x10d4000 - 0x10effff libPng.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x1205000 - 0x12a6fff com.apple.DotMacKit 47 (3.0.2L) /Applications/iPhoto.app/Contents/Frameworks/DotMacKit.framework/Versions/A/Dot MacKit
    0x1314000 - 0x136efff libJP2.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x1384000 - 0x13c5fff libTIFF.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x13cf000 - 0x144bfff com.apple.imageKit 1.0 /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/Image Kit.framework/Versions/A/ImageKit
    0x149b000 - 0x160dfff com.apple.QuartzComposer 2.0 (106) /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/Quart zComposer.framework/Versions/A/QuartzComposer
    0x5ad2000 - 0x5ba2fff com.apple.RawCamera.bundle 2.0.1 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x68b6000 - 0x68c0fff com.apple.BookService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x68c9000 - 0x6940fff com.apple.NetServices.NetServices 6.0 /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x6995000 - 0x699dfff com.apple.NetServices.BDControl 1.0.5 /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x69a5000 - 0x69a8fff com.apple.NetServices.BDRuleEngine 1.0.2 /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x69ae000 - 0x69b7fff com.apple.CalendarsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x69c0000 - 0x69c9fff com.apple.CardsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x69d2000 - 0x69d7fff com.apple.NetSlidesService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/NetSlidesService.NetServi ce/Contents/MacOS/NetSlidesService
    0x69de000 - 0x69e8fff com.apple.PrintsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x6b3c000 - 0x6bddfff com.apple.QuickTimeImporters.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x6d39000 - 0x6d3bfff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x6da2000 - 0x6e4bfff com.apple.iTunesAccess 7.6.2 /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x8ee6e000 - 0x8ef2afff AppleAppSupport /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x8f760000 - 0x8f7a1fff com.apple.CoreMediaIOServicesPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x8f840000 - 0x8f86efff com.apple.CoreMediaPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.10 (368.33) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5cfff IOKit /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b72000 - 0x90b84fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8b000 - 0x90e62fff com.apple.CoreServices.CarbonCore 681.17 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f92000 - 0x90fd4fff com.apple.CFNetwork 129.22 (129.23) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe9000 - 0x91001fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91011000 - 0x91092fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d8000 - 0x91101fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91112000 - 0x91120fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91123000 - 0x912defff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dd000 - 0x913e6fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ed000 - 0x913f5fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f9000 - 0x91421fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91434000 - 0x9143ffff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91444000 - 0x914bffff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fc000 - 0x914fcfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fe000 - 0x91536fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91551000 - 0x91623fff com.apple.ColorSync 4.4.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91676000 - 0x91707fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174e000 - 0x91805fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91842000 - 0x918a0fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cf000 - 0x918f0fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91904000 - 0x91929fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193c000 - 0x9197efff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199a000 - 0x919aefff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91a19000 - 0x91ae0fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2e000 - 0x91b43fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91d4f000 - 0x91e3dfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e5c000 - 0x91e5cfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e5e000 - 0x91f43fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f4b000 - 0x91f6afff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fd6000 - 0x92044fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9204f000 - 0x920e4fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920fe000 - 0x92686fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926b9000 - 0x929e4fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a14000 - 0x92b02fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92b05000 - 0x92b8dfff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bce000 - 0x92df9fff com.apple.Foundation 6.4.10 (567.37) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f26000 - 0x92f44fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f4f000 - 0x92fa9fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fc7000 - 0x92fc7fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fc9000 - 0x92fddfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92ff5000 - 0x93005fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93011000 - 0x93026fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93038000 - 0x930bffff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930d3000 - 0x930defff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930e8000 - 0x93115fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9312f000 - 0x9313efff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9314a000 - 0x931b0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931e1000 - 0x93230fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9325e000 - 0x9327bfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9328d000 - 0x9329afff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932a3000 - 0x935b1fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93701000 - 0x9370dfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93712000 - 0x93732fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93786000 - 0x93786fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93788000 - 0x93dbbfff com.apple.AppKit 6.4.10 (824.45) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94148000 - 0x941bafff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941f3000 - 0x942b8fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9430b000 - 0x9430bfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9430d000 - 0x944cdfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94517000 - 0x94554fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9455c000 - 0x945acfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945b5000 - 0x945cffff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945e0000 - 0x94601fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x9463e000 - 0x94683fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x947a4000 - 0x947b3fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947bb000 - 0x947c8fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9480e000 - 0x94827fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9482e000 - 0x94b58fff com.apple.QuickTime 7.4.5 (67) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c3f000 - 0x94cb0fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94e25000 - 0x94f55fff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94fe8000 - 0x94ff7fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94fff000 - 0x9502cfff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95033000 - 0x95043fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x95047000 - 0x95076fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x95086000 - 0x950a3fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95495000 - 0x95495fff com.apple.DiscRecording 3.1.3 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x95497000 - 0x9551afff com.apple.DiscRecordingEngine 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x95547000 - 0x9558dfff com.apple.DiscRecordingContent 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x957c5000 - 0x95883fff com.apple.WebKit 4525.18 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x958f1000 - 0x959d9fff com.apple.JavaScriptCore 4525.17 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x95a15000 - 0x960e7fff com.apple.WebCore 4525.18.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x965a5000 - 0x9662ffff com.apple.QTKit 7.4.5 (67) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x966a8000 - 0x966aafff com.apple.ExceptionHandling 1.2 (???) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x966ad000 - 0x966dffff com.apple.PDFKit 1.0.4 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x97673000 - 0x97692fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97d03000 - 0x97d28fff com.apple.speech.LatentSemanticMappingFramework 2.2 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x98005000 - 0x98006fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x98af9000 - 0x98af9fff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x98c28000 - 0x98c4afff com.apple.DiscRecordingUI 3.1.3 /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x990ea000 - 0x990edfff com.apple.DisplayServicesFW 1.8.1 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9a553000 - 0x9a55efff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9a569000 - 0x9a6c2fff com.apple.MessageFramework 2.1.2 (753) /System/Library/Frameworks/Message.framework/Versions/B/Message

  • Can not edit my songs in the itunes library

    Can not edit my songs in the itunes library
    Windows7 64 BIT / SP1  /  Self-built PC
    Latest ITunes version 10.4
    80GB Classic 5th GEN IPOD
          I had almost full of content on my ipod,then I upgraded from XP HOME(32) to Windows7 (64 Bit)
    What I did not want to do was to spend time loading All 75GB back on the itunes Library, but decided I should restore the ipod, since it's been acting up a bit. I did not deactivate the last XP OS Computer prior to formatting the harddrive,because I thought it would not matter, since the software would be GONE.
    So I downloaded another itunes/Quicktime on this new Win7 O.S., and created the same playlists I had before, then dragged each genre/main music folder into the appropriate folder in itunes.
    I clicked on a few songs to change the Info, but they are all greyed out and I cannot edit anything....I never had these problems before.
    How to I re-enable to EDIT the INFO again?   Thank you!
    (itunes also told me I had authorized four out of five computers for this device...WHAT?  There is only one computer, and my one ipod.  
    ......BUT.......My sister has a 16GB itouch, and I put my songs on her itouch, also charged it up on my computer, since she does not have her own computer yet. Will that mess anything up? 
    Can she create her own User apple ID/password, then be able to edit her stuff from my computer? AUTHORIZE her itouch on my computer, or do I have to create her own playlists (because I have an 80GB, and she has a16GB, obviously, she will not get all mine on her small device) then checkmark ONLY her playlists to manage on her itouch, from my computer?
    A few people told me to try this....
         I Plugged in the OL' ipod, Under the SUMMARY TAB, and under the OPTIONS TAB, I changed what I had, which was "SYNC ONLY CHECKED SONGS AND VIDEOS" [B]to MANUALLY MANAGE MUSIC AND VIDEOS"[/B]
    THEN underneath that, "OPEN ITUNES WHEN IPOD IS CONNECTED", "AND MANUALLY MANAGE MUSIC WERE [U]BOTH CHECKED[/U]."
    THEN - I went back into my Win Explorer Main Music folder,and under PROPERTIES, I unchecked the READ-ONLY Box, hit APPLY, then OK, then I went back into the itunes library and tried to edit a few songs, but they are all still greyed out and not editable.
    I went back into the WIN EXPLORER main Music folder and checked to see if the READ-ONLY was still unchecked, but it automatically reverted back to READ ONLY.
    Another question I wanted to ask was this. I have my main Music Folder on my Storage HDD. They are MP3 files, and listed as Country,Blues,Classic Rock,Reggae,etc.  After I installed the WIN7 OS, I had to download itunes again/Quicktime,then dragged each main music folder into the appropriate playlist until they were all there.  Since my itunes app is on my Boot Drive,and my main music folder on my Storage drive,am I wasting or adding any needless HDD space having on both HDD'S? or is this a non-issue?  Thank you!

    Hello All!
    Well, after posting the help messages, I went diggingthrough both my itunes folder on my (C) drive, and then the Music Folder on my(F) Storage drive where I keep all my music files and then went into securityand in each line, I made FULL CONTROL, APPLY, then went back into iTunes afterplugging my ipod in and clicked on MANUALLY MANAGE TUNES.
    I don't know which did it, but now I can edit the songs. To answer yourquestion, I was able to play the songs, but just couldn't edit any of themuntil now. Thanks for your Reply!

  • I have 10.6.8 and have installed two new printers HP 8610 and an Epson 7880 and can not find the Page Set-up menu anywhere in the applications I a trying to print from. There are no page sizes, paper types, appearsto be locked on a 13x19 size but It.

    Hi to the Mac Folks,
    I have 10.6.8 and have installed two new printers HP 8610 and an Epson 7880 and can not find the Page Set-up menu anywhere in the applications I a trying to print from. This is regardless of either printer selected.
    I primarily print photos from Photoshop CS5.  The term Page Set-up has gone missing in the file pull down menu. Can't make any choices  There are no page sizes, paper types, appearsto be locked on a 13x19 size paper format. Either being too large or too small.
    Saw a 2008 locked issue about this however none of the help fit my situation, options discussed are not available to me.
    Preview has no "Page Setup" - or does it?
    Does the constant struggle with computer compatability weirdness issues ever end or is it a enslavement scheme?
    Woody

    Hey,
    if you know the name(s) of the root folder(s) you want to access (eg. by making a note on the Windows side) then you can make them appear by just doing Shift-Command-G in Finder ("Go to Folder…"), and entering the full path to the required folders.  You can then navigate all the contents as normal.
    HTH,
    S.

  • Can not open some pages on safari like google or facebook

    i can not open some pages on safari, like google or facebook have to turn off a try again then sometimes works

    Select  ▹ System Preferences ▹ Network ▹ Advanced ▹ TCP/IP ▹ Configure IPv6: Off. Apply the change and test. You must apply the change before it takes effect.

Maybe you are looking for

  • Gap in between divs in firefox

    Hi there. I'm working on a website and I have tested in both IE 7, and Firefox v2. In IE it looks as intended, but in Firefox, there is a gap between the customer menu (with lime green background), and the Top Menu bit (above the lime green). The cus

  • IPhone5 sync problem.

    Right, hopefully i will be able to get to the bottom of my problem with a good resolution. I purchased a iPhone5 recently on the EE network here in the UK. I backed up my iPhone4 on my iTunes and then sync'd the new phone. However, the new phone will

  • HR_INFOTYPE_OPERATION mod not working

    Hi all, Getting a bit desperate here. Using HR_INFOTYPE_OPERATION in 'INS' mode and that is working fine. However, when trying to change one field - ENDDA - with OPERATION=MOD it is just not doing it. Going thru most of the other posts regarding this

  • Run time error when calling Start() method from an Output counter user control in my class.

    I am new to DAQmx and .NET. In my application I need to activate a clock out on counter 2 (HW pci 16 E 4). I went through all the steps like the sampling examples but instead of Analog input I used counter output , and setup the pulse ratios. When I

  • Safari Version 6.0.4 - Crash Log decode/assistance

    Greetings All, I was wondering if anyone can help with understanding this Crash Log. Safari seems to be crashing when submiting any kind of applet command triggered by any type of "submit" like button. here is an excerpt of the most recent crash log