473,406 Members | 2,273 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Session object and coockies in asp.net

RA
Hi

Please review and let me know if I am correct:

1) My understanding from reading
http://msdn.microsoft.com/library/de...us/dnpag/html/
diforwc-ch05.asp is that asp.net uses cookies to store the user session id,
but if cookies are not enabled then it will send the session id as part of
the url. Is this correct?

2) I also understand from the article that all the information I use with
the session object such as Session["UserName"]=txtUserName.Text... is kept
on the server. If the web.config session state mode="inproc" then the
session object information will be stored and managed by Aspnet_wp.exe
process. So in this case the Session["UserName"] will always have a valid
data regardless if the user enables cookies or not. Am I correct?

This all lead me to a conclusion that if I use the Session object to store
user information, then I should be safe reading and storing the information
weather the user enables cookies or not.
Thanks

Nov 18 '05 #1
9 1945
Z D
The issue is tracking the user's session. If they have cookies disabled then
you wont know which user relates to which session on the server (and thus
the server wont know which Session["UserName"] to use).

Note: The session ID is only stored in the URL if you explicitly tell it to
do so in web.config

-ZD
"RA" <ro****@hotmail.com> wrote in message
news:uS**************@TK2MSFTNGP12.phx.gbl...
Hi

Please review and let me know if I am correct:

1) My understanding from reading
http://msdn.microsoft.com/library/de...us/dnpag/html/ diforwc-ch05.asp is that asp.net uses cookies to store the user session id, but if cookies are not enabled then it will send the session id as part of
the url. Is this correct?

2) I also understand from the article that all the information I use with
the session object such as Session["UserName"]=txtUserName.Text... is kept
on the server. If the web.config session state mode="inproc" then the
session object information will be stored and managed by Aspnet_wp.exe
process. So in this case the Session["UserName"] will always have a valid
data regardless if the user enables cookies or not. Am I correct?

This all lead me to a conclusion that if I use the Session object to store
user information, then I should be safe reading and storing the information weather the user enables cookies or not.
Thanks

Nov 18 '05 #2
RA
This is not what being said in the microsoft document.
Look in the document and you will see that it is applied to the url if the
cookies disabled at the browser.

"Z D" <NO****@NOSPAM.com> wrote in message
news:eS**************@TK2MSFTNGP09.phx.gbl...
The issue is tracking the user's session. If they have cookies disabled then you wont know which user relates to which session on the server (and thus
the server wont know which Session["UserName"] to use).

Note: The session ID is only stored in the URL if you explicitly tell it to do so in web.config

-ZD
"RA" <ro****@hotmail.com> wrote in message
news:uS**************@TK2MSFTNGP12.phx.gbl...
Hi

Please review and let me know if I am correct:

1) My understanding from reading

http://msdn.microsoft.com/library/de...us/dnpag/html/
diforwc-ch05.asp is that asp.net uses cookies to store the user session

id,
but if cookies are not enabled then it will send the session id as part of the url. Is this correct?

2) I also understand from the article that all the information I use with the session object such as Session["UserName"]=txtUserName.Text... is kept on the server. If the web.config session state mode="inproc" then the
session object information will be stored and managed by Aspnet_wp.exe
process. So in this case the Session["UserName"] will always have a valid data regardless if the user enables cookies or not. Am I correct?

This all lead me to a conclusion that if I use the Session object to store user information, then I should be safe reading and storing the

information
weather the user enables cookies or not.
Thanks


Nov 18 '05 #3
Z D
What microsoft document?

You have to allow it in web.config or else it doesnt work.
"RA" <ro****@hotmail.com> wrote in message
news:eX**************@tk2msftngp13.phx.gbl...
This is not what being said in the microsoft document.
Look in the document and you will see that it is applied to the url if the
cookies disabled at the browser.

"Z D" <NO****@NOSPAM.com> wrote in message
news:eS**************@TK2MSFTNGP09.phx.gbl...
The issue is tracking the user's session. If they have cookies disabled then
you wont know which user relates to which session on the server (and thus
the server wont know which Session["UserName"] to use).

Note: The session ID is only stored in the URL if you explicitly tell it

