Check out this thread: http://groups.google.com/group/cake-php/browse_frm/thread/889295952424caf9
and in particular to this post: http://groups.google.com/group/cake-php/msg/3c8b54771a75b59a -------------------------------------------------------------------------------------------------------------- With regard to the sprintf function, I had the same problem on one of my hosting, and I had to replace all delete messages as follows: i.e. replace -------- sprintf(__('Are you sure you want to delete # %s?', true), $post['Post']['id']) -------- with -------- 'Are you sure you want to delete'.' #' . $post['Post']['id'] -------- After performing the above substitutions, eerything worked fine. Hope this helps: I stood one day debugging this stuff in front of a blank screen ;o( ------------------------------------------------------------------------------------------------ --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
