Ask a Question related to PERL Beginners, Design and Development.
-
bill #1
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
-
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... -
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... -
php cookies
Is it possible to set php cookies to delete after a period of user inactivity & if so how? -
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... -
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... -
Donald Link #2
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
-
Brian #3
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
-
Jose #4
Cookies
Hi.
Itīs possible get cookies any other php page?
How could i do it?
Regards.
Jose Guest
-
David Gillen #5
Re: Cookies
An noise sounding like Jose said:
No. That would be stealing cookies. you are only supposed to get details of> Itīs possible get cookies any other php page?
>
cookies which you yourself have set.
db
--
I'm a dead man, and buggered to boot!
David Gillen Guest
-
Natty Gur #6
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
-
alexz #7
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
-
Motherofperls@aol.com #8
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
-
wiggins@danconia.org #9
RE: cookies
------------------------------------------------
On Wed, 13 Aug 2003 16:44:59 +0100, "Mace, Richard" <richard.mace@Lorien.co.uk> wrote:
This query may be better addressed to beginners-cgi but not a big deal.> 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,
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
-
David Wall #10
Re: cookies
--On Wednesday, August 13, 2003 4:44 PM +0100 "Mace, Richard"
<richard.mace@Lorien.co.uk> wrote:
I found the code at> 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.
[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
-
Babu V.T #11
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
-
CF Nut #12
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
-
SafariTECH #13
Re: cookies
<cfcookie name = 'cookie_name' value = 'text' expires = 'period' (now, never or date) secure = 'Yes' or 'No' domain = '.domain'>
SafariTECH Guest
-
SafariTECH #14
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
-
-
CF Nut #16
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
-
Conor McLaughlin #17
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
-
Abel_037 #18
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
-
Manuel Socarras #19
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
-



Reply With Quote