to
do so in web.config

-ZD
"RA" <ro****@hotmail.com> wrote in message
news:uS**************@TK2MSFTNGP12.phx.gbl...
Hi

Please review and let me know if I am correct:

1) My understanding from reading

http://msdn.microsoft.com/library/de...us/dnpag/html/
diforwc-ch05.asp is that asp.net uses cookies to store the user
session
id,
but if cookies are not enabled then it will send the session id as

part of the url. Is this correct?

2) I also understand from the article that all the information I use with the session object such as Session["UserName"]=txtUserName.Text... is kept on the server. If the web.config session state mode="inproc" then the
session object information will be stored and managed by Aspnet_wp.exe
process. So in this case the Session["UserName"] will always have a valid data regardless if the user enables cookies or not. Am I correct?

This all lead me to a conclusion that if I use the Session object to store user information, then I should be safe reading and storing the

information
weather the user enables cookies or not.
Thanks



Nov 18 '05 #4
RA
Look at :
http://msdn.microsoft.com/library/de...us/dnpag/html/
"Z D" <NO****@NOSPAM.com> wrote in message
news:#1**************@tk2msftngp13.phx.gbl...
What microsoft document?

You have to allow it in web.config or else it doesnt work.
"RA" <ro****@hotmail.com> wrote in message
news:eX**************@tk2msftngp13.phx.gbl...
This is not what being said in the microsoft document.
Look in the document and you will see that it is applied to the url if the
cookies disabled at the browser.

"Z D" <NO****@NOSPAM.com> wrote in message
news:eS**************@TK2MSFTNGP09.phx.gbl...
The issue is tracking the user's session. If they have cookies disabled
then
you wont know which user relates to which session on the server (and thus the server wont know which Session["UserName"] to use).

Note: The session ID is only stored in the URL if you explicitly tell
it to
do so in web.config

-ZD
"RA" <ro****@hotmail.com> wrote in message
news:uS**************@TK2MSFTNGP12.phx.gbl...
> Hi
>
> Please review and let me know if I am correct:
>
> 1) My understanding from reading
>

http://msdn.microsoft.com/library/de...us/dnpag/html/ > diforwc-ch05.asp is that asp.net uses cookies to store the user session id,
> but if cookies are not enabled then it will send the session id as

part
of
> the url. Is this correct?
>
> 2) I also understand from the article that all the information I use

with
> the session object such as Session["UserName"]=txtUserName.Text... is kept
> on the server. If the web.config session state mode="inproc" then

the > session object information will be stored and managed by Aspnet_wp.exe > process. So in this case the Session["UserName"] will always have a

valid
> data regardless if the user enables cookies or not. Am I correct?
>
> This all lead me to a conclusion that if I use the Session object to

store
> user information, then I should be safe reading and storing the
information
> weather the user enables cookies or not.
>
>
> Thanks
>
>
>



Nov 18 '05 #5
Z D
that link doesn't work... you didnt link the file name of the document...
"RA" <ro****@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Look at :
http://msdn.microsoft.com/library/de...us/dnpag/html/

"Z D" <NO****@NOSPAM.com> wrote in message
news:#1**************@tk2msftngp13.phx.gbl...
What microsoft document?

You have to allow it in web.config or else it doesnt work.
"RA" <ro****@hotmail.com> wrote in message
news:eX**************@tk2msftngp13.phx.gbl...
This is not what being said in the microsoft document.
Look in the document and you will see that it is applied to the url if the cookies disabled at the browser.

"Z D" <NO****@NOSPAM.com> wrote in message
news:eS**************@TK2MSFTNGP09.phx.gbl...
> The issue is tracking the user's session. If they have cookies disabled then
> you wont know which user relates to which session on the server (and thus
> the server wont know which Session["UserName"] to use).
>
> Note: The session ID is only stored in the URL if you explicitly tell it
to
> do so in web.config
>
> -ZD
>
>
> "RA" <ro****@hotmail.com> wrote in message
> news:uS**************@TK2MSFTNGP12.phx.gbl...
> > Hi
> >
> > Please review and let me know if I am correct:
> >
> > 1) My understanding from reading
> >
>

