RE: Safari Navigation Bug and general speed issues

2004-01-13 Thread Hugo Ahlenius
Does Safari honor caching headers?


-
Hugo AhleniusE-Mail: [EMAIL PROTECTED]
Project Officer Phone:+46 8 230460
UNEP GRID-ArendalFax:+46 8 230441
Stockholm OfficeMobile:+46 733 467111
 WWW: http://www.grida.no
- 



| -Original Message-
| From: Jim Davis [mailto:[EMAIL PROTECTED]
| Sent: Tuesday, January 13, 2004 05:34
| To: CF-Talk
| Subject: RE: Safari Navigation Bug and general speed issues
|
| We just had a major problem with some versions of Safari (not
| all).The issue, it seems was that Safari was a little
| aggressive with caching.Our log in page submits to itself:
| showing error or success information.Safari only showed the
| original page from its cache even tho' the page had been updated.
|
| We fixed this by adding a URL variable to the page - all I did was
| ?tick=#getTickCount()#It's kludgy as hell, but it changes the URL
| enough to force Safari to display the actual page.
###

This message has been scanned by F-Secure Anti-Virus for Microsoft
Exchange.
For more information, connect to http://www.F-Secure.com/
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Safari Navigation Bug and general speed issues

2004-01-13 Thread Ryan Mitchell
It will from the next release... It was a known bug that has been fixed for
what should be an immenent release
Up to version 1.1.1 it didnĀ¹t honor them as well as it should :)

On 13/1/04 8:44 am, Hugo Ahlenius [EMAIL PROTECTED] wrote:

 Does Safari honor caching headers?
 
 
 -
 Hugo AhleniusE-Mail: [EMAIL PROTECTED]
 Project Officer Phone:+46 8 230460
 UNEP GRID-ArendalFax:+46 8 230441
 Stockholm OfficeMobile:+46 733 467111
