Ask a Question related to PERL Beginners, Design and Development.

  1. #1

    Default cookies

    i can't get all of the unwanted cookies off my hard-drive.
    the Internet Explorer menu doesn't take care of a whole
    bunch of them. HELP! i can't take the pop-ups anymore!
    bill Guest

  2. Similar Questions and Discussions

    1. Cookies in FMS
      In my application Flash Media Server 2 makes HTTP requests to retrieve configuration data. Page that is requestet sets some cookies. I was very...
    2. Help with cookies
      I'm having trouble accessing my cookies after they're set. If I do a response.write on the cookie value immediately after it's set in code, it...
    3. php cookies
      Is it possible to set php cookies to delete after a period of user inactivity & if so how?
    4. PHP and cookies
      ok I have a question maybe this might help if you have $_COOKIE that is a session cookie in path '/' you also have a cookie $_COOKIE that is a...
    5. cookies under php 4.06
      okay, i know this is stupid, and i'm gonna kick myself when someone points out the obvious... i've just put a site online, and found the server's...
  3. #2

    Default Re: cookies

    Have you ran a virus checker, trojan program, ad program such as spybot or
    adaware?



    "bill" <billmiguk@yahoo.com> wrote in message
    news:00cf01c347d0$67058310$a401280a@phx.gbl...
    > i can't get all of the unwanted cookies off my hard-drive.
    > the Internet Explorer menu doesn't take care of a whole
    > bunch of them. HELP! i can't take the pop-ups anymore!

    Donald Link Guest

  4. #3

    Default Cookies

    I am having a problem reading cookies.

    Here is the code I use to write them:
    Dim cookie As New HttpCookie(CookieName)

    cookie.Values.Add(ID, value)

    'cookie.Expires = Date.Now.AddYears(1)

    Response.Cookies.Add(cookie)

    response.redirect(url)



    Here is the code I use to read them:

    Dim Cookie As HttpCookie = Request.Cookies(CookieName)

    Dim strC As String = Cookie.Values(ID)

    ---------

    Now everything works fine...but I un-comment that cookie.expires....that I
    can't read it?????? otherwise it works?

    I would like to have the cookie stay on their computer for a while...so I
    know that they have been to my site before...does anyone have any
    suggestions?



    Brian


    Brian Guest

  5. #4

    Default Cookies

    Hi.

    Itīs possible get cookies any other php page?

    How could i do it?

    Regards.


    Jose Guest

  6. #5

    Default Re: Cookies

    An noise sounding like Jose said:
    > Itīs possible get cookies any other php page?
    >
    No. That would be stealing cookies. you are only supposed to get details of
    cookies which you yourself have set.

    db
    --

    I'm a dead man, and buggered to boot!

    David Gillen Guest

  7. #6

    Default Re: Cookies

    Thanks.

    Natty Gur, CTO
    Dao2Com Ltd.
    34th Elkalay st. Raanana
    Israel , 43000
    Phone Numbers:
    Office: +972-(0)9-7740261
    Fax: +972-(0)9-7740261
    Mobile: +972-(0)58-888377


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Natty Gur Guest

  8. #7

    Default cookies

    I'm looking for ideas dealing with cookies.
    I startetd with one login form on the intranet for
    which i use cookies to automatically login.

    Name = rcset("UserID")
    Response.Cookies("UserName")=(Name)
    Response.Cookies("UuserName").Expires = Date + 5

    Now i need to set up a few more of this login first
    forms, on one hand i don't want users to login again
    and again so i set the cookie for 5 days.
    I don't know if this is the safest or best way to
    deal with multi forms that require login.
    I'm looking for suggestions or other ideas.
    Thanks in advanced.
    alexz Guest

  9. #8

    Default Re: cookies

    Have you read the ebook beginning perl?
    I downloaded it but I don't have the url. Sorry.
    Try google with 'ebook beginning perl'

    Motherofperls@aol.com Guest

  10. #9

    Default RE: cookies


    ------------------------------------------------
    On Wed, 13 Aug 2003 16:44:59 +0100, "Mace, Richard" <richard.mace@Lorien.co.uk> wrote:
    > I want to start using cookies to store user session information and build associated privileges on
    > web pages. I'm starting as a complete novice in this field, has anyone else got off to a flyer using
    > a book or web-site they can recommend? Any hints gratefully received, thanks,
    This query may be better addressed to beginners-cgi but not a big deal.

    Are you starting fresh in Perl? Or just CGI using Perl? Or just cookies specifically?

    In the latter two cases I would suggest reviewing the docs for the CGI.pm module as it will explain how to handle CGI requests, build dynamic pages, and part of that will be using and setting cookies. In the first case I would get a foundation in Perl first, then move to CGI specifics by starting with the Learning Perl O'Reilly book. Also check out perldoc perlbook

    [url]http://danconia.org[/url]
    wiggins@danconia.org Guest

  11. #10

    Default Re: cookies


    --On Wednesday, August 13, 2003 4:44 PM +0100 "Mace, Richard"
    <richard.mace@Lorien.co.uk> wrote:
    > I want to start using cookies to store user session information and build
    > associated privileges on web pages. I'm starting as a complete novice in
    > this field, has anyone else got off to a flyer using a book or web-site
    > they can recommend? Any hints gratefully received, thanks, Richard.
    I found the code at

    [url]http://www.stonehenge.com/merlyn/WebTechniques/col61.html[/url]

    to be a useful introduction. (and I just mentioned it yesterday IIRC :-)




    David Wall Guest

  12. #11

    Default Cookies

    In my web application i'm are able to store large data in
    the browser cookie keeping in mind the limit of 300
    cookies per browser, 20 keys per cookie per domain and 4KB
    max size of each cookie. i'm are unable to retreive this
    large amount of data immediately after storing through
    document.cookie in IE browser (The same works fine in
    Netscape).

    Is there any limit on the size of the data that can be
    retreived using document.cookie? Could you please suggest
    a solution to this problem i'm are facing.

    Babu V.T Guest

  13. #12

    Default cookies

    I need help setting up cookies to manage users as they logon to my webpage. I
    have a login form that checks the database for the users name and password.
    After they login I need to be able to store that information for other pages.
    Can someone provide me with some sample code and explain to me exactly what I
    need? Thank you very very much.

    CF Nut Guest

  14. #13

    Default Re: cookies

    <cfcookie name = 'cookie_name' value = 'text' expires = 'period' (now, never or date) secure = 'Yes' or 'No' domain = '.domain'>




    SafariTECH Guest

  15. #14

    Default Re: cookies

    <cfcookie name = 'cookie_name' value = 'text' expires = 'period' (now, never
    or date) secure = 'Yes' or 'No' domain = '.domain'> Just an additional
    note, that the page setting the cookie has to actually stop processing - if you
    use a cflocation tag or something that moves it off to another page, the cookie
    will not set.

    SafariTECH Guest

  16. #15

    Default Re: cookies

    So would I put this on my login page or the page after?
    CF Nut Guest

  17. #16

    Default Re: cookies

    HELP PLEASE!!!!!!!!!

    I have been working on this problem for a very long time. If someone could help me with this problem I would appreciate it very much.

    THANK YOU VERY MUCH
    CF Nut Guest

  18. #17

    Default Cookies

    Hey There's seems to be a serious lack of information about how to set up
    cookies in Dreamweaver? I'm am trying to create a 'Remember me' box for the
    login section of a site, but cannot work out how to create a cookie in
    Dreamweaver. Surely there must be a way! Thanks Conor

    Conor McLaughlin Guest

  19. #18

    Default Re: Cookies

    I knnow what u mean i have also had a look at setting up cookies but find that the help section provides very little information on how to do this. Any help would be appreciated
    Abel_037 Guest

  20. #19

    Default Re: Cookies

    i guess it'll depend on your server model. with DW you can read cookies
    in ASP (Bindings > Query vars) but AFAIK, there's no "canned way" to
    write them unless there's an extension. check MM Exchange

    HTH,

    manuel

    Conor McLaughlin wrote:
    > Hey There's seems to be a serious lack of information about how to set up
    > cookies in Dreamweaver? I'm am trying to create a 'Remember me' box for the
    > login section of a site, but cannot work out how to create a cookie in
    > Dreamweaver. Surely there must be a way! Thanks Conor
    >
    Manuel Socarras Guest

  21. #20

    Default Re: Cookies

    *bump*

    Anyone?
    Conor McLaughlin Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139