http://msdn.microsoft.com/library/de...us/dnpag/html/ > > diforwc-ch05.asp is that asp.net uses cookies to store the user

session
> id,
> > but if cookies are not enabled then it will send the session id as

part
of
> > the url. Is this correct?
> >
> > 2) I also understand from the article that all the information I use with
> > the session object such as Session["UserName"]=txtUserName.Text... is kept
> > on the server. If the web.config session state mode="inproc" then the > > session object information will be stored and managed by Aspnet_wp.exe > > process. So in this case the Session["UserName"] will always have a valid
> > data regardless if the user enables cookies or not. Am I correct?
> >
> > This all lead me to a conclusion that if I use the Session object to store
> > user information, then I should be safe reading and storing the
> information
> > weather the user enables cookies or not.
> >
> >
> > Thanks
> >
> >
> >
>
>



Nov 18 '05 #6
RA
Sorry,
http://msdn.microsoft.com/library/de...us/dnpag/html/
diforwc-ch05.asp

"Z D" <NO****@NOSPAM.com> wrote in message
news:eF**************@TK2MSFTNGP12.phx.gbl...
that link doesn't work... you didnt link the file name of the document...
"RA" <ro****@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Look at :

http://msdn.microsoft.com/library/de...us/dnpag/html/


"Z D" <NO****@NOSPAM.com> wrote in message
news:#1**************@tk2msftngp13.phx.gbl...
What microsoft document?

You have to allow it in web.config or else it doesnt work.
"RA" <ro****@hotmail.com> wrote in message
news:eX**************@tk2msftngp13.phx.gbl...
> This is not what being said in the microsoft document.
> Look in the document and you will see that it is applied to the url if
the
> cookies disabled at the browser.
>
>
>
> "Z D" <NO****@NOSPAM.com> wrote in message
> news:eS**************@TK2MSFTNGP09.phx.gbl...
> > The issue is tracking the user's session. If they have cookies

disabled
> then
> > you wont know which user relates to which session on the server
(and thus
> > the server wont know which Session["UserName"] to use).
> >
> > Note: The session ID is only stored in the URL if you explicitly tell
it
> to
> > do so in web.config
> >
> > -ZD
> >
> >
> > "RA" <ro****@hotmail.com> wrote in message
> > news:uS**************@TK2MSFTNGP12.phx.gbl...
> > > Hi
> > >
> > > Please review and let me know if I am correct:
> > >
> > > 1) My understanding from reading
> > >
> >
>

http://msdn.microsoft.com/library/de...us/dnpag/html/
> > > diforwc-ch05.asp is that asp.net uses cookies to store the user
session
> > id,
> > > but if cookies are not enabled then it will send the session id as part
> of
> > > the url. Is this correct?
> > >
> > > 2) I also understand from the article that all the information I use > with
> > > the session object such as Session["UserName"]=txtUserName.Text... is
> kept
> > > on the server. If the web.config session state mode="inproc"
then
the
> > > session object information will be stored and managed by

Aspnet_wp.exe
> > > process. So in this case the Session["UserName"] will always

have a > valid
> > > data regardless if the user enables cookies or not. Am I
correct? > > >
> > > This all lead me to a conclusion that if I use the Session
object to > store
> > > user information, then I should be safe reading and storing the
> > information
> > > weather the user enables cookies or not.
> > >
> > >
> > > Thanks
> > >
> > >
> > >
> >
> >
>
>



Nov 18 '05 #7
Z D
You are prolly referring to this quote from that article:
"If the client or application is configured to disallow cookies, ASP.NET
encodes the session ID as part of the URL the client uses when making
requests to the application"

It is a little ambigious and not technically 100% correct. The incorrect
part is "client or application".

If the client is configured to disallow cookies, then asp.net does NOT
autmatically put the sessionID in the URL.

It ONLY puts the sessionID in the url if the Applicaion is configured to
disallow cookies. (ie you set cookieless = true in web.config)

try it yourself and you will see that i'm correct.
"RA" <ro****@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Sorry,
http://msdn.microsoft.com/library/de...us/dnpag/html/ diforwc-ch05.asp

