473,473 Members | 1,512 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

This doesn't "set" a cookie to expire - why?

// OBTAINED FROM http://www.javascripter.net/faq/settinga.htm

// NOTE THAT IF YOU SET days TO -1 THE COOKIE WILL BE SET TO YESTERDAY
AND THUS EXPIRE
function setCookie(name, value, days, docObj) {
var today = new Date();
var expire = new Date();
if (days == null || isNaN(days) || days == 0) days = 1;
if (days >= 1 || days < 0) expire.setTime(today.getTime() + 3600000 *
24 * days);
docObj.cookie = name + '=' + escape(value) + ';expires=' +
expire.toGMTString();
}
I am using this Javascript function to set a cookie to expire, and yet,
for some reason, when i set it to expire:

setCookie('my_cookie', '', -1, this.document);

It sets the cookie named "my_cookie" to the literal '' which does not
actually expire but still exist with the value of '', even upon page
reload!

I'm using Netscape 7.1 and IE 5.1 and happens on both

I want the cookie to be completely destroyed upon page reload, what
must I do?

Thanx
Phil

Feb 8 '06 #1
23 3148
Phil Powell wrote on 08 feb 2006 in comp.lang.javascript:
I want the cookie to be completely destroyed upon page reload, what
must I do?


Then do not set the cookie in the first place?

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Feb 8 '06 #2
That is not an option. Upon quitting the application the cookie must
be destroyed in order for redirection to take you back to the login
page. Server-side cookie destruction is handled but I believe not very
effectively.

Phil

Evertjan. wrote:
Phil Powell wrote on 08 feb 2006 in comp.lang.javascript:
I want the cookie to be completely destroyed upon page reload, what
must I do?


Then do not set the cookie in the first place?

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)


Feb 8 '06 #3
Phil Powell wrote on 08 feb 2006 in comp.lang.javascript:

Phil

Evertjan. wrote:
Phil Powell wrote on 08 feb 2006 in comp.lang.javascript:
> I want the cookie to be completely destroyed upon page reload, what
> must I do?
>
Then do not set the cookie in the first place?


[please do not toppost on usenet]
That is not an option.
Cann't you just change it's value to something inoffensive?
Upon quitting the application the cookie must
be destroyed in order for redirection to take you back to the login
page. Server-side cookie destruction is handled but I believe not very
effectively.


Oh wait, you are using serverside code?

Then it is much easier and safer to use session variables.
Even the whole session can be destroyed, deleting all session variables
as a perfect logout measure.

ASP: session.abandon
PHP: ???

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Feb 8 '06 #4
See below, thanx

Evertjan. wrote:
Phil Powell wrote on 08 feb 2006 in comp.lang.javascript:

Phil

Evertjan. wrote:
Phil Powell wrote on 08 feb 2006 in comp.lang.javascript:

> I want the cookie to be completely destroyed upon page reload, what
> must I do?
>

Then do not set the cookie in the first place?

[please do not toppost on usenet]
That is not an option.


Cann't you just change it's value to something inoffensive?
Upon quitting the application the cookie must
be destroyed in order for redirection to take you back to the login
page. Server-side cookie destruction is handled but I believe not very
effectively.


Oh wait, you are using serverside code?

Then it is much easier and safer to use session variables.
Even the whole session can be destroyed, deleting all session variables
as a perfect logout measure.


Turns out the problem WAS server-side all along. Java that is. I was
using the parameter wrong for javax.servlet.http.Cookie method
setMaxAge.. in most C-derivative languages (TCL, PHP, etc.) to delete a
cookie you set it to yesterday's date ("today" - 86400), but in Java,
you set it to 0. I forgot about that.

So it works now the cookie is deleted and all is well!

Phil

ASP: session.abandon
PHP: ???

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)


Feb 9 '06 #5
Phil Powell wrote:
I want the cookie to be completely destroyed upon page reload, what
must I do?


