If you are using the get method in ajax functions, use modrewrite
(maybe it's not a modrewrite problem) and IE 6.0 reports errors add the
dummy parameter to the ajax url option:

WRONG URL: url = "/products/edit/2";
GOOD URL:    url = "/products/edit/2/#";    // even if the url has it's
own parameter(s)

$timerOptions = array("update" => "ajax_update",
                                "frequency" => "15",
                                "url" => GOOD URL,
                                "method" => "get");
echo $ajax->remoteTimer($timerOptions);

Firefox doesn't have any problem with or without that #, but perhaps
the correct way is with the #.


--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"Cake PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to