"Z D" <NO****@NOSPAM.com> wrote in message
news:eF**************@TK2MSFTNGP12.phx.gbl...
that link doesn't work... you didnt link the file name of the document...


"RA" <ro****@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Look at :

http://msdn.microsoft.com/library/de...us/dnpag/html/


"Z D" <NO****@NOSPAM.com> wrote in message
news:#1**************@tk2msftngp13.phx.gbl...
> What microsoft document?
>
> You have to allow it in web.config or else it doesnt work.
>
>
> "RA" <ro****@hotmail.com> wrote in message
> news:eX**************@tk2msftngp13.phx.gbl...
> > This is not what being said in the microsoft document.
> > Look in the document and you will see that it is applied to the url if
the
> > cookies disabled at the browser.
> >
> >
> >
> > "Z D" <NO****@NOSPAM.com> wrote in message
> > news:eS**************@TK2MSFTNGP09.phx.gbl...
> > > The issue is tracking the user's session. If they have cookies
disabled
> > then
> > > you wont know which user relates to which session on the server (and > thus
> > > the server wont know which Session["UserName"] to use).
> > >
> > > Note: The session ID is only stored in the URL if you explicitly tell
it
> > to
> > > do so in web.config
> > >
> > > -ZD
> > >
> > >
> > > "RA" <ro****@hotmail.com> wrote in message
> > > news:uS**************@TK2MSFTNGP12.phx.gbl...
> > > > Hi
> > > >
> > > > Please review and let me know if I am correct:
> > > >
> > > > 1) My understanding from reading
> > > >
> > >
> >
>

http://msdn.microsoft.com/library/de...us/dnpag/html/ > > > > diforwc-ch05.asp is that asp.net uses cookies to store the user > session
> > > id,
> > > > but if cookies are not enabled then it will send the session id as
> part
> > of
> > > > the url. Is this correct?
> > > >
> > > > 2) I also understand from the article that all the information
I
use
> > with
> > > > the session object such as

Session["UserName"]=txtUserName.Text... is
> > kept
> > > > on the server. If the web.config session state mode="inproc" then the
> > > > session object information will be stored and managed by
Aspnet_wp.exe
> > > > process. So in this case the Session["UserName"] will always have
a
> > valid
> > > > data regardless if the user enables cookies or not. Am I

correct? > > > >
> > > > This all lead me to a conclusion that if I use the Session

object
to
> > store
> > > > user information, then I should be safe reading and storing

the > > > information
> > > > weather the user enables cookies or not.
> > > >
> > > >
> > > > Thanks
> > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 18 '05 #8
RA
Thank you,

So if I use cookieless = true then asp.net will use the url for session id
and I can be safe using the session information I am saving. Am I correct?

"Z D" <NO****@NOSPAM.com> wrote in message
news:#c**************@TK2MSFTNGP12.phx.gbl...
You are prolly referring to this quote from that article:
"If the client or application is configured to disallow cookies, ASP.NET
encodes the session ID as part of the URL the client uses when making
requests to the application"

It is a little ambigious and not technically 100% correct. The incorrect
part is "client or application".

If the client is configured to disallow cookies, then asp.net does NOT
autmatically put the sessionID in the URL.

It ONLY puts the sessionID in the url if the Applicaion is configured to
disallow cookies. (ie you set cookieless = true in web.config)

try it yourself and you will see that i'm correct.
"RA" <ro****@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Sorry,

http://msdn.microsoft.com/library/de...us/dnpag/html/
diforwc-ch05.asp

"Z D" <NO****@NOSPAM.com> wrote in message
news:eF**************@TK2MSFTNGP12.phx.gbl...
that link doesn't work... you didnt link the file name of the document...

"RA" <ro****@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
> Look at :
>