That is not possible. Cookies will not be deleted before the session ends.
However, you could consider a cookie deleted if it has the empty string as
its value.
PointedEars
Feb 9 '06 #6
Thomas 'PointedEars' Lahn wrote on 09 feb 2006 in comp.lang.javascript:
Phil Powell wrote:
I want the cookie to be completely destroyed upon page reload, what
must I do?


That is not possible. Cookies will not be deleted before the session
ends. However, you could consider a cookie deleted if it has the empty
string as its value.

Pointed, how do you define such "session"? Browser closure?

In my present vocabulary, only a server session has any meaning.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Feb 9 '06 #7
Evertjan. wrote:
Thomas 'PointedEars' Lahn wrote on 09 feb 2006 in comp.lang.javascript:
Phil Powell wrote:
I want the cookie to be completely destroyed upon page reload, what
must I do?

That is not possible. Cookies will not be deleted before the session
ends. However, you could consider a cookie deleted if it has the empty
string as its value.


Pointed, how do you define such "session"? Browser closure?


The moment of termination of the HTTP client process is usually considered
the end of the (client-side) session regarding cookies (ref.: session
cookie) which I was referring to.
PointedEars
Feb 9 '06 #8
Thomas 'PointedEars' Lahn wrote on 09 feb 2006 in comp.lang.javascript:
Evertjan. wrote:
Thomas 'PointedEars' Lahn wrote on 09 feb 2006 in
comp.lang.javascript:
Phil Powell wrote:
I want the cookie to be completely destroyed upon page reload, what
must I do?
That is not possible. Cookies will not be deleted before the
session ends. However, you could consider a cookie deleted if it has
the empty string as its value.


Pointed, how do you define such "session"? Browser closure?


The moment of termination of the HTTP client process is usually
considered the end of the (client-side) session regarding cookies
(ref.: session cookie) which I was referring to.


Can you translate that in the vulgate?

Does the "the HTTP client process" end by itself,
or what will cause it to end?

Can I as a user detect that ending?
[The little red light on the motherboard?]

Or is it as I asked: "Browser [window] closure?"

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Feb 9 '06 #9
Evertjan. wrote:
Thomas 'PointedEars' Lahn wrote on 09 feb 2006 in comp.lang.javascript:
Evertjan. wrote:
Thomas 'PointedEars' Lahn wrote on 09 feb 2006 in
comp.lang.javascript:
Phil Powell wrote:
> I want the cookie to be completely destroyed upon page reload, what
> must I do?
That is not possible. Cookies will not be deleted before the
session ends. However, you could consider a cookie deleted if it has
the empty string as its value.
Pointed,
BTW: My nickname is PointedEars already, Eve.
how do you define such "session"? Browser closure? The moment of termination of the HTTP client process is usually
considered the end of the (client-side) session regarding cookies
(ref.: session cookie) which I was referring to.


Can you translate that in the vulgate?


You want a mouse-click-script-kiddie explanation instead of a
technically correct one? What kind of a developer are you anyway?
Does the "the HTTP client process" end by itself,
or what will cause it to end?
Usually user interaction will initially cause it to end, however other
processes can cause that, too.
Can I as a user detect that ending?
If you watch your process viewer/task manager closely, you probably can.
[The little red light on the motherboard?]
(ISTM you as a user will not even find that light.)

I was talking about software, not hardware.
Or is it as I asked: "Browser [window] closure?"


If it is a browser and there is a window, that is close to the truth.
However, a closed window does not mean necessarily that the respective
process was terminated. So it is incorrect to say that by closing the
window the cookie session ends, even if we restrict ourselves to the
GUI perspective on operating systems.
PointedEars
Feb 9 '06 #10
Thomas 'PointedEars' Lahn wrote on 09 feb 2006 in comp.lang.javascript:
Evertjan. wrote:
Thomas 'PointedEars' Lahn wrote on 09 feb 2006 in
comp.lang.javascript:
Evertjan. wrote:
Thomas 'PointedEars' Lahn wrote on 09 feb 2006 in
comp.lang.javascript:
> Phil Powell wrote:
>> I want the cookie to be completely destroyed upon page reload,
>> what must I do?
> That is not possible. Cookies will not be deleted before the
> session ends. However, you could consider a cookie deleted if it
> has the empty string as its value.
Pointed,
BTW: My nickname is PointedEars already, Eve.
Wow! I hope you are all ears.
how do you define such "session"? Browser closure?
The moment of termination of the HTTP client process is usually
considered the end of the (client-side) session regarding cookies
(ref.: session cookie) which I was referring to.
Can you translate that in the vulgate?


