About cookies in french

I opened a new mail address on gmail and I cannot open my "ancient" gmail and no more my "new" gmail. May be it is a question about cookies and I would like to get a support in french.
Thanks a lot
Jean Rault

A cookie is a piece of information in the form of
name and value pair for ex
place "usa" that holds information.
Now the cookie is sent to the user by the server and stored in a file. So that whenever information is needed by the server it reads that from the file in your machine.
In the above case if the cookie that the server sent you
usa value for the cookie with name "place" the server redirects u to a site in usa if it found place was usa, or other country based on what info was there
A cookie is a means of maintaining session. Session means that when u log on to a bank account web site then it has to display info about u in all screens, so it has to somehow know in all screens that an user with your account number is logged on.
So when u log to a bank system and provide ur account number then the server validates it and after verifying send u a page and in the header add the cookie with information about ur account number, so that when u access the next page in ur bank website it has ur information, transactions, withdrawals and so on.
Hope it helps

Similar Messages

  • Can't load Netflix - Firefox says something about cookie problem and recommends try again button. ("The page isn't redirecting properly Firefox has detected tha

    Can't load Netflix - Firefox says something about cookie problem and recommends try again button. ("The page isn't redirecting properly Firefox has detected that the server is redirecting the request for this address in a way that will never complete. This problem can sometimes be caused by disabling or refusing to accept cookies.)" Hit the try again button repeated ly - nothing???

    I decided to give Netflix a call about this problem.
    On a recording while waiting for a support rep, it said if you're having problems logging in to go to:
    http://www.netflix.com/clearcookies
    It works for me. Now I have to logon everytime I go to their site though versus it had kept me already logged in before this problem.
    I will be using that link to get to their site until they get it fixed.

  • Looking for a good tutorial about cookies

    Hello
    I'm looking for a good tutorial ( and clear enough for newbie like me ) on how to make 1.. or 2 cookies and some tips about how to make it.
    - I need to have a cookies that record and store the user preference if he is on an english browser but wish to see the french version of my website ( assume i have a browser language detection script ) and then again turn off the language detection script of the french page if you are on an english browser ( or the other way, if you choose the other way )..
    - I need to have a cookies that record the fact than if you are a mobile, you came on the webpage ( and got redirected the first time to the mobile page ) and that if you choose to click the button " go to regular website", it somehow turn off the mobile detection script on the main page so that the user will be able to navigate the real website if he want to.
    I have absolutly no idea how to make cookie, and even with google, i get basic information how to make cookie, call them, erase them, but not how to make them work like a twin with the other script, and not what to put inside a cookies... in short i know nothing about that ... yet....
    I'm not sure if i am clear, anyway any help, or tip's will be greatly appreciated. Thanks !
    I would prefer Java or Html tutorial for cookies if possible.
    Message was edited by: Chorale0001

    Client side
    I am a novice, but not a rookies.
    I did www.episodesoft.com It is my first project that so many feature for me. Previously i was only doing the preparation for another man who was scripting, but now i'm require to do all. My studying about html/java/css were only an introduction. I'm mainly self-learning and already learned a lot on this website.
    By the way, the Cookies are for this website because right now, it detect the mobile and redirect you. It will also detect ( script ready but disabled ) the language to redirect you to the english version of the website ( currently under construction ).

  • About creating a french community of Archers...

    Hi,
    we are 2 new archers who want to create a french community to support Arch Linux. We would like to make a site with docs, FAQs, Tips and a forum. We would like to translate the official documentation too and make an irc channel to help new users. Are you ok with this idea ? and Could it be possible to be hosted by www.archlinux.org with an adress like fr.archlinux.org for example ?
    Please, tell us what you think about this idea.
    Thank you. 

    I could help you out with translation and so on. Just,  my french isn't perfect, as I've only been living in a frenchspeaking region for 3 years, but we could always try.
    On the hosting issue: I think it would be better to separate it from archlinux.org as it should be a user community, ergo inofficial. So, if we'd fuck up something, it wouldn't put down the whole archlinux-project!
    We could try to get on sourceforge (they host a similar project for slackware) or we could try to get a server in germany, as they are cheap as hell over there (30€/mo for an XP2000MHz & 80GB traffic).
    Anyway, feel free to contact me at greg at grabinski dot ch or icq #60814240 or msn [email protected] or yahoo 'schumithree'
    Au revoir, mes amis!

  • Strange question about cookie

    jsp page 1 create a cookie and send it to browser,then forward to jsp page 2,
    jsp page 2 can read cookie successfully,and jsp page 2 link to jsp page 3,
    but in jsp page 3,cookie can't be read yet,why?
    Anybody have experience like to tell me?

    Thx.I have solved the problem.
    The reason jsp page 3 can't read cookie is cookie has the
    property "path",the application write and the application read
    the cookie must be at the same path,otherwise it failed to read.
    If they are at the different path,you must use cookie.setPath()
    method to set the path which the application read is at before
    you write the cookie.
    The other thing I found is forward() will not change the path,
    so why the jsp 2 can read the cookie.
    once you added a cookie to your response, then any
    resource in your application should be able to read it
    and retrieve it's value, because actually it is going
    to be stored at the client local drive. maybe you
    should be sure about the age of the cookie i.e
    Cookie userCookie = new Cookie("cookiename",
    "cookie_value");
    userCookie.setMaxAge(60*60*24*365); // 1 year,
    setMaxAge in seconds
    response.addCookie(userCookie);
    so maybe if you try to set the max age of the cookie
    it would work
    regards

  • I have been using google calendar with firefox for a while and now it won't open the page and says something about cookies...Please help! I need this for my business. I don't like internet explorer, but that browser can open my calendar so I have to use

    The page isn't redirecting properly
    Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
    * This problem can sometimes be caused by disabling or refusing to accept
    cookies.

    "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    See http://kb.mozillazine.org/Clearing_the_cache and http://kb.mozillazine.org/Cookies
    See also http://kb.mozillazine.org/The_page_is_not_redirecting_properly

  • 3 question about cookie and session please.

    1. I know that session automatic use in JSP by default and save session id in cookie. I have code that show all cookie on my computer
    <%
         Cookie [ ] listcookie = request.getCookies();
         Cookie mycookie = null;
         for(int i=0; i<listcookie.length; i++)
              mycookie = listcookie;
              out.println("<tr><td> " + mycookie.getName() + "</td>");
              out.println("<td> " + mycookie.getValue() + "</td></tr>");
    %>
    When I first run this code it now show cookie. But when I click refresh it show session cookie. Why it not show session cookie at first time?
    2. I use tomcat on window. Is session on server is save as file. Which directory it save?
    3. I use method getCreationTime() to check first create session time and method session.getLastAccessedTime() to check last access session time. I have to file
    showsession1.jsp
    first time create is <%=session.getCreationTime()%>  <br>
    last time access is <%=session.getLastAccessedTime()%> <br>
    <a href="showsession2.jsp"> showsession2.jsp</a>showsession2.jsp
    first time create is <%=session.getCreationTime()%>  <br>
    last time access is <%=session.getLastAccessedTime()%> <br>When I open browser and run showsession1.jsp first time create and last time access is equal when I click link to showsession2.jsp it also equal. Why it still equal because it is second time that I access JSP file? It change when I refresh file showsession2.jsp

    1. When I first run this code it now show cookie. But
    when I click refresh it show session cookie. Why it
    not show session cookie at first time?
    When you first request the JSP, the session cookie does not exist on your PC and so your browser cannot supply it which means that the JSP cannot display it. The session cookie is created when the JSP returns the response to the first request. The browser can then send the cookie on subsequent requests.
    2. I use tomcat on window. Is session on server is
    save as file. Which directory it save?How the server saves the session info is server dependent and it's unlikely you will be able to view it.
    3. I use method getCreationTime() to check first
    create session time and method
    session.getLastAccessedTime() to check last access
    session time. I have to file
    showsession1.jsp
    When I open browser and run showsession1.jsp first
    time create and last time access is equal when I click
    link to showsession2.jsp it also equal. Why it still
    equal because it is second time that I access JSP
    file? It change when I refresh file showsession2.jspProbably showsession2.jsp was already in the browser cache and so there was no request to the server until you refreshed

  • Question about cookies in OWA package and JSP

    Hi all!!
    Can I get in a JSP page a cookie set in a PL/SQL procedure?
    I set a cookie in a PL/SQL procedure (Using the OWA package).
    Later (a few pages forward), I try to get it using
    HttpServletRequest.getCookies in a JSP page.
    When I see the list of cookies, my cookie is not there!
    How can I achieve this?? is this possible??
    Thanks!

    Hi,
    Open your ee/web-inf/web.xml file and add these lines.
    <servlet>
    <servlet-name>
    Hello
    </servlet-name>
    <servlet-class>
    hi.Hello
    </servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>
    Hello
    </servlet-name>
    <url-pattern>
    /Hello
    </url-pattern>
    </servlet-mapping>
    Start the tomcat and give the URL,
    http://127.0.0.1:8080/ee/servlet/Hello
    Hope this helps.
    If you don't have a web.xml file there, you can add these lines in your Tomcat\conf\web.xml file.
    Sudha

  • Need Information about cookies

    Hi I am developing a website.
    Now I want to put Remember me in the login page. I have following queries.
    1) Cookies can be created, read through javascript and and also through JSP, which one I should opt for?
    2) Can cookies created by JSP can be read by javascript and viceversa?
    3)Now If a user request some jsp page say cookieInfo.jsp which ha a code request.getCookies ();, what happens actually, Is it right what I am thinking?
    client sends request ------> server fetches the cookies on user webbrowser/computer -----> go back -----> processes some more operations ------> returns HTML page to the user.
    Please explain me this. Also if there are some tutorial on this remember me module please tell me
    Thanks
    Venkat

    venkat_walking wrote:
    Hi I am developing a website.
    Now I want to put Remember me in the login page. I have following queries.
    1) Cookies can be created, read through javascript and and also through JSP, which one I should opt for?create /read trough jsp : true , opt for this one, it's the normal use of cookies
    read trough jsp : true
    create trough javascript :possible, but I've never need it !
    2) Can cookies created by JSP can be read by javascript and viceversa?cookies created by JSP can be read by javascript
    >
    3)Now If a user request some jsp page say cookieInfo.jsp which ha a code request.getCookies ();, what happens actually, Is it right what I am thinking?
    client sends request ------> server fetches the cookies on user webbrowser/computer -----> go back -----> processes some more operations ------> returns HTML page to the user.Not correcte! Clients sends cookies on the request headers
    eg.
    Cookie     JSESSIONID=c0a8640f231d524e052cefde435bb510c57027c7c53d; anotherCookie=Me>
    Please explain me this. Also if there are some tutorial on this remember me module please tell me
    If user check the remeber me checkbox then send a cookie that hold a value (rememberme = true)
    next time before redirecting user to login page check if there is a cookies wich name is rememberme and value is true
    Thanks
    Venkat

  • When i try to submit my podcast to itunes store i get 11111 error about cookies

    Every time  i try to submit my podcast to the itunes store i get an error that say this
    we could not complete your itunes store request. an unknown error occurred (11111)
    there was an error in the itunes store please try again later.
    so i try again and hit continue then it takes to me a page and says this
    your request could not be completed.
    make sure your computers date is set correctly and that it accepts cookies from the itunes music store.
    for more detailed solutions to resolve this issue click more info.
    i've tried clicking on more info but cant not find any solution to my problem.
    i do have itunes 10.6.3.25

    Someone else who had this odd problem found they were able to submit at
    https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/publishPodcast
    but do check that you aren't blocking cookies.

  • Did you know about Flash Cookies?

    I know about regular cookies, and delete them... but had no idea there was such a thing as a Flash Cookie
    Read about 1/2 way down here http://windowssecrets.com/comp/100805

    Rod,
    Since you're a confessed geek with some actual coding chops, I'm sure you'll understand the hair I'm about to split here. Hang on a moment while I grab my axe...
    Even with your page jumps, the cookie isn't doing anything. It's just a text file named after a snack. What's causing your page to jump, browsers to redirect, and the moon to shift its gravitational field three degrees to the north is the code in the web page that's being loaded. True, it may look in the text file to see what IP address to report to, but the connection, handshaking, transfer of data and powering up of lasers are all on your web page (or the server side code being executed on its behalf). The cookie is little more than a poorly dressed informant hanging out on the street corner waiting to pass along tidbits of information when the right person asks. Doesn't exactly make it a savory character (name notwithstanding), but it's a harmless one nonetheless. If it's evil you seek, you'll find it in the web site, not the cookie. And that's why I never understood the religious fervor against cookies.
    Now, if you want a truly dangerous leave behind, at least on Windows, ActiveX controls are your guys. They're really just glorified COM objects, and thus have complete access to the entire Windows API. Give me permission to install an ActiveX control on your machine and I can rewrite your file system, start and stop services, reboot your computer, or just turn the screen a hyperintelligent shade of the color blue because it amuses me. Anything that can be done in Windows programming is essentially available to the ActiveX control.
    Of course, browsers got hip to this years ago, and now the default security settings for ActiveX are to not install automatically, or at least to query the user first. Or, as it's configured on my machine, feel free to install if you can make it past this shotgun pointed at your head. Maybe that's why there's not as much of a flap about ActiveX as there is about cookies. Because they're truly dangerous, the browser community took it seriously.and now only someone with a death wish allows a web page to install an ActiveX component.
    And overall, this is kinda my point. The much maligned cookie gets a bad rap while in truth it's the web page staring you right in the face that's preparing to rob, rape and pillage. But then, misdirection has always been a classic tactic in warfare.

  • Few questions about apex + epg and cookie blocked by IE6

    Hi,
    I would like to ask a few questions about apex and epg.
    I have already installed and configured apex 3.2 on oracle 10g (on my localhost - computer name 'chen_rong', ip address -192.168.88.175 ), and enable anonymous access xdb http server.
    now,
    1. I can access 'http://chen_rong' , 'http://localhost' , 'http://192.168.88.175' without input username / password for realm 'XDB' in IE6;
    2. I can access 'http://localhost/apex/apex_admin' , 'http://192.168.88.175/apex/apex_admin' , and I can be redirected into apex administation page after input admin/<my apex admin password> for realm 'APEX' in IE6;
    3. I can access 'http://chen_rong/apex/apex_admin' in IE6, but after input admin/password , I can not be redirected into administation page, because the cookie was blocked by IE6.
    then, the first question is :
    Q1: What is the difference among 'http://chen_rong' , 'http://localhost' , 'http://192.168.88.175' ? I have already include site 'chen_rong' into my trusted stes! why the cookie was blocked by IE6. I have already tried firefox and google browser, both of them were ok for 'chen_rong', no cookie blocked from site 'chen_rong'!
    and,
    1. I have tried to use the script in attachment to test http authentication and also want to catch the cookie by utl_http .
    2. please review the script for me.
    3. I did:
    SQL> exec show_url('http://localhost/apex/apex_admin/','ADMIN','Passw0rd');
    HTTP response status code: 401
    HTTP response reason phrase: Unauthorized
    Please supplied the required Basic authentication username/password for realm XDB for the Web page.
    Web page http://localhost/apex/apex_admin/ is protected.
    MS-Author-Via: DAV
    DAV: 1,2,<http://www.oracle.com/xdb/webdav/props>
    Server: Oracle XML DB/Oracle Database
    WWW-Authenticate: Basic realm="XDB"
    Date: Tue, 04 Aug 2009 02:25:15 GMT
    Content-Type: text/html; charset=GBK
    Content-Length: 147
    ======================================
    PL/SQL procedure successfully completed
    4. I also did :
    SQL> exec show_url('http://localhost/apex/apex_admin/','ANONYMOUS','ANONYMOUS');
    HTTP response status code: 500
    HTTP response reason phrase: Internal Server Error
    Check if the Web site is up.
    PL/SQL procedure successfully completed
    SQL> exec show_url('http://localhost/apex/apex_admin/','SYSTEM','apexsite');
    HTTP response status code: 401
    HTTP response reason phrase: Unauthorized
    Please supplied the required Basic authentication username/password for realm APEX for the Web page.
    Web page http://localhost/apex/apex_admin/ is protected.
    Content-Type: text/html
    Content-Length: 147
    WWW-Authenticate: Basic realm="APEX"
    ======================================
    PL/SQL procedure successfully completed
    my second questions is :
    Q2: After I entered into realm 'XDB', I still need went into realm'APEX'. how could I change the script show_url to accomplish these two tasks and successfully get the cookie from site.
    the show_url script is as following:
    CREATE OR REPLACE PROCEDURE show_url
    (url IN VARCHAR2,
    username IN VARCHAR2 DEFAULT NULL,
    password IN VARCHAR2 DEFAULT NULL)
    AS
    req UTL_HTTP.REQ;
    resp UTL_HTTP.RESP;
    name VARCHAR2(256);
    value VARCHAR2(1024);
    data VARCHAR2(255);
    my_scheme VARCHAR2(256);
    my_realm VARCHAR2(256);
    my_proxy BOOLEAN;
    cookies UTL_HTTP.COOKIE_TABLE;
    secure VARCHAR2(1);
    BEGIN
    -- When going through a firewall, pass requests through this host.
    -- Specify sites inside the firewall that don't need the proxy host.
    -- UTL_HTTP.SET_PROXY('proxy.example.com', 'corp.example.com');
    -- Ask UTL_HTTP not to raise an exception for 4xx and 5xx status codes,
    -- rather than just returning the text of the error page.
    UTL_HTTP.SET_RESPONSE_ERROR_CHECK(FALSE);
    -- Begin retrieving this Web page.
    req := UTL_HTTP.BEGIN_REQUEST(url);
    -- Identify yourself.
    -- Some sites serve special pages for particular browsers.
    UTL_HTTP.SET_HEADER(req, 'User-Agent', 'Mozilla/4.0');
    -- Specify user ID and password for pages that require them.
    IF (username IS NOT NULL) THEN
    UTL_HTTP.SET_AUTHENTICATION(req, username, password, 'Basic', false);
    END IF;
    -- Start receiving the HTML text.
    resp := UTL_HTTP.GET_RESPONSE(req);
    -- Show status codes and reason phrase of response.
    DBMS_OUTPUT.PUT_LINE('HTTP response status code: ' || resp.status_code);
    DBMS_OUTPUT.PUT_LINE
    ('HTTP response reason phrase: ' || resp.reason_phrase);
    -- Look for client-side error and report it.
    IF (resp.status_code >= 400) AND (resp.status_code <= 499) THEN
    -- Detect whether page is password protected
    -- and you didn't supply the right authorization.
    IF (resp.status_code = UTL_HTTP.HTTP_UNAUTHORIZED) THEN
    UTL_HTTP.GET_AUTHENTICATION(resp, my_scheme, my_realm, my_proxy);
    IF (my_proxy) THEN
    DBMS_OUTPUT.PUT_LINE('Web proxy server is protected.');
    DBMS_OUTPUT.PUT('Please supply the required ' || my_scheme ||
    ' authentication username/password for realm ' || my_realm ||
    ' for the proxy server.');
    ELSE
    DBMS_OUTPUT.PUT_LINE('Please supplied the required ' || my_scheme ||
    ' authentication username/password for realm ' || my_realm ||
    ' for the Web page.');
    DBMS_OUTPUT.PUT_LINE('Web page ' || url || ' is protected.');
    END IF;
    ELSE
    DBMS_OUTPUT.PUT_LINE('Check the URL.');
    END IF;
    -- UTL_HTTP.END_RESPONSE(resp);
    -- RETURN;
    -- Look for server-side error and report it.
    ELSIF (resp.status_code >= 500) AND (resp.status_code <= 599) THEN
    DBMS_OUTPUT.PUT_LINE('Check if the Web site is up.');
    UTL_HTTP.END_RESPONSE(resp);
    RETURN;
    END IF;
    -- HTTP header lines contain information about cookies, character sets,
    -- and other data that client and server can use to customize each
    -- session.
    FOR i IN 1..UTL_HTTP.GET_HEADER_COUNT(resp) LOOP
    UTL_HTTP.GET_HEADER(resp, i, name, value);
    DBMS_OUTPUT.PUT_LINE(name || ': ' || value);
    END LOOP;
    -- Read lines until none are left and an exception is raised.
    --LOOP
    -- UTL_HTTP.READ_LINE(resp, value);
    -- DBMS_OUTPUT.PUT_LINE(value);
    --END LOOP;
    UTL_HTTP.GET_COOKIES(cookies);
    dbms_output.put_line('======================================');
    FOR i in 1..cookies.count LOOP
    IF (cookies(i).secure) THEN
    secure := 'Y';
    ELSE
    secure := 'N';
    END IF;
    -- INSERT INTO my_cookies
    -- VALUES (my_session_id, cookies(i).name, cookies(i).value,
    -- cookies(i).domain,
    -- cookies(i).expire, cookies(i).path, secure, cookies(i).version);
    dbms_output.put_line('site:'||url);
    dbms_output.put_line('cookies:');
    dbms_output.put_line('name:'||cookies(i).name);
    dbms_output.put_line('value:'||cookies(i).value);
    dbms_output.put_line('domain:'||cookies(i).domain);
    dbms_output.put_line('expire:'||cookies(i).expire);
    dbms_output.put_line('path:'||cookies(i).path);
    dbms_output.put_line('secure:'||secure);
    dbms_output.put_line('version:'||cookies(i).version);
    END LOOP;
    UTL_HTTP.END_RESPONSE(resp);
    EXCEPTION
    WHEN UTL_HTTP.END_OF_BODY THEN
    UTL_HTTP.END_RESPONSE(resp);
    END;
    /

    I use oracle database enterprise edtion 10.2.0.3. I have already figured out the epg on 10.2.0.3 to support apex 3.2.
    And as I described above, the apex site works fine for ip address , and localhost. but the cookie will be blocked by IE6, if I want to access the site by 'http://computername:port/apex/apex_admin'. This problem does not occured in firefox and google browser. Could someone give me answer?

  • I installed the latest version of Firefox and now cannot pull up my Gmail account. I keep getting an error message about a cookie problem.

    I can switch to my IE site and it comes right up but never on Mozilla. I do not know a lot about cookies to try them and not cause a more serious problem.

    * http://kb.mozillazine.org/Software_Update (Software Update not working properly)
    It shouldn't be necessary to reboot the computer to complete an update.<br />
    Download a fresh copy of Firefox ([http://www.mozilla.com/firefox/all.html]) and do a reinstall of Firefox on top of the current version.<br />
    You may need to do a clean install:
    * Download a fresh Firefox copy from http://www.mozilla.com/firefox/all.html and save the file to the desktop.
    * Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    * Don't remove personal data if you uninstall the current version.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere (not in the Firefox program folder) and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.

  • Why can't I login to Firefox Accounts to set up Sync? FF30+ keeps telling me to Please enable cookies; cookies ARE enabled, already tried Safe Mode.

    Exactly what it says on the tin.
    Why can't I log-in to Firefox Accounts to set up Sync from my laptop PC? FF30+ keeps telling me to Please enable cookies; cookies ARE enabled, and I already tried Safe Mode. This has been happening ever since the new Sync was implemented, so I'm guessing around FF 30. I am now up to FF version 34 and it still isn't working. I have not been able to sync since the "update."
    Problem #1: Going to about:accounts and clicking on the blue Get Started button opens a blank screen. There isn't even a prompt about cookies. It's just blank. Screen shot attached.
    This is before add-ons are disabled. If they're disabled in Safe Mode, we go to Problem #2.
    Problem #2: I skimmed a thread (https://github.com/mozilla/fxa-content-server/issues/1017) and tried logging in to Sync through accounts.mozilla.com instead, but though the screen doesn't turn blank while add-ons are still enabled, the "Enable cookies" warning is as far as I can get. Going to about:accounts in Safe Mode has the same result. I have cleared all my cookies and my cache, restarted FF multiple times with and without add-ons enabled, and still nothing. I have browsed this support forum for similar questions, and while other people are having the same issue, none of the other threads have been resolved yet. Several FF versions later, this is way too long for this issue to still be unresolved.... Screen shot attached.
    I know where Firefox's cookie manager is located, and I have toggled all the settings. I even allowed third-party cookies (though I really shouldn't since they're pointless). No difference. Screen shot attached.
    I looked in about:config and searched for the word "cookie" in the names, but even doing that is pointless for me since I'm not a programmer and hence ignorant in what all these settings actually mean. Screen shot attached.
    I'm at the end of my rope here, guys. It's been months. A year. Maybe more than a year; I don't even know anymore. I just got a new device and I don't want to add all my Firefox information to it one-by-one. There doesn't seem to be any way to contact Mozilla directly, so.... Someone help, please....

    ''guigs2 [[#answer-672422|said]]''
    <blockquote>
    NoScript stops cookies, please disable this addon/extension as well as make sure that the language en-us is installed.
    # 1) Open up the Firefox Preferences tab. You can do this by typing about:preferences in the URL bar.
    # 2) Click "Content"
    # 3) Next to "Languages", click "Choose"
    # 4) Select "English/United States [en-us]", click "Add"
    # 5) re-open "about:accounts"
    # 6) Click "Get Started"
    </blockquote>
    Thank you for replying. Unfortunately, I already did all of these things. As you can see from the below screenshot, the language is already set. Also, this screenshot was taken in Safe Mode, so NoScript is not enabled. About:accounts still says I need to enable cookies for some reason. So, this solution didn't work....

  • Lack of applications in french in AppWorld

    Hi there,
    I think there's a lack of applications for french-speaker users. Compared to Android or Apple, there's few or no applications in french, espacially about books and french dictionaries like Larousse or Le Petit Robert. Is it possible for you, in RIM, to resolve this problem in a long term?
    Thanks!

    Think I had read a thread on SAME Subject more than a year back... but you need to contact Nokia Store support for this suggestion..as this being an User-to-User Forum, you will not get an official responce to this..
    BTW.. just a work-around (...surely will need some effort)..If you want to know how many pages are there under a particular category.. Select the catagory.. Go to the 2nd page by clicking NEXT.. Then in the address bar change the last digit 2 to say 15..and it will directly take you to Pg.15.. (Refer Attachment 1). Change it to 25 and it will directly take you to Pg.25 (Refer Attachment 2). If there are less no. of pages in that catagory.. you will see 'There are No Items available....' .. and so on..
    Attachments:
    Nokia Store.png ‏626 KB
    Nokia Store1.png ‏512 KB

Maybe you are looking for

  • Frame won't open a file, but will open the MIF file.  Has anyone seen this?

    With FM 9, I have a 2-page landscape file. The first page is Adobe Illustrator *.ai art. The second page is text with a couple of JPGs. I was able to open the *.fm file for a long time, and then Frame started complaining and crashing. A friend can op

  • Commitment item - budget

    Hi, I have a purchase order for 100 euro. THis purchase order generates commitment item for 100. My original budget is 200. After purchase order, my budget became 100 IF I post GR and IR for 80 euro, is there any way for change the budget from 100 to

  • Add details to a form

    I've got a main form and need the user to be able to list details IF DESIRED. I'll need to report on the details. What's the best way to handle this? I've been trying my novice demise with tabular forms and master detail but can't get either to do wh

  • PLEASE HELP !  Mail keeps quitting unexpectedly

    seriously my mail won't stay opened for more then two seconds, i can't view any previouse mail inboxes, outboxes...ect. Its not such a huge problem because I can still access my aol account through Safari...but any help will be greatly appreciated. I

  • Airport express is missing in itunes 10.6.1.7

    System information: Win 7 Ultimate iTunes 10.6.1.7 Airport Express 802.11 G The airport is not recognized in iTunes, however it is recognized by my iPad and the Airport utility. I have reloaded iTunes and reset the Airport Express. No luck. Any thoug