WWW: http://www.grida.no
 -
 
 
 
 | -Original Message-
 | From: Jim Davis [mailto:[EMAIL PROTECTED]
 | Sent: Tuesday, January 13, 2004 05:34
 | To: CF-Talk
 | Subject: RE: Safari Navigation Bug and general speed issues
 |
 | We just had a major problem with some versions of Safari (not
 | all).The issue, it seems was that Safari was a little
 | aggressive with caching.Our log in page submits to itself:
 | showing error or success information.Safari only showed the
 | original page from its cache even tho' the page had been updated.
 |
 | We fixed this by adding a URL variable to the page - all I did was
 | ?tick=#getTickCount()#It's kludgy as hell, but it changes the URL
 | enough to force Safari to display the actual page.
 ###
 
 This message has been scanned by F-Secure Anti-Virus for Microsoft
 Exchange.
 For more information, connect to http://www.F-Secure.com/
 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Safari Navigation Bug and general speed issues

2004-01-13 Thread Larry C. Lyons
Alan Rafael Bleiweiss wrote:

 For some reason my code didn't get included in the first email.Here's a 
 link to the code in question...
 
 http://www.brionanet.com/nextprevcodechunk.txt
 

Alan,

While not directly related to your question, one thing you may want to 
do in your code is add the Cachedwithin attribute to your query. It 
would speed things up a lot, especially for large queries, assuming of 
course that your SortOrder variable stays the same from page to page.

CFQUERY NAME=GetProducts DATASOURCE=#EComDB# 
cachedwithin=#CreateTimeSpan(0, 0, 60, 0)#
	SELECT * from Products,Categories
	WHERE Products.CategoryID = #CategoryID#	
	AND Products.CategoryID = Categories.CategoryID
	AND Products.InventoryCount 0
	ORDER BY #SortOrder#
/CFQUERY

regards,

larry
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Safari Navigation Bug and general speed issues

2004-01-12 Thread Alan Rafael Bleiweiss
Two questions.

I've got a site with over 1000 products.

In that site, when bringing up any category my code (see below) shows 10 
products per page with a Next / Previous function.On IE and Netscape on 
the PC this works (though very slowly for large categories).On Macs IE 
and Safari,
clicking the NEXT button shows seven of the previous page's ten and only 
three new products, all of which are at the bottom of the list.

1.WHAT in my code is causing this to fail on Macs?
2.How can I re-code this to be much more efficient regardless of visitor 
platform?

I'm running CF MX 6.1 on a Windows 2000 server.

HERE'S THE CODE:

!
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Safari Navigation Bug and general speed issues

2004-01-12 Thread Alan Rafael Bleiweiss
Uh, how come my pasted code didn't get included in this post?

At 05:06 PM 1/12/04, you wrote:
Two questions.

I've got a site with over 1000 products.

In that site, when bringing up any category my code (see below) shows 10
products per page with a Next / Previous function.On IE and Netscape on
the PC this works (though very slowly for large categories).On Macs IE
and Safari,
clicking the NEXT button shows seven of the previous page's ten and only
three new products, all of which are at the bottom of the list.

1.WHAT in my code is causing this to fail on Macs?
2.How can I re-code this to be much more efficient regardless of visitor
platform?

I'm running CF MX 6.1 on a Windows 2000 server.

HERE'S THE CODE:

!

--
[
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Safari Navigation Bug and general speed issues

2004-01-12 Thread Alan Rafael Bleiweiss
For some reason my code didn't get included in the first email.Here's a 
link to the code in question...

http://www.brionanet.com/nextprevcodechunk.txt

At 05:06 PM 1/12/04, you wrote:
Two questions.

I've got a site with over 1000 products.

In that site, when bringing up any category my code (see below) shows 10
products per page with a Next / Previous function.On IE and Netscape on
the PC this works (though very slowly for large categories).On Macs IE
and Safari,
clicking the NEXT button shows seven of the previous page's ten and only
three new products, all of which are at the bottom of the list.

1.WHAT in my code is causing this to fail on Macs?
2.How can I re-code this to be much more efficient regardless of visitor
platform?

I'm running CF MX 6.1 on a Windows 2000 server.

HERE'S THE CODE:

!

--
[
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Safari Navigation Bug and general speed issues

2004-01-12 Thread Doug White
The line you included as a separator was parsed as the end of the message by HOF

==
Stop spam on your domain, Anti-spam solutions
http://www.clickdoug.com/mailfilter.cfm
For hosting solutions http://www.clickdoug.com
==
Aspire to Inspire before you Retire or Expire!

- Original Message - 
From: Alan Rafael Bleiweiss [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, January 12, 2004 5:16 PM
Subject: Re: Safari Navigation Bug and general speed issues

: Uh, how come my pasted code didn't get included in this post?
:
:
:
: At 05:06 PM 1/12/04, you wrote:
: Two questions.
: 
: I've got a site with over 1000 products.
: 
: In that site, when bringing up any category my code (see below) shows 10
: products per page with a Next / Previous function.On IE and Netscape on
: the PC this works (though very slowly for large categories).On Macs IE
: and Safari,
: clicking the NEXT button shows seven of the previous page's ten and only
: three new products, all of which are at the bottom of the list.
: 
: 1.WHAT in my code is causing this to fail on Macs?
: 2.How can I re-code this to be much more efficient regardless of visitor
: platform?
: 
: I'm running CF MX 6.1 on a Windows 2000 server.
: 
: HERE'S THE CODE:
: 
: !
: 
: --
: [
:
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Safari Navigation Bug and general speed issues

2004-01-12 Thread Jerry Johnson
It should only ever be counting up and down by 3s.

That is what your code is telling it to do:

CFSET NEXTSTART=#URL.START#+3

Where does the jump by 10s come in?

Jerry Johnson

 [EMAIL PROTECTED] 01/12/04 06:20PM 
For some reason my code didn't get included in the first email.Here's a 
link to the code in question...

http://www.brionanet.com/nextprevcodechunk.txt 

At 05:06 PM 1/12/04, you wrote:
Two questions.

I've got a site with over 1000 products.

In that site, when bringing up any category my code (see below) shows 10
products per page with a Next / Previous function.On IE and Netscape on
the PC this works (though very slowly for large categories).On Macs IE
and Safari,
clicking the NEXT button shows seven of the previous page's ten and only
three new products, all of which are at the bottom of the list.

1.WHAT in my code is causing this to fail on Macs?
2.How can I re-code this to be much more efficient regardless of visitor
platform?

I'm running CF MX 6.1 on a Windows 2000 server.

HERE'S THE CODE:

!

--
[
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Safari Navigation Bug and general speed issues

2004-01-12 Thread Jim Davis
We just had a major problem with some versions of Safari (not all).The
issue, it seems was that Safari was a little aggressive with caching.Our
log in page submits to itself: showing error or success information.Safari
only showed the original page from its cache even tho' the page had been
updated.

 
We fixed this by adding a URL variable to the page - all I did was
?tick=#getTickCount()#It's kludgy as hell, but it changes the URL
enough to force Safari to display the actual page.

 
You might try the same thing for your issue.

 
Jim Davis

 
_

From: Alan Rafael Bleiweiss [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 12, 2004 6:07 PM
To: CF-Talk
Subject: Safari Navigation Bug and general speed issues

 
Two questions.

I've got a site with over 1000 products.

In that site, when bringing up any category my code (see below) shows 10 
products per page with a Next / Previous function.On IE and Netscape on 
the PC this works (though very slowly for large categories).On Macs IE 
and Safari,
clicking the NEXT button shows seven of the previous page's ten and only 
three new products, all of which are at the bottom of the list.

1.WHAT in my code is causing this to fail on Macs?
2.How can I re-code this to be much more efficient regardless of visitor 
platform?

I'm running CF MX 6.1 on a Windows 2000 server.

HERE'S THE CODE:

!
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]