You want a mouse-click-script-kiddie explanation instead of a
technically correct one? What kind of a developer are you anyway?


That is neither here nor there. If we all were of your standard we would
not be communicating at all.
Does the "the HTTP client process" end by itself,
or what will cause it to end?


Usually user interaction will initially cause it to end,


What is "initially cause it to end"?
It ends, but afther that it is not ended?

What user interaction will do that?
Please be specific.
however other processes can cause that, too.
So non-user interacted processes also
do "initially cause the session to end"?

What processes will do that?
Please be specific.
Can I as a user detect that ending?


If you watch your process viewer/task manager closely,
you probably can.


I doubt a process viewer can see sessions.
So the session ending is really a process ending?

We would not need the term "client-sessions" after all.

[The little red light on the motherboard?]


(ISTM you as a user will not even find that light.)


[Secret: mine has a green light]

My name is not ISTM.
I was talking about software, not hardware.


Ah, so the pulling of the power plug will not end the process you call
"session"?
Or is it as I asked: "Browser [window] closure?"


If it is a browser and there is a window, that is close to the truth.
However, a closed window does not mean necessarily that the respective
process was terminated. So it is incorrect to say that by closing the
window the cookie session ends, even if we restrict ourselves to the
GUI perspective on operating systems.


Ah, a new concept: "cookie-session", what's that supposed to mean?

Again, I don't see any need for the concepts of "client-session" and
"cookie-session". You are only talking about a "process".

Let's keep "session" where it is usefull, on the server.

======================

I know that all cookies are destroyed by a sort of garbage collector on
closing [or perhaps reopening, closing can be dramatically sudden] of the
browser, but for those cookies having a expiration date in the local utc
relative future.

Cookies without an expiration date are called "ram-cookies" or wrongly
"session-cookies". I think "session-cookie" is a misnomer here, as a
session as I see it is an interaction between individual server and
browser. "Ram-cookies" is somewhat better, since those cookies need no
per-se HD storage.

The real session-cookie, is the cookie assigned by the server to identify
the server session. In that view, there can be more than one session per
server-browser complex.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Feb 9 '06 #11
VK
"client session" starts when you lauch the first instance of your
browser.
"client session" ends when you close the last instance of your
browser.

This is your current client session, a lot of data crap depends on this
timeframe. Say so-called "session cookies" (cookie set without
expiration date) are valid only till the end of your client session -
thus from the moment they are set and till you close the last instance
of your browser.

End of session doesn't mean immediate end of all processes. Say JVM may
stay running for another 1-5 minutes, ans some badly written ActiveX's
can hang up in the memory till the next restart. But these are
technical issues not related with the formal process.

Server-side session starts from the moment of authentification of a
particular machine and for the period defined by the server
administrator: usually from 1 hour up to 12 hrs. The persistence is
supported by cookie, by hidden form fields or by URL ?data and usually
connected with a session data file on the server. After server-side
session ends new authentification will be required. "Lost in action"
session data files (who left and never came back) are cleaned
periodically on the server by CRON jobs (or equivalents).

"client session" and "server session" are very different and equally
important terms.

I hope it helps.

Feb 9 '06 #12
VK wrote on 09 feb 2006 in comp.lang.javascript:
"client session" starts when you lauch the first instance of your
browser.
"client session" ends when you close the last instance of your
browser.

Please quote on usenet.
Say so-called "session cookies" (cookie set without
expiration date) are valid only till the end of your client session


That's what I said, no need to repeat that.

The whole concept of client-session and "session cookies" is not needed.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Feb 9 '06 #13
VK