http://msdn.microsoft.com/library/de...us/dnpag/html/
>
>
> "Z D" <NO****@NOSPAM.com> wrote in message
> news:#1**************@tk2msftngp13.phx.gbl...
> > What microsoft document?
> >
> > You have to allow it in web.config or else it doesnt work.
> >
> >
> > "RA" <ro****@hotmail.com> wrote in message
> > news:eX**************@tk2msftngp13.phx.gbl...
> > > This is not what being said in the microsoft document.
> > > Look in the document and you will see that it is applied to the url
if
> the
> > > cookies disabled at the browser.
> > >
> > >
> > >
> > > "Z D" <NO****@NOSPAM.com> wrote in message
> > > news:eS**************@TK2MSFTNGP09.phx.gbl...
> > > > The issue is tracking the user's session. If they have cookies
> disabled
> > > then
> > > > you wont know which user relates to which session on the server
(and
> > thus
> > > > the server wont know which Session["UserName"] to use).
> > > >
> > > > Note: The session ID is only stored in the URL if you

explicitly tell
> it
> > > to
> > > > do so in web.config
> > > >
> > > > -ZD
> > > >
> > > >
> > > > "RA" <ro****@hotmail.com> wrote in message
> > > > news:uS**************@TK2MSFTNGP12.phx.gbl...
> > > > > Hi
> > > > >
> > > > > Please review and let me know if I am correct:
> > > > >
> > > > > 1) My understanding from reading
> > > > >
> > > >
> > >
> >
>

http://msdn.microsoft.com/library/de...us/dnpag/html/
> > > > > diforwc-ch05.asp is that asp.net uses cookies to store the user > > session
> > > > id,
> > > > > but if cookies are not enabled then it will send the session id
as
> > part
> > > of
> > > > > the url. Is this correct?
> > > > >
> > > > > 2) I also understand from the article that all the

information I use
> > > with
> > > > > the session object such as

Session["UserName"]=txtUserName.Text...
> is
> > > kept
> > > > > on the server. If the web.config session state mode="inproc"

then
> the
> > > > > session object information will be stored and managed by
> Aspnet_wp.exe
> > > > > process. So in this case the Session["UserName"] will always

have
a
> > > valid
> > > > > data regardless if the user enables cookies or not. Am I

correct?
> > > > >
> > > > > This all lead me to a conclusion that if I use the Session

object
to
> > > store
> > > > > user information, then I should be safe reading and storing the > > > > information
> > > > > weather the user enables cookies or not.
> > > > >
> > > > >
> > > > > Thanks
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 18 '05 #9
Z D
if you put cookiless=true then you must be careful to ONLY use relative
paths when linking to other pages, images, etc within your app. If you use
absolute paths it will not work correctly.

"RA" <ro****@hotmail.com> wrote in message
news:eO**************@tk2msftngp13.phx.gbl...
Thank you,

So if I use cookieless = true then asp.net will use the url for session id and I can be safe using the session information I am saving. Am I correct?

"Z D" <NO****@NOSPAM.com> wrote in message
news:#c**************@TK2MSFTNGP12.phx.gbl...
You are prolly referring to this quote from that article:
"If the client or application is configured to disallow cookies, ASP.NET
encodes the session ID as part of the URL the client uses when making
requests to the application"

It is a little ambigious and not technically 100% correct. The incorrect
part is "client or application".

If the client is configured to disallow cookies, then asp.net does NOT
autmatically put the sessionID in the URL.

It ONLY puts the sessionID in the url if the Applicaion is configured to
disallow cookies. (ie you set cookieless = true in web.config)

try it yourself and you will see that i'm correct.
"RA" <ro****@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Sorry,

http://msdn.microsoft.com/library/de...us/dnpag/html/
diforwc-ch05.asp

"Z D" <NO****@NOSPAM.com> wrote in message
news:eF**************@TK2MSFTNGP12.phx.gbl...
> that link doesn't work... you didnt link the file name of the

document...
>
>
> "RA" <ro****@hotmail.com> wrote in message
> news:%2****************@TK2MSFTNGP11.phx.gbl...
> > Look at :
> >
>

