Exceptions page for cookies

7/9/11
Hello again. I have now managed to sort this problem myself.
Barry
Hello,
My old XP computer crashed a week ago and the cost to repair it was too much. I have just received a new PC with Windows 7 Home premium and, amongst many other tasks, have reinstalled Firefox (the same version as I was using on the XP PC). I have two problems related to Options in Tools.
Firstly, I can't seem to get the same info that was automatically available before from the Privacy tag in Options. I have set this window to ask me every time a site wants to add a cookie. Before, if I clicked on "Exceptions" I was presented with a list of all cookies I had either blocked, allowed for this session or allowed. Now the box is always blank with no cookies in it at all, so I can't check whether I have blocked a cookie I shouldn't have and I can't, as I did before, set the status order and then delete all the cookies I had allowed for the session. Can someone help me with this?
My second problem is also related to cookies. Previously I am sure the Priority tag either stated or asked you to click a box to say "Treat all cookies from this site in the same manner". Now, no matter how many times I click "Block" or "Allow" the same question continuously pops up for those same cookies every time I go to their site and I am forever clicking Block or Allow. I might have to click the same cookie 20 or more times before it stops popping up (I believe this is probably tied to the first problem of no cookies showing in the exceptions list?).
Can someone help me with this?
Thanks,
Barry

7/9/11
Hello again. I have now managed to sort this problem myself.
Barry
Hello,
My old XP computer crashed a week ago and the cost to repair it was too much. I have just received a new PC with Windows 7 Home premium and, amongst many other tasks, have reinstalled Firefox (the same version as I was using on the XP PC). I have two problems related to Options in Tools.
Firstly, I can't seem to get the same info that was automatically available before from the Privacy tag in Options. I have set this window to ask me every time a site wants to add a cookie. Before, if I clicked on "Exceptions" I was presented with a list of all cookies I had either blocked, allowed for this session or allowed. Now the box is always blank with no cookies in it at all, so I can't check whether I have blocked a cookie I shouldn't have and I can't, as I did before, set the status order and then delete all the cookies I had allowed for the session. Can someone help me with this?
My second problem is also related to cookies. Previously I am sure the Priority tag either stated or asked you to click a box to say "Treat all cookies from this site in the same manner". Now, no matter how many times I click "Block" or "Allow" the same question continuously pops up for those same cookies every time I go to their site and I am forever clicking Block or Allow. I might have to click the same cookie 20 or more times before it stops popping up (I believe this is probably tied to the first problem of no cookies showing in the exceptions list?).
Can someone help me with this?
Thanks,
Barry