Evertjan. wrote:
The whole concept of client-session and "session cookies" is not needed.


What is commonly called "session cookie" is a cookie without expiration
date. Its lifetime is defined by the end of the current client session.
End of client session doesn't necessary lead to the end of the current
server session. You can close all browser window, then launch one, go
to say Yahoo and you are still registered.

Maybe it could be possible to express all this much easier and in
lesser terms.

Feb 9 '06 #14
Evertjan. wrote:
Thomas 'PointedEars' Lahn wrote on 09 feb 2006 in comp.lang.javascript:
Evertjan. wrote:
Thomas 'PointedEars' Lahn wrote on 09 feb 2006 in
comp.lang.javascript:
Evertjan. wrote:
> Thomas 'PointedEars' Lahn wrote on 09 feb 2006 in
> comp.lang.javascript:
>> Phil Powell wrote:
>>> I want the cookie to be completely destroyed upon page reload,
>>> what must I do?
>> That is not possible. Cookies will not be deleted before the
>> session ends. However, you could consider a cookie deleted if it
>> has the empty string as its value.
> Pointed,


BTW: My nickname is PointedEars already, Eve.


Wow! I hope you are all ears.
> how do you define such "session"? Browser closure?
The moment of termination of the HTTP client process is usually
considered the end of the (client-side) session regarding cookies
(ref.: session cookie) which I was referring to.

Can you translate that in the vulgate?


You want a mouse-click-script-kiddie explanation instead of a
technically correct one? What kind of a developer are you anyway?


That is neither here nor there. If we all were of your standard we would
not be communicating at all. [...]


Figures that someone like you who is incapable of following Internet
standards is also incapable of a constructive discussion. Go troll
elsewhere.
PointedEars
Feb 9 '06 #15
Side note:

I fixed it! Turns out the problem was never Javascript but my
server-side Java all along, whereby javax.servlet.http.Cookie method
setMaxAge must take the parameter "0" to ensure that the cookie will be
deleted after page reload (or new page load).

Thanx for your help!

Phil

Thomas 'PointedEars' Lahn wrote:
Evertjan. wrote:
Thomas 'PointedEars' Lahn wrote on 09 feb 2006 in comp.lang.javascript:
Evertjan. wrote:
Thomas 'PointedEars' Lahn wrote on 09 feb 2006 in
comp.lang.javascript:
> Evertjan. wrote:
>> Thomas 'PointedEars' Lahn wrote on 09 feb 2006 in
>> comp.lang.javascript:
>>> Phil Powell wrote:
>>>> I want the cookie to be completely destroyed upon page reload,
>>>> what must I do?
>>> That is not possible. Cookies will not be deleted before the
>>> session ends. However, you could consider a cookie deleted if it
>>> has the empty string as its value.
>> Pointed,

BTW: My nickname is PointedEars already, Eve.


Wow! I hope you are all ears.
>> how do you define such "session"? Browser closure?
> The moment of termination of the HTTP client process is usually
> considered the end of the (client-side) session regarding cookies
> (ref.: session cookie) which I was referring to.

Can you translate that in the vulgate?

You want a mouse-click-script-kiddie explanation instead of a
technically correct one? What kind of a developer are you anyway?


That is neither here nor there. If we all were of your standard we would
not be communicating at all. [...]


Figures that someone like you who is incapable of following Internet
standards is also incapable of a constructive discussion. Go troll
elsewhere.
PointedEars


Feb 10 '06 #16
VK

Phil Powell wrote:
Side note:

I fixed it! Turns out the problem was never Javascript but my
server-side Java all along, whereby javax.servlet.http.Cookie method
setMaxAge must take the parameter "0" to ensure that the cookie will be
deleted after page reload (or new page load).

Thanx for your help!


LOL!

