Hi all,
I have a news website tat is developed on joomla 1.5.Login facility is
done thru a login component.On each page,ther s a 'Log In' link that
redirects them to a login page.On successful login,user details are
set in session as well as cookies and then redirected back to d
referring page.The 'Log In' section changes to 'Welcome user',along
wid a 'Log Out' link.All this works d same in IE 6 as well as in FF
2.The difference comes durin log out action.
In FF,on clickin 'Log Out',the required session vars are set '' as
well as cookies in d component and then redirected back to referring
page.The login bar changes back to 'Log in'.But in IE,once redirected
from the component,the page still shows the login bar as 'Welcome
user'.Only if i manually click the refresh button (of IE), the page
gets refreshed and the login bar shows logged out status.
Any help wud be highly appreciated... 105 6025
sw@bglore wrote:
Hi all,
I have a news website tat is developed on joomla 1.5.Login facility is
done thru a login component.On each page,ther s a 'Log In' link that
redirects them to a login page.On successful login,user details are
set in session as well as cookies and then redirected back to d
referring page.The 'Log In' section changes to 'Welcome user',along
wid a 'Log Out' link.All this works d same in IE 6 as well as in FF
2.The difference comes durin log out action.
In FF,on clickin 'Log Out',the required session vars are set '' as
well as cookies in d component and then redirected back to referring
page.The login bar changes back to 'Log in'.But in IE,once redirected
from the component,the page still shows the login bar as 'Welcome
user'.Only if i manually click the refresh button (of IE), the page
gets refreshed and the login bar shows logged out status.
Any help wud be highly appreciated...
And your PHP programming question is?
Try the Joomla support groups.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp. js*******@attglobal.net
==================
Hi,
Try using session_cache_limiter('nocache') before session_start. This
will tell the browser not to cache the page.
Regards,
John Peters
On Oct 28, 5:21 am, "sw@bglore" <pranav.k...@gmail.comwrote:
Hi all,
I have a news website tat is developed on joomla 1.5.Login facility is
done thru a login component.On each page,ther s a 'Log In' link that
redirects them to a login page.On successful login,user details are
set in session as well as cookies and then redirected back to d
referring page.The 'Log In' section changes to 'Welcome user',along
wid a 'Log Out' link.All this works d same in IE 6 as well as in FF
2.The difference comes durin log out action.
In FF,on clickin 'Log Out',the required session vars are set '' as
well as cookies in d component and then redirected back to referring
page.The login bar changes back to 'Log in'.But in IE,once redirected
from the component,the page still shows the login bar as 'Welcome
user'.Only if i manually click the refresh button (of IE), the page
gets refreshed and the login bar shows logged out status.
Any help wud be highly appreciated...
Thanks 4 d help..but tat dint help.
I found tis particulr code in the application wher d sessions wher
restartd.
session_cache_limiter('none');
session_start();
// Send modified header for IE 6.0 Security Policy
header('P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"');
I tried commentin out d header..but dint help.I wud like to know
whethr the abov header s correct.
petersprc wrote:
On Oct 28, 5:21 am, "sw@bglore" <pranav.k...@gmail.comwrote:
>Hi all,
I have a news website tat is developed on joomla 1.5.Login facility is done thru a login component.On each page,ther s a 'Log In' link that redirects them to a login page.On successful login,user details are set in session as well as cookies and then redirected back to d referring page.The 'Log In' section changes to 'Welcome user',along wid a 'Log Out' link.All this works d same in IE 6 as well as in FF 2.The difference comes durin log out action.
In FF,on clickin 'Log Out',the required session vars are set '' as well as cookies in d component and then redirected back to referring page.The login bar changes back to 'Log in'.But in IE,once redirected from the component,the page still shows the login bar as 'Welcome user'.Only if i manually click the refresh button (of IE), the page gets refreshed and the login bar shows logged out status.
Any help wud be highly appreciated...
Hi,
Try using session_cache_limiter('nocache') before session_start. This
will tell the browser not to cache the page.
Regards,
John Peters
(Top posting fixed)
Which the browser can ignore, unfortunately. And even if the browser
doesn't ignore the cache, any of the systems between the client and the
server could cache it.
How I wish it did work properly.
P.S. Please don't top post.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp. js*******@attglobal.net
==================
Try using 'nocache' instead of 'none'. This will set the Cache-
Control, Expires, and Pragma headers as below. The 'none' value won't
define any additional cache headers.
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0,
pre-check=0
Pragma: no-cache
On Oct 29, 5:29 am, "sw@bglore" <pranav.k...@gmail.comwrote:
Thanks 4 d help..but tat dint help.
I found tis particulr code in the application wher d sessions wher
restartd.
session_cache_limiter('none');
session_start();
// Send modified header for IE 6.0 Security Policy
header('P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"');
I tried commentin out d header..but dint help.I wud like to know
whethr the abov header s correct.
On Oct 29, 9:58 pm, petersprc <peters...@gmail.comwrote:
Try using 'nocache' instead of 'none'. This will set the Cache-
Control, Expires, and Pragma headers as below. The 'none' value won't
define any additional cache headers.
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0,
pre-check=0
Pragma: no-cache
On Oct 29, 5:29 am, "sw@bglore" <pranav.k...@gmail.comwrote:
Thanks 4 d help..but tat dint help.
I found tis particulr code in the application wher d sessions wher
restartd.
session_cache_limiter('none');
session_start();
// Send modified header for IE 6.0 Security Policy
header('P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"');
I tried commentin out d header..but dint help.I wud like to know
whethr the abov header s correct.
I am not kind of sure as to whethr it is a cache problem.Because wen a
user clicks on 'Log In',he s redirected to login page.If he has
successfully logged in,requird sessions 'n cookies r set and then
redirected back to referring page.At this point,the referrin page
shows the correct user name from session/cookie.
Wen clickin 'Log Out',the control goes to login function,sessions 'n
cookies r reset and then redirectd back to referrin page.At this
point,the referrin page still shows the username 'n not d logged out
status.Y does d cache comes in2 picture durin log out action 'n not
durin login action?
The login request is submitting a form.
On Oct 30, 12:41 am, "sw@bglore" <pranav.k...@gmail.comwrote:
On Oct 29, 9:58 pm, petersprc <peters...@gmail.comwrote:
Try using 'nocache' instead of 'none'. This will set the Cache-
Control, Expires, and Pragma headers as below. The 'none' value won't
define any additional cache headers.
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0,
pre-check=0
Pragma: no-cache
On Oct 29, 5:29 am, "sw@bglore" <pranav.k...@gmail.comwrote:
Thanks 4 d help..but tat dint help.
I found tis particulr code in the application wher d sessions wher
restartd.
session_cache_limiter('none');
session_start();
// Send modified header for IE 6.0 Security Policy
header('P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"');
I tried commentin out d header..but dint help.I wud like to know
whethr the abov header s correct.
I am not kind of sure as to whethr it is a cache problem.Because wen a
user clicks on 'Log In',he s redirected to login page.If he has
successfully logged in,requird sessions 'n cookies r set and then
redirected back to referring page.At this point,the referrin page
shows the correct user name from session/cookie.
Wen clickin 'Log Out',the control goes to login function,sessions 'n
cookies r reset and then redirectd back to referrin page.At this
point,the referrin page still shows the username 'n not d logged out
status.Y does d cache comes in2 picture durin log out action 'n not
durin login action?
This combination of headers will be honored by most hosts/proxies. In
a situation where it's not, you can try using URL-based sessions or
putting your site under https.
On Oct 29, 6:24 am, Jerry Stuckle <jstuck...@attglobal.netwrote:
petersprc wrote:
On Oct 28, 5:21 am, "sw@bglore" <pranav.k...@gmail.comwrote:
Hi all,
I have a news website tat is developed on joomla 1.5.Login facility is
done thru a login component.On each page,ther s a 'Log In' link that
redirects them to a login page.On successful login,user details are
set in session as well as cookies and then redirected back to d
referring page.The 'Log In' section changes to 'Welcome user',along
wid a 'Log Out' link.All this works d same in IE 6 as well as in FF
2.The difference comes durin log out action.
In FF,on clickin 'Log Out',the required session vars are set '' as
well as cookies in d component and then redirected back to referring
page.The login bar changes back to 'Log in'.But in IE,once redirected
from the component,the page still shows the login bar as 'Welcome
user'.Only if i manually click the refresh button (of IE), the page
gets refreshed and the login bar shows logged out status.
Any help wud be highly appreciated...
Hi,
>
Try using session_cache_limiter('nocache') before session_start. This
will tell the browser not to cache the page.
>
Regards,
John Peters
>
(Top posting fixed)
Which the browser can ignore, unfortunately. And even if the browser
doesn't ignore the cache, any of the systems between the client and the
server could cache it.
How I wish it did work properly.
P.S. Please don't top post.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
petersprc wrote:
On Oct 29, 6:24 am, Jerry Stuckle <jstuck...@attglobal.netwrote:
>petersprc wrote:
> > Try using session_cache_limiter('nocache') before session_start. This will tell the browser not to cache the page.
Regards, John Peters (Top posting fixed)
Which the browser can ignore, unfortunately. And even if the browser doesn't ignore the cache, any of the systems between the client and the server could cache it.
How I wish it did work properly.
P.S. Please don't top post.
This combination of headers will be honored by most hosts/proxies. In
a situation where it's not, you can try using URL-based sessions or
putting your site under https.
(Top posting fixed - again).
Not necessarily. Some do, some don't. And in some cases it depends on
the browser settings. The same is true with https:.
But this should be discussed in alt.html - this is not a PHP problem.
And again - please don't top post. This group uses bottom posting or
interwoven posting.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp. js*******@attglobal.net
==================
There are no clients in widespread use that behave the way you
describe. This is an http issue, not html.
On Oct 30, 8:32 am, Jerry Stuckle <jstuck...@attglobal.netwrote:
petersprc wrote:
On Oct 29, 6:24 am, Jerry Stuckle <jstuck...@attglobal.netwrote:
petersprc wrote:
Try using session_cache_limiter('nocache') before session_start. This
will tell the browser not to cache the page.
Regards,
John Peters
(Top posting fixed)
Which the browser can ignore, unfortunately. And even if the browser
doesn't ignore the cache, any of the systems between the client and the
server could cache it.
How I wish it did work properly.
P.S. Please don't top post.
This combination of headers will be honored by most hosts/proxies. In
a situation where it's not, you can try using URL-based sessions or
putting your site under https.
>
(Top posting fixed - again).
Not necessarily. Some do, some don't. And in some cases it depends on
the browser settings. The same is true with https:.
But this should be discussed in alt.html - this is not a PHP problem.
And again - please don't top post. This group uses bottom posting or
interwoven posting.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
petersprc wrote:
On Oct 30, 8:32 am, Jerry Stuckle <jstuck...@attglobal.netwrote:
>petersprc wrote:
>>On Oct 29, 6:24 am, Jerry Stuckle <jstuck...@attglobal.netwrote: petersprc wrote: Try using session_cache_limiter('nocache') before session_start. This will tell the browser not to cache the page. Regards, John Peters (Top posting fixed) Which the browser can ignore, unfortunately. And even if the browser doesn't ignore the cache, any of the systems between the client and the server could cache it. How I wish it did work properly. P.S. Please don't top post. This combination of headers will be honored by most hosts/proxies. In a situation where it's not, you can try using URL-based sessions or putting your site under https. (Top posting fixed - again).
Not necessarily. Some do, some don't. And in some cases it depends on the browser settings. The same is true with https:.
But this should be discussed in alt.html - this is not a PHP problem.
And again - please don't top post. This group uses bottom posting or interwoven posting.
There are no clients in widespread use that behave the way you
describe. This is an http issue, not html.
From someone who can't learn not to top post.
You're right, http is involved. But the nocache command is an html tag
and governs how the browser and hosts operate.
And you really should learn about clients and hosts.
A. Maybe because they're too lazy to go to the end of the message before
posting.
Q. So why do they do it?
A. Because it upsets the flow of the conversation
Q. Why is top posting bad?
A. People who top post.
Q. Who are the most annoying people on usenet?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp. js*******@attglobal.net
==================
This is incorrect. The no-cache keyword is an http directive not an
html tag. See the spec: http://www.w3.org/Protocols/rfc2616/...html#sec14.9.1 http://www.w3.org/Protocols/HTTP/1.0/spec.html#Pragma
You may be thinking of the meta tag which can be used to accomplish
roughly the same thing but is not as reliable.
You're right, http is involved. But the nocache command is an html tag
and governs how the browser and hosts operate.
And you really should learn about clients and hosts.
A. Maybe because they're too lazy to go to the end of the message before
posting.
Q. So why do they do it?
A. Because it upsets the flow of the conversation
Q. Why is top posting bad?
A. People who top post.
Q. Who are the most annoying people on usenet?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
petersprc wrote:
>You're right, http is involved. But the nocache command is an html tag and governs how the browser and hosts operate.
And you really should learn about clients and hosts.
A. Maybe because they're too lazy to go to the end of the message before posting. Q. So why do they do it? A. Because it upsets the flow of the conversation Q. Why is top posting bad? A. People who top post. Q. Who are the most annoying people on usenet?
This is incorrect. The no-cache keyword is an http directive not an
html tag. See the spec:
http://www.w3.org/Protocols/rfc2616/...html#sec14.9.1 http://www.w3.org/Protocols/HTTP/1.0/spec.html#Pragma
You may be thinking of the meta tag which can be used to accomplish
roughly the same thing but is not as reliable.
If you can't learn not to top post, I'm not going to discuss this with
you any further.
As I said before. The standard for this newsgroup is bottom or
interwoven posting. You will get few people to talk to you here if you
continue to top post.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp. js*******@attglobal.net
==================
there is no "standard" posting style as long as it's clear and
understandable! top-posting is fine. bottom-posting is good too. it's a
matter of individual preference.... your whining is way off-topic. this has
nothing to do with the OP's question.
--Jackie S
"Jerry Stuckle" <js*******@attglobal.netwrote
As I said before. The standard for this newsgroup is bottom or interwoven
posting. You will get few people to talk to you here if you continue to
top post.
On 31/10/2007 in message <13*************@news.supernews.comJackie Silva
wrote:
>there is no "standard" posting style as long as it's clear and understandable! top-posting is fine. bottom-posting is good too. it's a matter of individual preference.... your whining is way off-topic. this has nothing to do with the OP's question.
It would be more accurate to say that relative newcomers are unaware of
the conventions, or the reasons for them.
Try a Google for 'netiquette'.
>--Jackie S
There's also a standard for signature separators, you don't meet that
either.
--
Jeff Gaines Damerham Hampshire UK
This is as bad as it can get, but don't bet on it
On Wed, 31 Oct 2007 07:55:43 +0100, Jackie Silva <ma*********@yahoo.com>
wrote:
"Jerry Stuckle" <js*******@attglobal.netwrote
>As I said before. The standard for this newsgroup is bottom or interwoven posting. You will get few people to talk to you here if you continue to top post.
there is no "standard" posting style as long as it's clear and
understandable! top-posting is fine. bottom-posting is good too. it's a
matter of individual preference.... your whining is way off-topic. this
has
nothing to do with the OP's question.
Argument has been done over and over again. Do you use OE Quotefix? If
not: install that thingy, it will whip MSOE in shape, acting more like a
standard newsreader, and a lot will become clear.
--
Rik Wasmus
Jackie Silva wrote:
"Jerry Stuckle" <js*******@attglobal.netwrote
>As I said before. The standard for this newsgroup is bottom or interwoven posting. You will get few people to talk to you here if you continue to top post.
there is no "standard" posting style as long as it's clear and
understandable! top-posting is fine. bottom-posting is good too. it's a
matter of individual preference.... your whining is way off-topic.
this has
nothing to do with the OP's question.
--Jackie S
(Top posting fixed)
Yes, there is, and you have to look at each newsgroup. The standard in
this newsgroup is bottom or interwoven posting.
It's a matter of *group* preference, not *individual* preference.
But continue top posting - you won't get a lot of response.
And your comment added absolutely nothing to the conversation - except
to show you don't understand what you're doing.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp. js*******@attglobal.net
==================
On Oct 31, 2:17 pm, Jerry Stuckle <jstuck...@attglobal.netwrote:
Jackie Silva wrote:
"Jerry Stuckle" <jstuck...@attglobal.netwrote
As I said before. The standard for this newsgroup is bottom or interwoven
posting. You will get few people to talk to you here if you continue to
top post.
there is no "standard" posting style as long as it's clear and
understandable! top-posting is fine. bottom-posting is good too. it's a
matter of individual preference.... your whining is way off-topic.
this has
nothing to do with the OP's question.
>
--Jackie S
>
(Top posting fixed)
Yes, there is, and you have to look at each newsgroup. The standard in
this newsgroup is bottom or interwoven posting.
It's a matter of *group* preference, not *individual* preference.
But continue top posting - you won't get a lot of response.
And your comment added absolutely nothing to the conversation - except
to show you don't understand what you're doing.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
I think tat my problem has gone way out of d picture here.
Anyways, somehow got the problem solved just by including few lines of
code at the point of logout.The IE browser was always takin the copy
of d referrin page frm the cache after logout and not frm the
server.Hence,to bypass d cache,i always appended a parameter to the
referring URL tat has a random values.Tis tuk care tat the browser
always sends a new request to the server for the referring page and ll
display the logged out status.
References : http://www.rgagnon.com/jsdetails/js-0014.html http://www.crackajax.net/cachebust.php
there are multiple posting conventions used on usenet. read up: http://en.wikipedia.org/wiki/Posting_style
your arguments against one posting style are based on the original techical
limitations of usenet.
"Jeff Gaines" <jg************@yahoo.co.ukwrote in message
news:xn****************@news.individual.net...
On 31/10/2007 in message <13*************@news.supernews.comJackie Silva
wrote:
>>there is no "standard" posting style as long as it's clear and understandable! top-posting is fine. bottom-posting is good too. it's a matter of individual preference.... your whining is way off-topic. this has nothing to do with the OP's question.
It would be more accurate to say that relative newcomers are unaware of
the conventions, or the reasons for them.
Try a Google for 'netiquette'.
>>--Jackie S
There's also a standard for signature separators, you don't meet that
either.
--
Jeff Gaines Damerham Hampshire UK
This is as bad as it can get, but don't bet on it
"Rik Wasmus" <lu************@hotmail.comwrote
Argument has been done over and over again.
true, it is a favorite flamewar topic. like emacs vs. vi, or 2 spaces vs. 4
spaces indentation.
you mis-quoted me in your response! a professional editor would cry at the
amateurish way you cut-and-paste quotes together.
there are plenty of posters who use top style in this ng. do you really
think you can convince anyone to use your personal preference, especially
when you can't even quote properly yourself?
--Jackie S
"Jerry Stuckle" <js*******@attglobal.netwrote
Yes, there is, and you have to look at each newsgroup. The standard in
this newsgroup is bottom or interwoven posting.
On 31 Oct, 15:56, "Jackie Silva" <maritanl...@yahoo.comwrote:
there are plenty of posters who use top style in this ng.
No there are only a few others as ignorant as you who do his. The vast
majority of posters here are sensible.
Greetings, Jackie Silva.
In reply to Your message dated Wednesday, October 31, 2007, 18:48:30,
there are multiple posting conventions used on usenet. read up: http://en.wikipedia.org/wiki/Posting_style
your arguments against one posting style are based on the original techical
limitations of usenet.
Please don't top-post.
It is hard to read and understand.
Period.
--
Sincerely Yours, AnrDaemon <an*******@freemail.ru>
what kind of reading problems are you having?
"AnrDaemon" <an*******@freemail.ruwrote
Please don't top-post.
It is hard to read and understand.
Period.
you misspelled "this" and should have a comma after "No". do you spell check
your posts?
"Captain Paralytic" <pa**********@yahoo.comwrote
No there are only a few others as ignorant as you who do his. The vast
majority of posters here are sensible.
Jackie Silva wrote:
"Jeff Gaines" <jg************@yahoo.co.ukwrote in message
news:xn****************@news.individual.net...
>On 31/10/2007 in message <13*************@news.supernews.comJackie Silva wrote:
>>there is no "standard" posting style as long as it's clear and understandable! top-posting is fine. bottom-posting is good too. it's a matter of individual preference.... your whining is way off-topic. this has nothing to do with the OP's question.
It would be more accurate to say that relative newcomers are unaware of the conventions, or the reasons for them.
Try a Google for 'netiquette'.
>>--Jackie S
There's also a standard for signature separators, you don't meet that either.
-- Jeff Gaines Damerham Hampshire UK This is as bad as it can get, but don't bet on it
there are multiple posting conventions used on usenet. read up: http://en.wikipedia.org/wiki/Posting_style
your arguments against one posting style are based on the original
techical
limitations of usenet.
(Top posting fixed)
No, my arguments are based on the STANDARDS OF THIS GROUP.
And idiots who refuse to follow standards don't get many responses in
this group.
Your arguments for top posting are based on being too lazy to scroll to
the bottom of the page before you start posting.
A. Because they're arrogant jerks.
Q. Why do they continue doing it?
A. Because it upsets the normal flow of the conversation.
Q. Why is top posting bad?
A. People who top post.
Q. Why are the most annoying people on usenet?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp. js*******@attglobal.net
==================
Jackie Silva wrote:
"Jerry Stuckle" <js*******@attglobal.netwrote
>Yes, there is, and you have to look at each newsgroup. The standard in this newsgroup is bottom or interwoven posting.
you mis-quoted me in your response! a professional editor would cry
at the
amateurish way you cut-and-paste quotes together.
there are plenty of posters who use top style in this ng. do you really
think you can convince anyone to use your personal preference,
especially
when you can't even quote properly yourself?
--Jackie S
Read again. There are very few top posters in this newsgroup. Most
people follow the newsgroup standards.
Right now we have two. And guess who's one of them?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp. js*******@attglobal.net
==================
Captain Paralytic wrote:
On 31 Oct, 15:56, "Jackie Silva" <maritanl...@yahoo.comwrote:
>there are plenty of posters who use top style in this ng.
No there are only a few others as ignorant as you who do his. The vast
majority of posters here are sensible.
Paul, I have now come to the conclusion he's a troll.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp. js*******@attglobal.net
==================
On Wed, 31 Oct 2007 10:09:26 +0100, Jeff Gaines
<jg************@yahoo.co.ukwrote:
On 31/10/2007 in message <13*************@news.supernews.comJackie
Silva wrote:
>there is no "standard" posting style as long as it's clear and understandable! top-posting is fine. bottom-posting is good too. it's a matter of individual preference.... your whining is way off-topic. this has nothing to do with the OP's question.
It would be more accurate to say that relative newcomers are unaware of
the conventions, or the reasons for them.
Try a Google for 'netiquette'.
>--Jackie S
There's also a standard for signature separators, you don't meet that
either.
Actually, by the grace of his broken sig seperator I can still easily
quote his quotes. If it wouldn't be for that I'd have to jump through some
hoops, as his whole quote qould be considered one big signature :)
--
Rik Wasmus
Top posting is preferable in many instances. However, the top posting vs. bottom posting debate is as old as Usenet itself and to this day continues to incite religious wars with each side claiming ultimate supremacy. A better question is why is this debate taking place in a php group?
--
JamesCX DiPietro (cdgzone at gmail.com)
Jeff Gaines <jg************@yahoo.co.ukwrote:
On 31/10/2007 in message <13*************@news.supernews.comJackie Silva
wrote:
>>there is no "standard" posting style as long as it's clear and understandable! top-posting is fine. bottom-posting is good too. it's a matter of individual preference.... your whining is way off-topic. this has nothing to do with the OP's question.
It would be more accurate to say that relative newcomers are unaware of
the conventions, or the reasons for them.
Try a Google for 'netiquette'.
>>--Jackie S
There's also a standard for signature separators, you don't meet that
either.
why do you insist on misquoting people when you respond?
"Jerry Stuckle" <js*******@attglobal.netwrote in message
news:ap******************************@comcast.com. ..
Jackie Silva wrote:
>"Jeff Gaines" <jg************@yahoo.co.ukwrote in message news:xn****************@news.individual.net...
>>On 31/10/2007 in message <13*************@news.supernews.comJackie Silva wrote:
there is no "standard" posting style as long as it's clear and understandable! top-posting is fine. bottom-posting is good too. it's a matter of individual preference.... your whining is way off-topic. this has nothing to do with the OP's question. It would be more accurate to say that relative newcomers are unaware of the conventions, or the reasons for them.
Try a Google for 'netiquette'.
--Jackie S There's also a standard for signature separators, you don't meet that either.
-- Jeff Gaines Damerham Hampshire UK This is as bad as it can get, but don't bet on it
there are multiple posting conventions used on usenet. read up: http://en.wikipedia.org/wiki/Posting_style
your arguments against one posting style are based on the original
techical
limitations of usenet.
(Top posting fixed)
No, my arguments are based on the STANDARDS OF THIS GROUP.
And idiots who refuse to follow standards don't get many responses in this
group.
Your arguments for top posting are based on being too lazy to scroll to
the bottom of the page before you start posting.
A. Because they're arrogant jerks.
Q. Why do they continue doing it?
A. Because it upsets the normal flow of the conversation.
Q. Why is top posting bad?
A. People who top post.
Q. Why are the most annoying people on usenet?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp. js*******@attglobal.net
==================
try a quick google for stuckle, you might find it interesting.
"Jerry Stuckle" <js*******@attglobal.netwrote in message
news:ap******************************@comcast.com. ..
Captain Paralytic wrote:
>On 31 Oct, 15:56, "Jackie Silva" <maritanl...@yahoo.comwrote:
>>there are plenty of posters who use top style in this ng.
No there are only a few others as ignorant as you who do his. The vast majority of posters here are sensible.
Paul, I have now come to the conclusion he's a troll.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp. js*******@attglobal.net
==================
Rik Wasmus wrote:
On Wed, 31 Oct 2007 10:09:26 +0100, Jeff Gaines
<jg************@yahoo.co.ukwrote:
>On 31/10/2007 in message <13*************@news.supernews.comJackie Silva wrote:
>>--Jackie S
There's also a standard for signature separators, you don't meet that either.
Actually, by the grace of his broken sig seperator I can still easily
quote his quotes. If it wouldn't be for that I'd have to jump through
some hoops, as his whole quote qould be considered one big signature
:)
Rik, I tried doing the "right" sig for a while but it didn't do work. I'll
do it now and tell me if it works.
--
Shelly
On Wed, 31 Oct 2007 18:33:08 +0100, Shelly
<sh************@asap-consult.comwrote:
Rik Wasmus wrote:
>On Wed, 31 Oct 2007 10:09:26 +0100, Jeff Gaines <jg************@yahoo.co.ukwrote:
>>On 31/10/2007 in message <13*************@news.supernews.comJackie Silva wrote: --Jackie S
There's also a standard for signature separators, you don't meet that either.
Actually, by the grace of his broken sig seperator I can still easily quote his quotes. If it wouldn't be for that I'd have to jump through some hoops, as his whole quote qould be considered one big signature :)
Rik, I tried doing the "right" sig for a while but it didn't do work.
I'll
do it now and tell me if it works.
Works perfectly, at least in Opera, dash-dash-space-newline in the source,
so a decent reader should recognize it without any trouble.
--
Rik Wasmus
Actually, some popular newsreaders will hide the quotes in certain cases.
--
JamesCX DiPietro (cdgzone at gmail.com)
Rik Wasmus <lu************@hotmail.comwrote:
On Wed, 31 Oct 2007 07:55:43 +0100, Jackie Silva <ma*********@yahoo.com>
wrote:
>"Jerry Stuckle" <js*******@attglobal.netwrote
>>As I said before. The standard for this newsgroup is bottom or interwoven posting. You will get few people to talk to you here if you continue to top post.
there is no "standard" posting style as long as it's clear and understandable! top-posting is fine. bottom-posting is good too. it's a matter of individual preference.... your whining is way off-topic. this has nothing to do with the OP's question.
Argument has been done over and over again. Do you use OE Quotefix? If
not: install that thingy, it will whip MSOE in shape, acting more like a
standard newsreader, and a lot will become clear.
Rik Wasmus wrote:
On Wed, 31 Oct 2007 18:33:08 +0100, Shelly
<sh************@asap-consult.comwrote:
>Rik Wasmus wrote:
>>On Wed, 31 Oct 2007 10:09:26 +0100, Jeff Gaines <jg************@yahoo.co.ukwrote:
On 31/10/2007 in message <13*************@news.supernews.com> Jackie Silva wrote: --Jackie S
There's also a standard for signature separators, you don't meet that either.
Actually, by the grace of his broken sig seperator I can still easily quote his quotes. If it wouldn't be for that I'd have to jump through some hoops, as his whole quote qould be considered one big signature :)
Rik, I tried doing the "right" sig for a while but it didn't do work. I'll do it now and tell me if it works.
Works perfectly, at least in Opera, dash-dash-space-newline in the
source, so a decent reader should recognize it without any trouble.
One last question. Did you cut my sig, or was it done automatically? Yours
was done automatically when I hit "Reply Group".
--
Shelly
JamesCX DiPietro <cd*****@gmail.comwrote in news:5ortjoFo9u6fU1
@mid.individual.net:
Actually, some popular newsreaders will hide the quotes in certain cases.
if only they'd fix top-posting
On Wed, 31 Oct 2007 18:56:30 +0100, Shelly
<sh************@asap-consult.comwrote:
Rik Wasmus wrote:
>On Wed, 31 Oct 2007 18:33:08 +0100, Shelly <sh************@asap-consult.comwrote:
>>Rik Wasmus wrote: On Wed, 31 Oct 2007 10:09:26 +0100, Jeff Gaines <jg************@yahoo.co.ukwrote:
On 31/10/2007 in message <13*************@news.supernews.com> Jackie Silva wrote: >--Jackie S > There's also a standard for signature separators, you don't meet that either.
Actually, by the grace of his broken sig seperator I can still easily quote his quotes. If it wouldn't be for that I'd have to jump through some hoops, as his whole quote qould be considered one big signature :)
Rik, I tried doing the "right" sig for a while but it didn't do work. I'll do it now and tell me if it works.
Works perfectly, at least in Opera, dash-dash-space-newline in the source, so a decent reader should recognize it without any trouble.
One last question. Did you cut my sig, or was it done automatically?
Yours
was done automatically when I hit "Reply Group".
Yup, one of the advantages. (Which makes it a pain to quote topposters
with correct sig seperators, fortunately a rare combination)
--
Rik Wasmus
Jerry, you don't speak for this newsgroup. I'm not surprised you've trashed another thread with one of your off-topic flamefests. It's a fruitless exercise that has no place here.
--
JamesCX DiPietro (cdgzone at gmail.com)
Jerry Stuckle <js*******@attglobal.netwrote:
Jackie Silva wrote:
>"Jerry Stuckle" <js*******@attglobal.netwrote
>>As I said before. The standard for this newsgroup is bottom or interwoven posting. You will get few people to talk to you here if you continue to top post.
there is no "standard" posting style as long as it's clear and
understandable! top-posting is fine. bottom-posting is good too. it's a
matter of individual preference.... your whining is way off-topic.
this has
nothing to do with the OP's question.
--Jackie S
(Top posting fixed)
Yes, there is, and you have to look at each newsgroup. The standard in
this newsgroup is bottom or interwoven posting.
It's a matter of *group* preference, not *individual* preference.
But continue top posting - you won't get a lot of response.
And your comment added absolutely nothing to the conversation - except
to show you don't understand what you're doing.
there is no automatic way to trim posts. and there are times when you may
want to quote the sig.
"Rik Wasmus" <lu************@hotmail.comwrote in message
news:op***************@metallium.lan...
On Wed, 31 Oct 2007 18:56:30 +0100, Shelly
<sh************@asap-consult.comwrote:
>Rik Wasmus wrote:
>>On Wed, 31 Oct 2007 18:33:08 +0100, Shelly <sh************@asap-consult.comwrote: Rik Wasmus wrote: On Wed, 31 Oct 2007 10:09:26 +0100, Jeff Gaines <jg************@yahoo.co.ukwrote: > >On 31/10/2007 in message <13*************@news.supernews.com> >Jackie Silva wrote: >>--Jackie S >> >There's also a standard for signature separators, you don't meet >that either. > Actually, by the grace of his broken sig seperator I can still easily quote his quotes. If it wouldn't be for that I'd have to jump through some hoops, as his whole quote qould be considered one big signature :)
Rik, I tried doing the "right" sig for a while but it didn't do work. I'll do it now and tell me if it works.
Works perfectly, at least in Opera, dash-dash-space-newline in the source, so a decent reader should recognize it without any trouble.
One last question. Did you cut my sig, or was it done automatically? Yours was done automatically when I hit "Reply Group".
Yup, one of the advantages. (Which makes it a pain to quote topposters
with correct sig seperators, fortunately a rare combination)
--
Rik Wasmus
This is one potential pitfall of interwoven posting. The process of trimming can lead to misquoting or questionable editorializing, which reduces clarity.
--
JamesCX DiPietro (cdgzone at gmail.com)
Jackie Silva <ma*********@yahoo.comwrote:
you mis-quoted me in your response! a professional editor would cry at the
amateurish way you cut-and-paste quotes together.
there are plenty of posters who use top style in this ng. do you really
think you can convince anyone to use your personal preference, especially
when you can't even quote properly yourself?
--Jackie S
"Jerry Stuckle" <js*******@attglobal.netwrote
>Yes, there is, and you have to look at each newsgroup. The standard in this newsgroup is bottom or interwoven posting.
On Wed, 31 Oct 2007 19:14:00 +0100, Jackie Silva <ma*********@yahoo.com>
wrote:
there is no automatic way to trim posts.
True for most newsreaders, some of them have settings to strip certain
'levels', some of them let you select (multiple or singel portions of)
text which will be the only quotes on a reply, etc. One should always try
to trim done quotes to the essentials. Quoting everything is almost as bad
is no quote at all
and there are times when you may
want to quote the sig.
O sure, I've done that once or twice in my entire usenet usage. Let's trim
signatures automatically for the other 99,999% where they are NOT needed
in the quote.
--
Rik Wasmus
Stuckle is an old hand at the troll business. You may as well add him to your killfile.
--
JamesCX DiPietro (cdgzone at gmail.com)
Jackie Silva <ma*********@yahoo.comwrote:
try a quick google for stuckle, you might find it interesting.
"Jerry Stuckle" <js*******@attglobal.netwrote in message
news:ap******************************@comcast.com. ..
>Captain Paralytic wrote:
>>On 31 Oct, 15:56, "Jackie Silva" <maritanl...@yahoo.comwrote: there are plenty of posters who use top style in this ng. No there are only a few others as ignorant as you who do his. The vast majority of posters here are sensible.
Paul, I have now come to the conclusion he's a troll.
-- ================== Remove the "x" from my email address Jerry Stuckle JDS Computer Training Corp. js*******@attglobal.net ==================
..oO(Jackie Silva)
>there is no automatic way to trim posts.
Good newsreaders are able to automatically remove a properly delimited
sig in the response.
>and there are times when you may want to quote the sig.
Nothing easier than that.
Micha
..oO(Jackie Silva)
>what kind of reading problems are you having?
None anymore. I don't have to read you.
If you offend the regulars in a newsgroup, you shouldn't expect much
help if you should ever need it. We want nothing from you - you want
something from us.
Micha
Shelly wrote:
Rik Wasmus wrote:
>On Wed, 31 Oct 2007 10:09:26 +0100, Jeff Gaines <jg************@yahoo.co.ukwrote:
>>On 31/10/2007 in message <13*************@news.supernews.comJackie Silva wrote: --Jackie S There's also a standard for signature separators, you don't meet that either.
Actually, by the grace of his broken sig seperator I can still easily quote his quotes. If it wouldn't be for that I'd have to jump through some hoops, as his whole quote qould be considered one big signature :)
Rik, I tried doing the "right" sig for a while but it didn't do work. I'll
do it now and tell me if it works.
Looks good here, Shelly.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp. js*******@attglobal.net
==================
Jackie Silva wrote:
"Jerry Stuckle" <js*******@attglobal.netwrote in message
news:ap******************************@comcast.com. ..
>Jackie Silva wrote:
>>"Jeff Gaines" <jg************@yahoo.co.ukwrote in message news:xn****************@news.individual.net... On 31/10/2007 in message <13*************@news.supernews.comJackie Silva wrote:
there is no "standard" posting style as long as it's clear and understandable! top-posting is fine. bottom-posting is good too. it's a matter of individual preference.... your whining is way off-topic. this has nothing to do with the OP's question. It would be more accurate to say that relative newcomers are unaware of the conventions, or the reasons for them.
Try a Google for 'netiquette'.
--Jackie S There's also a standard for signature separators, you don't meet that either.
-- Jeff Gaines Damerham Hampshire UK This is as bad as it can get, but don't bet on it
there are multiple posting conventions used on usenet. read up: http://en.wikipedia.org/wiki/Posting_style
your arguments against one posting style are based on the original
techical
>>limitations of usenet.
(Top posting fixed)
No, my arguments are based on the STANDARDS OF THIS GROUP.
And idiots who refuse to follow standards don't get many responses in this group.
Your arguments for top posting are based on being too lazy to scroll to the bottom of the page before you start posting.
A. Because they're arrogant jerks. Q. Why do they continue doing it? A. Because it upsets the normal flow of the conversation. Q. Why is top posting bad? A. People who top post. Q. Why are the most annoying people on usenet?
why do you insist on misquoting people when you respond?
(Top posting fixed)
And exactly where did I misquote you? My quotes of you are *exactly* as
entered.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp. js*******@attglobal.net
==================
JamesCX DiPietro wrote:
Top posting is preferable in many instances. However, the top posting vs. bottom posting debate is as old as Usenet itself and to this day continues to incite religious wars with each side claiming ultimate supremacy. A better question is why is this debate taking place in a php group?
Simple. Because some people refuse to follow established standards for
this newsgroup.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp. js*******@attglobal.net
==================
bottom-posters often quote everything.
"Rik Wasmus" <lu************@hotmail.comwrote in message
news:op***************@metallium.lan...
On Wed, 31 Oct 2007 19:14:00 +0100, Jackie Silva <ma*********@yahoo.com>
Quoting everything is almost as bad is no quote at all
This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: mrbog |
last post by:
Tell me if my assertion is wrong here:
The only way to prevent session hijacking is to NEVER store
authentication information (such as name/password) in the session.
Well, to never authenticate...
|
by: Mimi |
last post by:
Hello,
I am having trouble using the session vars in
PHP 4.3.9
OS: Win XP Prof
Web Server IIS (is local and there are no links to other servers from
the web pages I work on)
Browser: IE 6.0
...
|
by: Igor |
last post by:
Is it possible to point current context's session to another active
session based on a SessionID?
|
by: Werner |
last post by:
Hi Patrick!
Can you give an example of how to use a frameset inside an aspx-file?
When I create a new frameset in Visual Studio.Net it just gives me a htm-File.
Or give me a link where I can...
|
by: Chris |
last post by:
When a request comes into a page on my ASP.net site and a session is
not found, I want to detect whether the request is an initial request
or if the user did have a session going that has now been...
|
by: T Ralya |
last post by:
I am told that ASP.NET controls the session ID and session variables, but
that does not fit my symptoms. I am posting here as directed. I'm hoping
that someone can at least recommend something to...
|
by: Åženol Akbulak |
last post by:
Hello;
I use in my web application FormsAuthentication. Also I use Session state
(InProc).
When a user logged in, I can read Session parameters. (For example
Session). Problem is that, when...
|
by: Nacho |
last post by:
Hello people
I have the following problem
I have a private area in my site.
The user enters the username and password, then clicks "enter" and the
session is created and also a session...
|
by: BillE |
last post by:
When a user opens a new IE browser window using File-New-Window the
integrity of an application which relies on session state is COMPLETELY
undermined. Anyone who overlooks the fact that...
|
by: Glenn |
last post by:
Hi
I've been experimenting with managing state using the Session object. I've
created a simple WS with a couple of methods, one which sets a string
value, another that retrieves it.
Each...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: Aliciasmith |
last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
|
by: NeoPa |
last post by:
Hello everyone.
I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report).
I know it can be done by selecting :...
|
by: Teri B |
last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course.
0ne-to-many. One course many roles.
Then I created a report based on the Course form and...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM)
Please note that the UK and Europe revert to winter time on...
|
by: nia12 |
last post by:
Hi there,
I am very new to Access so apologies if any of this is obvious/not clear.
I am creating a data collection tool for health care employees to complete. It consists of a number of...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
|
by: isladogs |
last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM).
In this month's session, Mike...
|
by: GKJR |
last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...
| |