http://msdn.microsoft.com/library/de...us/dnpag/html/
> >
> >
> > "Z D" <NO****@NOSPAM.com> wrote in message
> > news:#1**************@tk2msftngp13.phx.gbl...
> > > What microsoft document?
> > >
> > > You have to allow it in web.config or else it doesnt work.
> > >
> > >
> > > "RA" <ro****@hotmail.com> wrote in message
> > > news:eX**************@tk2msftngp13.phx.gbl...
> > > > This is not what being said in the microsoft document.
> > > > Look in the document and you will see that it is applied to the
url
if
> > the
> > > > cookies disabled at the browser.
> > > >
> > > >
> > > >
> > > > "Z D" <NO****@NOSPAM.com> wrote in message
> > > > news:eS**************@TK2MSFTNGP09.phx.gbl...
> > > > > The issue is tracking the user's session. If they have
cookies > > disabled
> > > > then
> > > > > you wont know which user relates to which session on the server (and
> > > thus
> > > > > the server wont know which Session["UserName"] to use).
> > > > >
> > > > > Note: The session ID is only stored in the URL if you explicitly > tell
> > it
> > > > to
> > > > > do so in web.config
> > > > >
> > > > > -ZD
> > > > >
> > > > >
> > > > > "RA" <ro****@hotmail.com> wrote in message
> > > > > news:uS**************@TK2MSFTNGP12.phx.gbl...
> > > > > > Hi
> > > > > >
> > > > > > Please review and let me know if I am correct:
> > > > > >
> > > > > > 1) My understanding from reading
> > > > > >
> > > > >
> > > >
> > >
> >
>

http://msdn.microsoft.com/library/de...us/dnpag/html/
> > > > > > diforwc-ch05.asp is that asp.net uses cookies to store the

user
> > > session
> > > > > id,
> > > > > > but if cookies are not enabled then it will send the session id
as
> > > part
> > > > of
> > > > > > the url. Is this correct?
> > > > > >
> > > > > > 2) I also understand from the article that all the information
I
> use
> > > > with
> > > > > > the session object such as
Session["UserName"]=txtUserName.Text...
> > is
> > > > kept
> > > > > > on the server. If the web.config session state

mode="inproc" then
> > the
> > > > > > session object information will be stored and managed by
> > Aspnet_wp.exe
> > > > > > process. So in this case the Session["UserName"] will always have
> a
> > > > valid
> > > > > > data regardless if the user enables cookies or not. Am I
correct?
> > > > > >
> > > > > > This all lead me to a conclusion that if I use the Session
object
> to
> > > > store
> > > > > > user information, then I should be safe reading and

storing the
> > > > > information
> > > > > > weather the user enables cookies or not.
> > > > > >
> > > > > >
> > > > > > Thanks
> > > > > >
> > > > > >
> > > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 18 '05 #10

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

Similar topics

1
by: Avinash Korwarkar | last post by:
Hi Guys, I am using sessions to store the login name and then retrieve it on every page. Here are the details of the php settings. 1) I have PHP 4.2.2 installed on a Apache 1.3.27 server. 2)...
4
by: Matt | last post by:
Why on earth would the security settings affect session variables? We're not setting a cookie here. I'm just trying to carry one session variable over from one page to the next. If the security...
14
by: Paul Yanzick | last post by:
Hello, I am trying to develop a book tracking application for my capstone in school, and am running into a problem. The application is an ASP.Net application written in C#. The first page you...
5
by: Abhilash.k.m | last post by:
This is regarding the session management using Out of proc session management(SQL SERVER). Among the samples below which one is better to set the session? 1. There are 20 session...
5
by: juan | last post by:
What are session variables in a web page of ASPX (Visual Basic NET)? Thanks.
13
by: | last post by:
Simple question, I think... I'm storing an object in the Session object. In the code behind I read that object: trx = CType(Session("Transaction"), BOCSTransaction) If I change any...
1
by: Santosh | last post by:
Dear All i am writting a code sending mail with attachement. i am writting code for sending mail in one page and code for attaching a file in the next page. aftet attaching a file i am taking...
8
by: YYZ | last post by:
I'm using asp, not asp.net. I've got some open ended questions that I was really hoping someone in here could answer, or direct me to some resources that will help me answer them on my own. ...
4
by: j.wendelmuth | last post by:
Hi, i have a problem with PHP sessions. The problem only occurs on one machine (PHP v5.2.4 incl. mod_security). On another one (PHP v5.2.0 no mod security) my application works fine. Here's...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
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...

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.