Feb 10 '06 #17
Thomas 'PointedEars' Lahn said the following on 2/9/2006 6:20 PM:
Evertjan. wrote:
Thomas 'PointedEars' Lahn wrote on 09 feb 2006 in comp.lang.javascript:
Evertjan. wrote:
Thomas 'PointedEars' Lahn wrote on 09 feb 2006 in
comp.lang.javascript:
> Evertjan. wrote:
<snip>
Can you translate that in the vulgate?
You want a mouse-click-script-kiddie explanation instead of a
technically correct one? What kind of a developer are you anyway?

That is neither here nor there. If we all were of your standard we would
not be communicating at all. [...]


Figures that someone like you who is incapable of following Internet
standards is also incapable of a constructive discussion.


That is hilariously funny coming from someone who is incapable of
following Internet standards himself.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Feb 10 '06 #18
Thomas 'PointedEars' Lahn wrote on 10 feb 2006 in comp.lang.javascript:
Can you translate that in the vulgate?

You want a mouse-click-script-kiddie explanation instead of a
technically correct one? What kind of a developer are you anyway?


That is neither here nor there. If we all were of your standard we would
not be communicating at all. [...]


Figures that someone like you who is incapable of following Internet
standards is also incapable of a constructive discussion. Go troll
elsewhere.


It seems that you cannot explain your answer in reasonable terms and revert
to abusing the questioneer instead.

There are only two possibilities:
1 you are realy incapable to explain your ideas, because your standard is
not as high as I said above.
2 you are unwilling to explain, because you are only interested in your own
aura.

I strongly hope it is the first, because I wouln't like you to belong to
the second group. Either way it is you that blocks your "constructive
communication".

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Feb 10 '06 #19
You all need to sit down together, in real life, no computers, and face
each other and see what happens.

Again, thanx for all your help, like I said it was the server-side
cookie setting that was the problem all along!

Phil

Feb 10 '06 #20
JRS: In article <11**********************@g44g2000cwa.googlegroups .com>
, dated Wed, 8 Feb 2006 22:18:52 remote, seen in
news:comp.lang.javascript, Phil Powell <ph**************@gmail.com>
posted :
in most C-derivative languages (TCL, PHP, etc.) to delete a
cookie you set it to yesterday's date ("today" - 86400),


Why do you way that?

Firstly, today-86400 is not necessarily yesterday (and here it would be
864e5).

Secondly, any past date should suffice, so why not give it a fixed
literal string? After all, all past dates remain such (unlike future
dates).

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 MIME. ©
Web <URL:http://www.merlyn.demon.co.uk/> - w. FAQish topics, links, acronyms
PAS EXE etc : <URL:http://www.merlyn.demon.co.uk/programs/> - see 00index.htm
Dates - miscdate.htm moredate.htm js-dates.htm pas-time.htm critdate.htm etc.
Feb 10 '06 #21
See below

Dr John Stockton wrote:
JRS: In article <11**********************@g44g2000cwa.googlegroups .com>
, dated Wed, 8 Feb 2006 22:18:52 remote, seen in
news:comp.lang.javascript, Phil Powell <ph**************@gmail.com>
posted :
in most C-derivative languages (TCL, PHP, etc.) to delete a
cookie you set it to yesterday's date ("today" - 86400),
Why do you way that?

Firstly, today-86400 is not necessarily yesterday (and here it would be
864e5).

Secondly, any past date should suffice, so why not give it a fixed
literal string? After all, all past dates remain such (unlike future
dates).


There are those of us that think writing something like

<? setcookie($cookieName, '', time() - 86400); ?>

Is easier to write than a longer literal timestamp. Either case it has
always worked that way, again, some languages handling their date
handling differently than others to know what truly is past (86400 or
86400 * -2 or 86400 * -10)

Phil
--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 MIME. ©
Web <URL:http://www.merlyn.demon.co.uk/> - w. FAQish topics, links, acronyms
PAS EXE etc : <URL:http://www.merlyn.demon.co.uk/programs/> - see 00index.htm
Dates - miscdate.htm moredate.htm js-dates.htm pas-time.htm critdate.htmetc.


Feb 10 '06 #22
JRS: In article <11*********************@o13g2000cwo.googlegroups. com>,
dated Fri, 10 Feb 2006 14:43:23 remote, seen in
news:comp.lang.javascript, Phil Powell <ph**************@gmail.com>
posted :
Dr John Stockton wrote:

