Problem with my cookies?

Why the length of cookies doesn't decrease when I make a setMaxAge on my cookies?
My code :
Cookie cookie=null;
Cookie cookies[]=request.getCookies();
if (cookies!=null)
for(int i=0; i<cookies.length; i++)
cookie=cookies;
if (cookie!=null)
cookies[i].setMaxAge(0);
break;
cookie=new Cookie(cha�neCookies,cha�neCookies);
response.addCookie(cookie);
int i=cookies.length;
Normally, i sould be equal to 1. No?
But more my project run in this part of code, more the length
increase.
Anyone can help me?
thanks

setMaxAge(0) will actually delete the cookie.
Try giving some positive values.

Similar Messages

  • Gmail error message "We've detected a problem with your cookie settings." Tried everything...

    THIS IS THE PAGE:
    Google
    We've detected a problem with your cookie settings.
    Enable cookies
    Make sure your cookies are enabled. To enable cookies, follow these browser-specific instructions.
    Clear cache and cookies
    If you have cookies enabled but are still having trouble, clear your browser's cache and cookies.
    Adjust your privacy settings
    If clearing your cache and cookies doesn't resolve the problem, try adjusting your browser's privacy settings. If your settings are on high, manually add www.google.com to your list of allowed sites. Learn more
    ©2013 Google - Google Home - Terms of Service - Privacy Policy - Help
    i have done everything listed here so many times and nothing is fixing this. Made sure cookies were enabled, cleared cache and cookies, made sure Gmail was approved in security settings, and then as a last ditch effort, I disabled all add-ons for Firefox and still no Gmail... I was so desperate that I even re-installed ff-19 and still cannot get into my email account. What is going on here? Any help or small nudge in the correct direction would be much appreciated!

    I used the same thing used in the first link 950400...
    Firefox > Options > Options > Privacy > remove individual cookies > typed google > remove all cookies > typed gmail > remove all cookies
    restarted Firefox and now I can log into gmail...

  • ACE : Stickyness problem with http cookies

    Hi,
    I am facing a serious problem with stickyness in a e-commerce configuration.
    Here is the setup :
    An ACE load balance user requests on two Apache servers
    cookie-insert is used to stick a user on one Apache server
    The home page is accessed via http on port 80
    On the Home page, there is a link to allowing the user to login
    The login process uses SSL
    During the login, backend SSL is required between the ACE and the selected Apache server
    The login is a POST request to the Apache server
    After a successful login, the home page is reloaded on port 80 and the name of the user should appear on the top of the page
    The ACE configuration :
    Two sticky groups are configured : one for HTTP acess and another for HTTPS access
    Two server farms are defined, both using the same real servers, but with different ports (80 and 441)
         sticky http-cookie STICKED-TO ECOM_STICKY_TEST_HTTP
           cookie insert browser-expire
           timeout 240
           replicate sticky
           serverfarm ECOM_FARM_TEST_HTTP
              sticky http-cookie STICKED-TO ECOM_STICKY_TEST_HTTPS
           cookie insert browser-expire
           timeout 240
           replicate sticky
           serverfarm ECOM_FARM_TEST_HTTPS
         serverfarm host ECOM_FARM_TEST_HTTP
           description *** e-Commerce Test Server Farm ***
           probe ECOM_PROBE_TEST
           rserver HQCHECOM01 80
            inservice
           rserver HQCHECOM02 80
            inservice
             serverfarm host ECOM_FARM_TEST_HTTPS
          description *** e-Commerce Test Server Farm ***
          probe ECOM_PROBE_TEST
          rserver HQCHECOM01 443
           inservice
          rserver HQCHECOM02 443
           inservice
    The problem :
    Let analyse the sequence of events and the value of the http cookie for each of them :
    When the the home page is originally loaded, the ACE selects SERVER-1
    The ACE inserts the cookie "A" in the server responses
    The user is sticked to SERVER-1
    Then, the user tries to login and an SSL session is established with the ACE
    The user sends a POST request containing the cookie "A"
    A backend SSL session is established with SERVER-1
    The POST request is forwarded to SERVER-1
    SERVER-1 responds with a 200 OK and the ACE generates another cookie "B" as it belongs to the sticky group ECOM_STICKY_TEST_HTTPS
    The client browser reloads the page on port 80 and provides the cookie "B" (the last received) !!
    The ACE sees the cookie "B" but does not find it in its database for the sticky group ECOM_STICKY_TEST_HTTP
    The ACE perform another load balancing decision and selects SERVER-2 ! (instead of SERVER-1)
    The page is reloaded, but the name of the user does not appear on it
    The question :
    As it is not possible to have only one sticky group in this configuration what would be the solution to make sure that the same server is selected for http and https ?
    Thank you for any hints,
    Yves

    Hi Gilles,
    I followed your recommendation to configure static cookie entries in each sticky group, but I still experience the problem of sessions getting re-load balanced to the second server when returning from HTTPS to HTTP :
    It seems that the ACE ignores the static entries !
    To make my question clear, I repeat hereafter the setup and the encountered problem :
    Here is the setup :
    An ACE load balance user requests on two Apache servers
    cookie-insert is used to stick a user on one Apache server
    The home page is accessed via http on port 80
    On the Home page, there is a link to allowing the user to login
    The login process uses SSL
    During the login, backend SSL is required between the ACE and the selected Apache server
    The login is a POST request to the Apache server
    After a successful login, the home page is reloaded on port 80 and the name of the user should appear on the top of the page
    The ACE configuration :
    Two sticky groups are configured : one for HTTP acess and another for HTTPS access
    Two server farms are defined, both using the same real servers, but with different ports (80 and 443)
    In the ECOM_STICKY_TEST_HTTP stick group the two following cookies are automatically generated :
    R105816849   for the server HQCHECOM01
    R105852786   for the server HQCHECOM02
    In the ECOM_STICKY_TEST_HTTPS stick group the two following cookies are automatically generated :
    R355972695   for the server HQCHECOM01
    R357158616   for the server HQCHECOM02
    I statically configured in the each sticky group the cookies used by the other sticky group, to allow stickiness when the browser switches from HTTP to HTTPS and vice versa :
    sticky http-cookie STICKED-TO ECOM_STICKY_TEST_HTTP
      cookie insert browser-expire
      timeout 240
      replicate sticky
      serverfarm ECOM_FARM_TEST_HTTP backup WEB_REDIRECT_001
      56 static cookie-value "R355972695" rserver HQCHECOM01
      64 static cookie-value "R357158616" rserver HQCHECOM02
    sticky http-cookie STICKED-TO ECOM_STICKY_TEST_HTTPS
      cookie insert browser-expire
      timeout 240
      replicate sticky
      serverfarm ECOM_FARM_TEST_HTTPS backup WEB_REDIRECT_001
      72 static cookie-value "R105816849" rserver HQCHECOM01
      80 static cookie-value "R105852786" rserver HQCHECOM02
    serverfarm host ECOM_FARM_TEST_HTTP
      description *** e-Commerce Test Server Farm ***
      probe ECOM_PROBE_TEST
      rserver HQCHECOM01 80
       inservice
      rserver HQCHECOM02 80
       inservice
    serverfarm host ECOM_FARM_TEST_HTTPS
      description *** e-Commerce Test Server Farm ***
      probe ECOM_PROBE_TEST
      rserver HQCHECOM01 443
       inservice
      rserver HQCHECOM02 443
       inservice
    The problem :
    Let analyse the sequence of events and the value of the http cookie for each of them :
    When the the home page is originally loaded, the ACE selects SERVER-1
    The ACE inserts the cookie "A" in the server responses
    The user is sticked to SERVER-1
    Then, the user tries to login and an SSL session is established with the ACE
    The user sends a POST request containing the cookie "A"
    A backend SSL session is established with SERVER-1
    The POST request is forwarded to SERVER-1
    SERVER-1 responds with a 200 OK and the ACE generates another cookie "B" as it belongs to the sticky group ECOM_STICKY_TEST_HTTPS
    The client browser reloads the page on port 80 and provides the cookie "B" (the last received)
    The ACE sees the cookie "B" and should use the static cookie entry to select the SERVER-1
    But instead, the ACE perform another load balancing decision and selects SERVER-2 !
    The page is reloaded, but the name of the user does not appear on it
    LiveHTTP Trace on Firefox :
    GET /ecom/medias/sys_master/8800775602206/Home-page-main-banners-video.jpg HTTP/1.1
    Host: ecom.test.toto.com
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.8) Gecko/20100202 (CK-IBM) Firefox/3.5.8
    Accept: image/png,image/*;q=0.8,*/*;q=0.5
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    Referer: http://ecom.test.toto.com/uk/en/home
    Cookie: STICKED-TO=R105816849;
    HTTP/1.1 200 OK
    Set-Cookie: STICKED-TO=R105816849; path=/
    Date: Mon, 18 Oct 2010 15:31:37 GMT
    Server: Apache/2.2.13 (Red Hat)
    Connection: close
    Transfer-Encoding: chunked
    Content-Type: image/jpeg
    Here we switch on HTTPS :
    https://ecom.test.toto.com/uk/en/j_spring_security_check
    POST /uk/en/j_spring_security_check HTTP/1.1
    Host: ecom.test.toto.com
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.8) Gecko/20100202 (CK-IBM) Firefox/3.5.8
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    Referer: http://ecom.test.toto.com/uk/en/home
    Cookie: STICKED-TO=R105816849; JSESSIONID=089DCF987DC03CAE0F516298EB886DAB.node1;
    Content-Type: application/x-www-form-urlencoded
    Content-Length: 75
    spring-security-redirect=&j_username=yves144%40yahoo.com&j_password=junon01
    Here we see cookie for the same server but for the HTTPS sticky group :
    HTTP/1.1 302 Moved Temporarily
    Set-Cookie: STICKED-TO=R355972695; path=/
    Set-Cookie: _hybris.tenantID_=""; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/; HttpOnly
    Date: Mon, 18 Oct 2010 15:31:39 GMT
    Server: Apache/2.2.13 (Red Hat)
    Location: http://ecom.test.toto.com/uk/en/home
    Content-Length: 0
    Connection: close
    Content-Type: text/plain; charset=UTF-8
    Here we switch back to HTTP :
    http://ecom.test.toto.com/uk/en/home
    GET /uk/en/home HTTP/1.1
    Host: ecom.test.toto.com
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.8) Gecko/20100202 (CK-IBM) Firefox/3.5.8
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    Referer: http://ecom.test.toto.com/uk/en/home
    Cookie: STICKED-TO=R355972695; JSESSIONID=089DCF987DC03CAE0F516298EB886DAB.node1;
    Here we see that the second server has been wrongly selected !
    HTTP/1.1 200 OK
    Set-Cookie: STICKED-TO=R105852786; path=/
    Set-Cookie: _hybris.tenantID_=""; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/; HttpOnly
    Set-Cookie: JSESSIONID=5A0F6EB8FBF63D5D0590FECEC62A302E.node2; Path=/; HttpOnly
    Date: Mon, 18 Oct 2010 15:31:40 GMT
    Server: Apache/2.2.13 (Red Hat)
    Pragma: no-cache
    Expires: Thu, 01 Jan 1970 00:00:00 GMT
    Cache-Control: no-cache, no-store
    Content-Language: en-GB
    Connection: close
    Transfer-Encoding: chunked
    Content-Type: text/html;charset=UTF-8
    http://ecom.test.toto.com/ecom/medias/sys_master/8796174057502/uk.gif
    GET /ecom/medias/sys_master/8796174057502/uk.gif HTTP/1.1
    Host: ecom.test.toto.com
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.8) Gecko/20100202 (CK-IBM) Firefox/3.5.8
    Accept: image/png,image/*;q=0.8,*/*;q=0.5
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    Referer: http://ecom.test.toto.com/uk/en/home
    Cookie: STICKED-TO=R105852786; JSESSIONID=5A0F6EB8FBF63D5D0590FECEC62A302E.node2;
    HTTP/1.1 200 OK
    Set-Cookie: STICKED-TO=R105852786; path=/
    Date: Mon, 18 Oct 2010 15:31:40 GMT
    Server: Apache/2.2.13 (Red Hat)
    Content-Length: 382
    Connection: close
    Content-Type: image/gif
    Hypothesis :
    It seems that the static entries are not considered by the ACE...

  • Problem with javascript cookies and frames in Safari

    I have a web page with 2 frames in it. One frame holds a pulldown menu for quick navigation, which changes the content in the other frame and also writes a cookie that makes that choice the default when the user comes back to the web page. My problem is that when the page that has the navigation is in frames it will not change the cookie when the navigation choice is changed. It will only change the cookie if the navigation page is displayed on its own web page (not in frames). The javascript works fine in both FireFox and Google Chrome. It's only Safari that has this problem. Is this a bug in Safari, or do I need to code this differently? I also tried putting the javascript function in the main index.html page that sets up the frames, but that didn't help either.

    HI Patrick,
    Try posting in the Apple Technoligies forums here.
    http://discussions.apple.com/forum.jspa?forumID=735
    Carolyn

  • Air + Ipad + RemoteObject problem with session cookies

    I am making Air version for IPad of a Flex application.
    My flex application needs session from an secured enterprise proxy, without that session none remoteObject requests can pass the proxy and reach blazeDS.
    My solution for flex works fine: calling an enterprise  servlet at application´s startup to obtain a cookie session. I use a POST call to the servlet using URLRequest (sending the user and password parameters), the servlet responds with  a message with a session cookie, and from that point, without me having to code anything more, my flex application get that cookie with the session that automatically is loaded in my browser cookie stack, and that transparently is used from all my subsequents remoteObjects calls in the flex application.
    In my Adobe Air Ipad version, this just does not work, the session or is not storaged or is not attached with subsequent remoteObjects requests.
    - I´m forcing request.manageCookies = true
    - I´m working with the IOS simulator (Is there any difference for cookies with a real Ipad device?)
    - I´m using Flex 4.6.0, Air 3.5, IOS 6, Ipad 3, BlazeDS 4.0, Java 6 BackEnd.
    .. What´s the problem/difference with Air+Ipad from the flex version?

    Hi BalusC ,
    Thanks for your detailed response. I have a question about this comment you noted..
    "Terrible. Just keep the bean request scoped. "
    I changed the bean to request and now have this issue.
                <rich:dataGrid id="membersInZipcode" value="#{membersInZipcode.arrayListOfSearch4Member}"
                            var="membersInZipcode" columns="5" elements="20">                       
                <f:facet name="footer">
                    <rich:datascroller></rich:datascroller>
                </f:facet>
            </rich:dataGrid>
            </h:form>  I am using a request bean to hold the search parms that loads the bean. This works great.
    The problem is when I use the rich:datascroller for the next page.
    It goes back to the bean and the request scope bean is empty. This holds the search values.
    How do I put this back into the request after each process??
    Question 2..
    "Those settings only applies on the current request, i.e. the JSP file itself. Images are obtained by separate and independent requests. You need to set the headers on those requests as well. You can use a filter for this."
    I have never set a filter ...how do I do it? Do you have a link for an example of this filter setup?
    Thanks Again
    Phil

  • Problems with Arrowpoint cookies for clients behind a Proxy

    I have in a WebSite clients being load balanced using Arrowpoint cookies to a virtual Server. The CSS load balance between three Apache real servers.
    I have some clients that are behind some kind of Proxy Cache and I have seen with a sniffer that the proxies causing the problem Re-use proxy to our server connections for different requests for multiple clients.
    Then, as I understand the CSS make the forwarding decission based on the cookie of the first request for the first client behind the proxy after establishing the HTTP connection, but when there is a request from other client using this same connection (that must be forwarded to other real server) the request is forwarded to the original web server and fails because we need sticky connections.
    I thought that this wasn't correct but I have read some documents that say that this is called a Proxy role as a "connection cache". Then my question is if there is any workaround for this problem.
    Thanks

    I believe your problem is that the proxy open a few persistent connections with the CSS and loadbalance your client's request over them.
    Once the CSS has associated a connection with a service, it does not look into the request anymore.
    The solution is to disable persistence on the CSS with the command 'no persistent' and 'persistence reset'.
    Find more info at :
    http://www.cisco.com/en/US/products/hw/contnetw/ps789/products_tech_note09186a0080093e06.shtml#crp
    Gilles.

  • Is there a problem with the cookie settings in Safari 6?

    Hoping someone can help me... I run a Shopify ecommerce store and am getting inundated with Safari customers complaining about their shopping carts being emptied before they have completed their shopping.  Shopify have washed their hands of the problem, claiming that it is the cookie settings in Safari.  This has never happened before (I have Safari 5 on my Mac and it works perfectly fine). Shopify has told me I need to tell all my customers to change their cookie settings which is mission impossible - most of them wouldn't even know what cookies are let alone be willing to start playing around with their settings.  And what about all the customers I'm losing who aren't complaining to me?  Those who are just getting peeved off with my webstore not working and shopping elsewhere? Please tell me this is a bug that Safari are working on?  I'm pretty lost as to what I can do to fix the problem? 

    Hi Andy, I do have my own domain name - organicexpress.co.nz
    I can't see any links for yoursitename.myshopify.com/somepage though, they seem to all be organicexpress.co.nz/somepage however when I first set up my shopify site it was organic-express.myshopify.com. I thought it might be the cart page still set at the shopify domain but it doesn't seem to be.
    The thing that is puzzling me most is that this problem only began happening about 4-5 weeks ago.  Prior to that, my regular customers who use Safari weren't having any problems.  Another thing too, sometimes it does work - perhaps if the customer completes their order under a certain time frame or perhaps only purchases a few items?  Most of my customers buy 15+ items per order.

  • Problems with Arrowpoint Cookies

    I have a CSS 11503 set up in a DMZ that is load balancing 2 Netsilica proxies. All worked ok when I used Sticky Scrcip.
    We are also using Akamai externally, they said clients ip may change during use. Tried to use arrowpoint cookies.
    service
    strig xyz
    content rule
    balance aca
    advance balance arrowpoint-cookie
    arrowpoint-cookie expiration 01:00:01:01
    this seems to bounce the users from proxy to proxy.
    Need sticky non source IP , any ideas welcome
    Thanks
    Steve

    Steve,
    first, if you can't use sourceip for stickyness there is no other solution than cookie.
    Arrowpoint cookie should work.
    Veriy with a sniffer trace if the client is sending the cookie with each request.
    Some browser disable cookies.
    Gilles.

  • I am having problems with down loading items on Adobe Reader and have been told that I need to update my Adobe Reader. I have tried this but I am being told that I need to temporarily disable Firefox to do this?

    How do I disable Firefox to download Adobe Reader

    There may be a problem with the cookies that stores the "remember me" details. Try deleting cookies for live.com (including account.live.com and login.live.com cookies), for details on doing that see the [[Deleting cookies]] article.

  • I am having problems with hotmai and have been told to optimize my browser. How do I do this?

    When I try to get into Hotmail, I am suddenly being required to sign in each time, even if I've been on that site 20 times before that day. Each time I sign in I check the boxes that tell it to remember me & my password but it won't. I wrote Hotmail help forum & they told me to try optimizing my browser first to try to solve this. I don't know how to. Help!

    There may be a problem with the cookies that stores the "remember me" details. Try deleting cookies for live.com (including account.live.com and login.live.com cookies), for details on doing that see the [[Deleting cookies]] article.

  • Cookie Problem  With JSP and Tomcat

    I have a tiny web application developed for my project thing.
    I am facing a problem while maintaining sessions with Cookie. I use Tomcat 3.2.1 Web Server and JSP 1.2 Specifications for my web application.
    I have created a page which creates a cookie and stores it in the client's PC, so when the same client visits the site, he can be remembered. Now while surfing the site in the same session, the site remembers the client. But once the client closes the browser and tries connecting to the site, he cannot be remembered. So I took a look into Temporary Internet Files of the client PC and found no cookie there. So where the cookie gets created and why does it disappears with the session. I have set a time limit of 1 year in the cookie.
    Now is that a Problem with Tomcat or with the configuration settings of IE in the client PC?? Or something else???
    Reply me Soon...

    Thanks for your reply.
    following is the code for how do i create a cookie...
    <%
         String custno = custBean.createPreferred();
         Cookie c = new Cookie("pc", custno);
         c.setVersion(1);
         c.setPath("/");
         c.setComment("PreferredCustomer");
         c.setDomain("think_machine");
    //think_machine is the name of the Web Server(Tomcat)
         c.setMaxAge(365*24*60*60);
         response.addCookie(c);
    %>
    And the code to read a cookie is..
         String custID = null;
         Cookie[] cookies = request.getCookies();
         for(int i = 0; i < cookies.length; i++)
              if(cookies.getName().equals("pc"))
                   custID = cookies[i].getValue();
                   break;
    One more thing I would like to let you know, that i access this from the same PC on which the Web Server is installed. Means the Server and the client are both one and the same PC.

  • I just upgraded to FF 7 and now when I open Firefox none of my history or cookies have been saved. I have checked in options that Firefox will remember my history and all relevant settings but it is not doing it. Is there a problem with this on FF7?

    I just upgraded to FF7 & now when I open it none of my history or cookies are saved. I have checked in options that Firefox will remember my history and all relevant settings but it is not doing it. Is there a problem with FF7?

    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot.
    See also "Help About".
    *Tap the Alt key or press F10 to show the Menu bar.
    In current Firefox releases (29 and later) the orange Firefox menu button has been replaced by the three-bar Firefox Menu button at the far right end of the Navigation Toolbar and this button is always visible, whether you have the menu bar visible or hidden<br>A consequence of this location is that you no longer can hide the Navigation Toolbar
    *There is a star like button next to the search bar on the Navigation Toolbar to bookmark the current web page and a "Show your bookmarks" button next to it to open the Bookmarks in a drop down menu.<br>You can find "Show All Bookmarks" to open the Bookmarks Manager (Library) at the bottom of this drop-down list
    *If you bookmark a page then "Bookmark This Page" in the Bookmarks menu changes to "Edit This Bookmark"
    *You can make the title bar visible via the "Title Bar" button at the bottom left in the Customize palette window
    It is still possible to have the menu bar visible via the right-click context menu of a toolbar to have menus like the File menu with Print (Ctrl+P) and Print Preview and the Bookmarks menu available.
    See also:
    *https://support.mozilla.org/kb/how-to-make-new-firefox-look-like-old-firefox
    *https://support.mozilla.org/kb/common-questions-after-updating-to-new-firefox
    *https://support.mozilla.org/kb/learn-more-about-the-design-of-new-firefox

  • AVG problem with sqlite tracking cookies

    Every time I open Firefox I get an AVG warning about tracking cookies in Sqlite. I can't clean these cookies. AVG deny that there is a problem with AVG, so how can I fix this? I'm fed up of it and on the verge of going back to IE just so that I can open my browser without a stupid banner coming up.

    I too have been exeriencing this problem for the last week now, and am getting extremely frustrated with having to delete the cookies EVERYTIME i open the Firefox browser. Sometimes AVG detects two of the sqlite tracking cookies, at the same time. When prompted to clean them, i have, only for AVG to give me a message that it has been unable to disperse of them. Then, i tried adding them to the exceptions list so that they could be ignored, again, they still kept popping up. I've opened up the location they are too be found in (AppData\Roaming\Mozilla\Firefox\Profiles\zof3e2jk.default\cookies.sqlite), and deleted it myself. This is however, all of the login details history you have kept on websites, as when i restarted Firefox, i had to retype my login details on every website i visit. I've never had problems with AVG until now, but from what i have read on the AVG forum, it is yet another bug with the latest 2011 version. My advice...stick with Firefox, and get another anti-virus program until avg can provide a more stable version.

  • Clearing cookies a real problem with iOS

    When clearing cookies in a browser on a Mac or PC, the user can select which websites are to have their cookies cleared. With iOS it's all or nothing. Clicking "clear cookies" clears all cookies for all sites. THAT is a problem.
    I ran into a problem with PayPal. I was developing a test site for local charities to accept donations using PayPal. PayPal offers the user the choice of paying with PayPal or a credit card. Once you make your choice, you are stuck with that choice every time you attempt to donate since your choice is remembered in a cookie. I contacted PayPay to complain. I was told nothing could be done, it uses cookies for convenience and security. My "solution" was to delete cookies for the site and restart a session. There are two problems with that. First, that advice would have to be passed on to every donor and many donors likely do not know how to clear cookies on their iPhones or iPads. The second is the all or nothing problem. Blowing away cookies to satisfy PayPal blows away information like my preferences for BestBuy, Bank of Nova Scotia, etc. Because of a dumb, dumb decision on implementing its site by Paypal its solution is to seriously inconvenience users.
    Yesterday, I updated my Scotiabank app on my iPhone and iPad. Now I cannot access the bank with the mobile app. I called tech support and, guess what, the solution is to clear cookies. Once again I pointed out that clearing cookies on iOS is an all or nothing affair and I am unwilling to blow away all cookies to overcome a problem introduced by Scotiabank with its updated app. I gave the examples that my card number will be blown away for every banking and financial site, that shopping site preferences will be gone, etc.
    The real sollution to the problem is site-by-site cookie deletion for iOS. Without that, blowing away cookies to satisfy one website's requirement impacts negatively on all the other websites that use cookies. A fix is needed. App developers have to realize this problem too.
    Message was edited by: gregfromdeep river

    thanks, have done that
    posted here because this is an issue that affects EVERY iOS user and raising the issue with iOS users, as well as with Apple, is important

  • I have a problem with bookmarks, all the time when I start Firefox the bookmarks is deleted, or not there. And I need to import them again and again, also the cookies, cash are deleted.

    The bookmarks, cookies, history all the time are deleted when I start Firefox and I need to import them all the time.
    I have version 3.6.12

    This can be a problem with the file places.sqlite that stores the bookmarks and the history.
    See:
    * http://kb.mozillazine.org/Bookmarks_not_saved
    * http://kb.mozillazine.org/Locked_or_damaged_places.sqlite

Maybe you are looking for

  • Cross company sales with multiple operating concern

    Hi all, I'm going to implement cross company sales in a system that is already live. I think that it really fit to the new requirement of the client , that want to allow the possibility of creating a sales order from sales organization A1 of company

  • Running servlet in tomcat 4.1.18

    Hi, I am new to servlet and am having trouble running a simple servlet on tomcat 4.1.18. I keep getting an Error 404 resource not found. will someone show me how to run servlet on tomcat?Please. Thanks

  • Workschedule - linked to company code

    Hi Gurus, Working on a support project, client has given the details of the company code and name of the workschedule, which is to be copied to a different company code.. How can i get the details of the groupings which ls linked to the company code

  • E72 home screen icons

    Hi Folks I got confused with a few icons appearing at the central bottom of my E72's home screen. I know the Bluetooth icon in the middle. I guess the icon at right is for Internet Call ready as it just appeared after I successfully configured VoIP o

  • Uncompressed FW 800 editing with a hitch

    I feel like I've achieved the impossible, and I'm a bit confused. Over a year ago I upgraded my system with a new G5 (dual 2ghz) PCIe computer, a Decklink Extreme card, and what I believed to be a G-Raid 500Gb drive w/ fw 800. Some of this ancillary