Similar Messages

  • Configuring Exception pages thru servlets for tomcat5

    Hi,
    I am trying to configure exception pages for servlets. But cannot get it done. I have one servlet ServletMapping.java. I am defining in web.xml, that any error should go to the servlet ErrorDisplay.java, which in turn handles the error. I have written for javax.servlet.ServletException.
    But the control does not go to the error page servlet ErrorDisplay.java
    thanx in advance
    -biyat
    Here is my web.xml
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2_3.dtd">
    <web-app>
    <display-name>Biyat Testing System for web development</display-name>
    <description>
    Used to write Jsp/ Servlets
    </description>
    <servlet>
    <servlet-name>ServletMapping</servlet-name>
    <servlet-class>code.ServletMapping</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>ServletMapping</servlet-name>
    <url-pattern>/code/ServletMapping</url-pattern>
    </servlet-mapping>
    <servlet>
    <servlet-name>ErrorDisplay</servlet-name>
    <servlet-class>code.ErrorDisplay</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>ErrorDisplay</servlet-name>
    <url-pattern>/code/ErrorDisplay</url-pattern>
    </servlet-mapping>
    <error-page>
    <exception-type>javax.servlet.ServletException</exception-type>
    <location>/code/ErrorDisplay</location>
    </error-page>
    </web-app>
    Here is my servlets
    in webexp/WEB-INF/classes
    code/ErrorDisplay.java
    package code;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class ErrorDisplay extends HttpServlet
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    String code=null, message=null, type=null;
    Object codeObj, messageObj, typeObj;
    codeObj = request.getAttribute("javax.servlet.error.status_code");
    messageObj = request.getAttribute("javax.servlet.error.message");
    typeObj = request.getAttribute("javax.servlet.error.exception_type");
    if(codeObj != null)
    code = codeObj.toString();
    if(messageObj!=null)
    message = messageObj.toString();
    if(typeObj != null)
    type = typeObj.toString();
    String reason = (code!=null ? code : type);
    out.println("<html>");
    out.println("<head><title>"+reason+":- "+message+"</title></head>");
    out.println("<body>");
    out.println("<h1>"+reason+"</h1>");
    out.println("<h1>"+message+"</h1>");
    out.println("<hr>");
    out.println("<i>Error accessing "+request.getRequestURI()+"</i>");
    out.println("</body></html>");
    Here is the page where there is error.
    in webexp/WEB-INF/classes
    code/ServletMapping.java
    package code;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class ServletMapping extends HttpServlet
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
    String var1 = "logging starts";
    String str = request.getParameter("hello");
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    FileInputStream fis = new FileInputStream("hello.gif");
    out.println("<html><body><font color=red><b>Hello Biyat</b></font></body></html>");

    Hi, Biyat,
    The first thing I can see would help is to also define an error page for java.io.IOException - you can even re-use the same error page by adding the following to web.xml:
    <error-page>
    <exception-type>java.io.IOException</exception-type>
    <location>/code/ErrorDisplay</location>
    </error-page>
    djiao

  • Exception Handling for many bean objects of a container class in a JSP page

    Hello,
    I have on container bean class. In this container class, there are several others class objects and the getter methods to get these objects out to the JSP pages.
    I have one JSP page which will use different objects in the container class object through the getter methods of the container class.
    My question is how to implement the exception handler for all the objects in the container so that the JSP page can handle all exceptions if occurrs in any object in the container?
    Please give me some suggestions. Thanks
    Tu

    Thanks for your reply.
    Since the container is the accessor class, I have no other super class for this container class, I think I will try the try catch block in the getter methods.

  • To view reports in new page for each cutomer using Report Designer

    HI all
    I have a requirement to view the data (key figures) for each customer in a new page.
    I have created the same using the Report Designer tool.
    Now there is setting for this Group Header 'Customer' i have selected the option 'repeat group header on each page'
    still the query when generated, gives fine results for certain cases but not for all.
    like it will show the each customers in a fresh page for some pages , then in midst there would some 2-3 customers in the same page.
    There is no relation between these customers , they are same as the other customers, no difference at all.then i am not able to figure out the reason why it is behaving so odd.
    Thanks
    Ramesh

    Ramesh,
    right now there really is no way to solve what you are looking for.  There partial solutions, but you will not be able to force a page break in a dynamic report.
    Here is what I have faced, and what I have come up with so far:
    I have a series of reports that have the same column heading, but spread over 5 pages in a fixed structure.  I need to be able to re-use the header and the general report design with 6 reports.  Here is my solution:
    1. Create an outline of the report.  I did all the formatting by creating a report section for each page.  You can force page breaks between the pages.  Upgrade to patch 1502 (came out last week) and you will see some new functionality (such as fit to page, page numbers, etc).
    2. Insert all you page breaks and do all the formatting.
    3. Insert an infoprovider.  Once in, you can just drag and drop the key figure cells into your formatted report.
    4. Create additional modification for formatting as needed.
    This fixes my problem (for now), but I had to do a lot of work to come up with this.  Also, the latest patch (1501 and 1502) has created an issue for me - there is a null exception when I try to use a variable or a filter value in the report body - I can't save the report.  I have an OSS message out, but our BASIS guys are going to be taking the lead on troubleshooting this.
    The reason that you are seeing some customers on the new pages is probably because of "how the cookie falls" - they just fit that way.
    I am trying to be positive and overcome the limitations that are in place right now. If my technical issue is solved, I would recommend upgrading to the new patch (1403 is the latest stable one in my opinion)
    good luck
    Pavel

  • How do I disable "Exceptions" button for "Block pop-up windows" in Content tab?. I am able to Disable other Exception buttons in this tab using about:config preference.

    Need a way to disable "Exception" button for "Block Pop-up windows" in Tools-> Options -> Content tab. I want to be able to do this for Locking Down Firefox preferences.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)

    That button doesn't have a pref associated with it, so you can't disable that button with a pref on the about:config page or a lockPref call.
    That only leaves the choice to remove that button with code in userChrome.css
    <pre><nowiki>#popupPolicyButton {display:none!important;}</nowiki></pre>
    See http://kb.mozillazine.org/Editing_configuration#How_to_edit_configuration_files

  • I am unable to load some web pages, I get an error message saying unable to load page due to invalid or unsupported form of compression, this happens on the BBC news page for example. Any ideas how to overcome???

    OS is Windows7. I'm using the latest version of Mozilla Firefox
    I am unable to load some web pages, I get an error message saying unable to load page due to invalid or unsupported form of compression, this happens on the BBC news page for example. Any ideas how to overcome???

    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"

  • Im getting exceptional error for website ...what is the problem for that error..error message is posted below

    The initial exception that caused the request to fail, was:
    com.sap.tc.useragent.UserAgentServiceException: Syntax Error in number '$4' of User-Agent Number Element ID 'engineVersion'.
    at com.sap.tc.useragent.ElementTypeNumber.createElement(ElementTypeNumber.java:34)
    at com.sap.tc.useragent.UserAgentElement.createElement(UserAgentElement.java:34)
    at com.sap.tc.useragent.UserAgentElement.copy(UserAgentElement.java:71)
    at com.sap.tc.useragent.UserAgentTemplate.instantiate(UserAgentTemplate.java:45)
    at com.sap.tc.useragent.detection.RegExpDetector.detectUserAgent(RegExpDetector.java:33)
    ... 62 more
    See full exception chain for details.
    Failed to process request. Please contact your system administrator.
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    For further information about the Web Dynpro error page, error analysis and a description of well-known error situations, see SAP note 1113811.
    Correction Hints
    Exception could be caused by the development component: com.sap.tc.useragent.interface
    Note: The above hints are only a guess. They are automatically derived from the exception that occurred and therefore can't be guaranteed to address the original problem in all cases.
    System Environment
    Client
    Web Dynpro Client Type AJAX Client
    User agent Mozilla/5.0 (Android; Mobile; rv:24.0) Gecko/24.0 Firefox/24.0
    Client Type ff
    Client Type Profile nn7
    ActiveX disabled
    Java Applets enabled
    Accessibility mode disabled
    Inline CSS n/a
    Validate by rendering true
    Server
    Web Dynpro Runtime vendor: 'sap.com', name: 'tc/wd/webdynpro', scV: 'sap.com', scN: 'WD-RUNTIME', location: 'SAP AG', counter: '7.3005.20130111125833.0000', R: '7.30', SP: '5', PL: '20', change number: '255333', codeline: NW730CORE_05_REL
    J2EE Engine 7.30.3710.270166.20130816104554
    System ID (SID) FP1
    Server Node ID |13769650|137696|Server 00 01_137696|ciFP1/10.72.16.58|SERVER|RUNNING
    Java VM SAP Java Server VM, version:6.1.038 19.1-b02, vendor: SAP AG
    Operating system Linux, version: 2.6.32-220.el6.x86_64, architecture: amd64
    Application
    Java EE Application (deployable object) sap.com/pb
    Web Dynpro Application PageBuilder
    Request URI /webdynpro/resources/sap.com/pb/PageBuilder
    Version vendor: 'sap.com', name: 'pb', scV: 'sap.com', scN: 'EP-RUNTIME', location: 'SAP AG', counter: '7.3005.20111228115104.0000', R: '7.30', SP: '5', PL: '4', change number: '160458'
    Session &amp; Other
    Session Locale en_GB
    Session Timezone India Standard Time
    Time of Failure Sun Oct 27 09:59:27 IST 2013 (Java Time: 1382848167814)
    Session User ClientUser(id=USER.PRIVATE_DATASOURCE.un:CC172020, name=CC172020)
    Http Session Id 978BAO1ZCsh8JZ7REyIA575jsir4QQGyG9IA_SAP
    Client Window Id WID1382848129974
    Application Session Id CrXVdgZ0571vfwcUljh9Bw--Q4*zmQ0kblXVHMfCG18ZBg--
    Web Dynpro Code Generation Infos
    sap.com/pb
    WD web module webdynpro/resources/sap.com/pb: SapDictionaryGenerationCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:24:28+0000, changelist=159000, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapDictionaryGenerationTemplates 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:24:57+0000, changelist=159000, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapGenerationFrameworkCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:14:41+0000,
    WD web module webdynpro/resources/sap.com/pb: SapMetamodelCommon 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:17:37+0000, changelist=159372, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapMetamodelCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:15:03+0000, changelist=159372, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapMetamodelDictionary 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:20:22+0000, changelist=159002, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapMetamodelWebDynpro 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:25:40+0000, changelist=159462, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapWebDynproGenerationCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:37:46+0000, changelist=159461, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapWebDynproGenerationTemplates 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:37:55+0000, changelist=159461, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapWebDynproRuntimeGen 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:35:55+0000, changelist=159464, host=pwdfm257, is-central=true)
    sap.com/pb_api
    WD (release=NW730CORE_05_REL, buildtime=2011-12-28T16:24:57+0000, changelist=159000, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapGenerationFrameworkCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:14:41+0000, changelist=159048, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapIdeWebDynproCheckLayer 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:37:31+0000, changelist=159461, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapMetamodelCommon 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:17:37+0000, changelist=159372, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapMetamodelCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:15:03+0000, changelist=159372, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapMetamodelDictionary 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:20:22+0000, changelist=159002, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapMetamodelWebDynpro 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:25:40+0000, changelist=159462, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapWebDynproGenerationCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:37:46+0000, changelist=159461, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapWebDynproGenerationTemplates 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:37:55+0000, changelist=159461, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapWebDynproRuntimeGen 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:35:55+0000, changelist=159464, host=pwdfm257, is-central=true)
    sap.com/tc~wd~api
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapDictionaryGenerationCore 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:27:04+0000, changelist=159000, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapDictionaryGenerationTemplates 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:27:18+0000, changelist=159000, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapGenerationFrameworkCore 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:05:47+0000, changelist=159048, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapIdeWebDynproCheckLayer 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:39:20+0000, changelist=180142, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapMetamodelCommon 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:10:50+0000, changelist=159372, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapMetamodelCore 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:07:26+0000, changelist=159372, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapMetamodelDictionary 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:22:41+0000, changelist=210375, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapMetamodelWebDynpro 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:27:36+0000, changelist=159462, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapWebDynproGenerationCore 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:39:36+0000, changelist=180142, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapWebDynproGenerationTemplates 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:39:43+0000, changelist=180142, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapWebDynproRuntimeGen 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:37:00+0000, changelist=223591, host=pwdfm257, is-central=true)

    Oh man it looks like a problem with the web server.
    Its an error that happens on SAP, even my dad reported an error like this to me but i wasn't able to solve it.
    What i find is that its an error with browser incompatibility,
    Check this http://scn.sap.com/message/10338540

  • How can i set a global error page for all error cod

    how can i set a global error page for all error code?
    i don't want to leave a long list in the web.xml file.could any one help me?
    thanks

    If u have a common Error JSP named as ErrorPage.jsp
    You need to have the following piece of code in the JSP as :
    <%@ page isErrorPage ="true"%>
    This makes it as the Common Error Page for the Application. Now all you need to do is from other JSP's throw the Exception to teh container. The container will redirect to this Page and process accordingly.
    Thanks and regards,
    Pazhanikanthan. P

  • "returning error page for JRun too busy or out of memory"

    Hello,
    I've got some trouble to update a ColdFusion linux based.
    We have already tried to update from ASPB11-04 and ASPB11-14 but we always have the folloing erreor message :
    "returning error page for JRun too busy or out of memory"
    We really need a solution ASAP. Thanks!
    Jeff

    Can you share the exception and application logs having the error entries.
    Regards,
    Anit Kumar

  • Idoc failed in Bi system "Could not find code page for receiving system".

    Dear Experts,
    i am getting below error ,Idoc failed in Bi system "Could not find code page for receiving system".
    All the idocs have been successfully posted except one which is giving this error
    Idoc status 02 - could not find code page for receiver system.
    Please guide me
    thanks
    vamsi

    Hello Vamsi,
    check Note 647495 - RFC for Unicode ./. non-Unicode Connections
    If your ERP system sends e. g. chinese data to the SCM system, how should the system know which codepage to use? You have to set the MDMP flag in your ERP system in SM59 and configure in the MDMP extended settings which codepage should be used for what language.
    Please check this thread - IDoc error - Could not find code page for receiving system
    Hope it helps,
    Thanks & Regards,
    Amit Barnawal

  • *** - no footnotes & endnotes in Pages for iPad?!

    OK - I just got an iPad and am in general fairly happy about it. But I had a big *** moment, after I purchased Pages and tried to open a document I had been working on on my Mac. Guess what - iPad Pages won't import footnotes and endnotes!
    Does anyone know if Apple is planning on changing this in an upcoming release? This is truly unacceptable. How can Apple expect all of its student customers to use it, not to mention other academics? This strikes me as a large portion of their customer base. What's worse, the advertising leads one to believe that, besides some complex formatting, everything you can do on Pages for Mac can also be done on Pages for the iPad.
    Has anyone found a workaround to this 'bug'? I don't know whether Apple did this intentionally or not, but it's a very serious drawback of the app.
    I will tell my student friends not to download Pages for iPad, until this is fixed. Apple - get with it!
    A loyal but disappointed Apple customer

    I agree with most of what you are trying to get across, except that I think there are a few problems when applied to the issue at hand (footnotes on iPad Pages).
    1) Yes, I agree the OP could have found out. I haven't bought an iPad yet, and this is one of the reasons (along with issues with Keynote), and the fact that I until these things are solved, my MacBook Pro works fine. However, here are a few lines right from Apple's product page on the iTunes store...
    - View and edit existing documents by importing Pages '09 or Microsoft Word files from Mail attachments or web.
    - Share your work by exporting to Pages '09, Microsoft Word, or PDF and sending it via Mail. …
    - Transfer documents between Mac or PC and your iPad using File Sharing in iTunes.
    Now, combine that with the fact that this isn't called 'Pages Lite' or iPadMiniWrite... one sure gets the impression that things are going to be more seamless. Not even a little asterisk noting some feature difference in files or that you lose certain document aspects when going back and fourth. You'd have to be fairly tech-savvy to pick up the word 'export' and 'import' and imply this from that. One would guess that for MS Word or some other word processor, but not when the app has the same name and the above statements are made.
    2) Yes, I realize footnotes aren't trivial, but they are a basic feature of every word-processor I've ever used (mail merge probably as well)..... I'm pretty sure even back on computers with several times less processing power and RAM than the iPad has. There are some incredibly complex applications for the iPad. Unless there is some really crazy limitation I can't conceive of, footnotes aren't a technical limitation issue.
    3) I'm not blaming Apple for anything other than being pretty unclear about this. Make it clear... then let the user decide. While I love Apple, this is walking a pretty fine line near deception IMO. I do remember finding this out and being somewhat ******-off at the time because I had been tricked after the keynote (speech), and reading EVERYTHING I could find on the topic. This didn't come out until some real reviewers got their hands on one and discovered and exposed it. I certainly wasn't the only one who was shocked by this. That isn't cool, and isn't the Apple I know.
    4) I don't really think it is an unfair complaint. This is something Apple should implement (and hopefully will)... and be clear about until then. At the very least, if the iPad can't support footnotes, it should at least somehow preserve them in the file so that if you save and go back to the desktop, it hasn't stripped them out.
    BTW, sorry for inferring you were a fanboy... and welcome to the world of Apple. I think you'll find that long-time Apple users can be extremely critical of Apple products when we feel they aren't living up to expectations in some way. And, believe it or not, Apple often does listen..... which I think is at least part of what has made them a great company.

  • How to create a Dynamic Logon pages for a portal.

    Hi all ,
    Is it possible to create a dynamic logon pages for a portal.My requirement is when ever we enter the Portal url in the browser we will get logon page ..now when we reenter the Portal link the logon page should change. is it possible .
    thanks
    Rajeev.

    Hi Rajeev,
    Your requirement isn't very clear here.
    Do you meant that is userA is trying to logon, he must see different logon pages at different tims he tries to logon?
    Thanks  Hermann, I too was thinking about the same...just need to have some clarity on what really needs to be achieved.  Also unless the whole logon page needs to be different then cookies are best -- if its just some images then some javascript would be good enough.
    Thanks,
    GLM
    Edited by: GLM on Sep 26, 2008 12:11 PM

  • Logout link does not appeared in exception page

    When exception is thrown , the logout link is not appeared in the exception page. By default , we select error page in themes as two level tabs.
    Where can I get the error page for the themes. Is can i see the code for error page , if possible.
    Please help me out.
    Thanks,
    Sesha

    THANKS ITS WORKING FINE NOW>
    WE ARE USING 3.0.9. Actually there was a problem with the template which resulted in the Link not working.
    Thanks

  • Users are having issues w/ the community page for pa.

    It seems other users are having issues with accessing the community page for pa, as noted on
    URL: http://www.dslreports.com/forum/r22862991-Any-else-out-there-having-issues-w-the-community-page-4-pa
    Title/Location: DSLR (dslreports.com) Forums -> US Telco Support -> Verizon -> Verizon Fiber Optics -> Any else out there having issues w/ the community page 4 pa?
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it. If anyone has been helpful to you, please show your appreciation by clicking the "Kudos" button.

    This is what I told at the online chat..
    Richardo: if some people can get to both URLs and others can only get to the new one that could be that the old one is being done away with or if not that then it would have to be the setting for those computers that are not getting to the old one.
    Me: Like what kind of settings?
    Me: I have, as you may know, A Static Public IP (IP, Subnet Mask, Default Gateway, and DNS Servers) as assigned by Verizon.
    Richardo: that would be the settings within the browser.
    Me: like cache, or proxy server for example... ?
    Me: connection setting
    Me: You do not need to tell me where these settings are, just what type of browser settings...
    Me: Please, and thanks.
    Richardo: the security , cookies, temporary internet files
    [EDIT] My appolgies for Cross posting.
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it. If anyone has been helpful to you, please show your appreciation by clicking the "Kudos" button.

  • Adding my jsp page for administration

    can i attach my jsp page to manage users and groups by admin, instead of 9IAS portal page to manage users and groups. if i can use it , then how can i map the values entered in my jsp page with the 9IAS portal page for creating and managing users and groups.

    Then your question was wrong. You asked how to include package. The solution to that is that you don't need to add the import since it happens automatically.
    Your actual problem was that the package was not found. If you'd mentioned that earlier, someone could've suggested that you check to see if you'd added the API library to your classpath and you'd have got your answer faster.
    You should state your exact problem and post the relevant stack trace and exceptions and code if any.
    People on the forum help others voluntarily, it's not their job.
    Help them help you.
    Learn how to ask questions first: http://faq.javaranch.com/java/HowToAskQuestionsOnJavaRanch
    ----------------------------------------------------------------

Maybe you are looking for

  • Dict 0.6.78 by David Costanzo can no longer connect to ANY of the servers

    All of a sudden when I highlight a word, right-click on it and select "look up _____" there's a long pause and then a small box pops up and says "unable to connect to dict.org. Try connecting to a different server." When I did THAT, the Add-ons box s

  • How do I select two-sided printing on LaserJet Pro 200 Color?

    How can I print documents with two-sided printing with LaserJet Pro 200 color printer. I have Mac )S X 10.10 Yosemite.

  • Problem with objective-c troubleShooting

    Hi there, i'm all new to mac & iOS developement and am getting startet by working throught what appeared to be a great book "Einstieg in Objective-C 2.0 and Cocoa inkl iPhone programming". what im doing right now is creating an Weblog App for the iPh

  • Read from text file and plot in real time

    Hello to everybody, I recently started using labview and so I know very few features, I apologize for any crap I'm about to write. My problem is as follows: _ A wireless node is sampling, with a known frequency, the voltage and the current of an elec

  • Dataguard 10g question

    This is from the doco: A physical standby database can be opened temporarily in read/write mode for development, reporting, or testing purposes, and then flashed back to a point in the past to be reverted back to a physical standby database. When the