Firstly, today-86400 is not necessarily yesterday (and here it would be
864e5).

Secondly, any past date should suffice, so why not give it a fixed
literal string? After all, all past dates remain such (unlike future
dates).


There are those of us that think writing something like

<? setcookie($cookieName, '', time() - 86400); ?>

Is easier to write than a longer literal timestamp. Either case it has
always worked that way, again, some languages handling their date
handling differently than others to know what truly is past (86400 or
86400 * -2 or 86400 * -10)


That's a reason for writing the date as a literal in "cookie English"
rather than assuming that the programming language will write a date in
cookie format when given an expression like that as a parameter to a
cookie-setting routine.

AIUI, the specified format for cookies is not what any standard
javascript method will give; so, since a standard javascript method
works, the cookie-reading must be liberal.

The specified cookie format is "DD-Mon-YY HH:MM:SS GMT"
and ISTM that it would be interesting to know whether, for all browsers,
"01-Jan-01" or "1970/01/01" or similar would always now cause expiry.
Or "1970", or even "0".

Anyway, for javascript,
"expires=Thu, 01-Jan-1970 00:00:00 GMT"
is insignificantly longer than
"expires="+new Date(0).toUTCString()
and is definitely shorter than what is commonly used.
--
...

Don't quote sigs.

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4 ©
<URL:http://www.jibbering.com/faq/> JL/RC: FAQ of news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htm> jscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items, links.
Feb 11 '06 #23
VK

VK wrote:
What is commonly called "session cookie" is a cookie without expiration
date. Its lifetime is defined by the end of the current client session.
End of client session doesn't necessary lead to the end of the current
server session. You can close all browser window, then launch one, go
to say Yahoo and you are still registered.

Maybe it could be possible to express all this much easier and in
lesser terms.


Just came back to me: it is properly called "browser session", not
"client session".

So session cookie are set for the browser session. Browser session
starts when you lounch first instance of your browser and continues
until you close the last instance of your browser.

Feb 21 '06 #24

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

16
by: Phil Powell | last post by:
Fourth attempt.. it fails now in login, I check by printing $_COOKIE and there is no value there! Guys, what on earth do I do about this???? Here is the code that sets the cookie: if...
4
by: deko | last post by:
How to set cookie with php? Could someone sanity check this for me? Still new to php... ***This is correct: <?php setcookie("mycookie",time(),3600,"/"); ?> <!DOCTYPE HTML PUBLIC...
25
by: WA Support | last post by:
Hello, I am fairly new to programming in C, so please excuse my ignorance here. I am working on a Redhat 7.3 system with Apache 1.3.27 from the Redhat distribution running. I am trying to...
2
by: Iggy Evans | last post by:
Hi My app is trying to login to an ASP.NET site that uses Forms authentication. I am trying to do in my app (what was previously posted in a newsgroup) the same that a browser does 3) The browser...
6
by: Jason Collins | last post by:
There seems to be an inconsistency (bug?) in the way the Set-Cookie header is handled by the WebHeaderCollection. That is, the values of Set-Cookie, when an Expires is specified, contain the ","...
1
by: BobVDP | last post by:
My statement print "Set-Cookie: name=value;" started printing out to the browser instead of setting the cookie. I am running PERL on a IIS6 Server. I must have changed a setting on IIS but I can't...
1
by: Abandoned | last post by:
Hi.. I set cookie from www.domain.com but i'cant read this cookie from subdomain.domain.com How can i set cookie for all subdomains ? My set cookie code is: cookie =...
1
by: domnicx | last post by:
Hi, I am using the httpweblistener class to build a web server kinda functionality. I have to send multiple set-cookie headers in a single response when queried for a particular request and i...
1
by: stdusererr | last post by:
I'm use HttpURLConnection get cookie information from a server. In the response header it uses "Set-Cookie" twice and I am only able to get the 2nd value. I've done some googling and found that I...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.