Re: strtolower utf-8 char problem

2006-10-29 Thread Felix Geisendörfer
Hi, UTF-8 supports Umlaute laut "äüö" and french notations like "ç".  I know that for sure. I investigated on the problem, and in order to make sure we are on the same page, this is how my test setup looked like: - The PHP document I used to test was UTF-8 encoded - The html document that wa

Re: Multi Step Search

2006-10-29 Thread Mikee Freedom
has anyone done anything similar to this in Cake before? or any other application? If the question is seen to be more of a generic one then fair enough. but if anyone knew of a method within CakePHP to display a processing screen while PHP performs a function behind the scenes it would be much ap

sortable trees

2006-10-29 Thread codecowboy
Does anyone know how to use the ajax helper to create a sortable tree? Or is this something that scriptaculous isn't good for? Any help would be great. Thank you --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Ca

Re: Slow Site Load time Question

2006-10-29 Thread bibek
how long does temporary caching last in debug mode? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group, se

css is passed to my controller

2006-10-29 Thread joe
i was started using $this->log($passed_parameter) to record every time an entry wasn't found in my database and i discovered that every "click" is also sending "css" to my controller. here's my routes file: http://bin.cakephp.org/view/1246203512 my controller: http://bin.cakephp.org/view/18916737

Re: ERROR On Update 2 Divs

2006-10-29 Thread Eric
You mean useing the loading options to do that ? Set the three DIvs holding three different loading options ? nate wrote: > http://manual.cakephp.org/chapter/helpers > > Read up on the Ajax section. There is a method in there that will > accomplish what you're looking for. --~--~-~--

Re: How To Load Divs Asynchronous For Index.php?

2006-10-29 Thread Eric
Thanks. I think it slove the question B. To click "todo" to load the "todo" tasks. BUT, I think it is not my goal for A. How the Divs, for instance, three Divs, to load indivially? Like the www.netvibes.com. Each elements are loading according their speed or asynchronous. Should I creat a new co

Re: session data gone after redirect

2006-10-29 Thread vince
To fix this problem I just needed an exit(); call after the redirect. I have been searching the manual, wiki, irc, etc, but i finally found this information on a blog: http://cakebaker.wordpress.com/2006/08/28/dont-forget-to-exit-after-a-redirect/ and also 21 things I learned about cake: http://

Re: strtolower utf-8 char problem

2006-10-29 Thread Ismael S. Kafeltz
Try to set you codification on firefox/IE to ISO-8859-1 UTF-8 i guess don't suport this kind of chars äëïöüç does this helps? instead of UTF-8 ? and/or header('Content-Type:text/plain;charset=iso-8859-1'); --~--~-~--~~~---~--~~ You received this message becaus

Re: This Mailing List Isn't on Google For No Reason

2006-10-29 Thread Jon Bennett
> Having run a mailing list that ran into just such growing pains, I can > suggest splitting up this group into two groups. One group will be for > New Cake Users, aka "newbies," and the other one will be for > intermediate to advanced users. I like this, and am used to it from the FlashNewbie an

Re: This Mailing List Isn't on Google For No Reason

2006-10-29 Thread Gustavo Carreno
On 10/25/06, Walker Hamilton <[EMAIL PROTECTED]> wrote: > But I have one problem with the manual being at the top. The version > that is downloadable at cakeforge does not match the version that is at > http://manual.cakephp.org Can you clarify this please, like who's behind, the online version o

Re: strtolower utf-8 char problem

2006-10-29 Thread bt
No thanks, my problem is not related with php. I said that function works properly in php files outside the cakephp framework however it doesn't work in cakephp framework. The problem is directly related to cakephp encoding issues. Though I have tried some charset issues but didn't work. Do you ha

Re: Template of the cakeerror

2006-10-29 Thread nate
http://groups.google.com/group/cake-php/search?group=cake-php&q=%22%24this-%3Elayout%22&qt_g=1&searchnow=Search+this+group --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, sen

Re: ERROR On Update 2 Divs

2006-10-29 Thread nate
http://manual.cakephp.org/chapter/helpers Read up on the Ajax section. There is a method in there that will accomplish what you're looking for. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To

Re: strtolower utf-8 char problem

2006-10-29 Thread Ismael S. Kafeltz
I think your problem is with php details, you should try to solve this problem in specific php language, i believe you will find the solution quickly. http://groups.google.com/group/Professional-PHP?lnk=li --~--~-~--~~~---~--~~ You received this message because y

Re: Custom CakePHP search engine

2006-10-29 Thread bingo
okie...sorry I forgot to add snook.ca... now its there... Regards bingo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscri

strtolower utf-8 char problem

2006-10-29 Thread bt
Hi all, strtolower() function does not work properly in my cakephp applications however it works other standalone php files in the same server. When I try to change a character to lowercase, some special chars replaces with question marks. I tried both setting & printing out in view file and set

Re: Custom CakePHP search engine

2006-10-29 Thread nate
You forgot snook.ca, which withcake is being merged back into. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from thi

Re: Slow Site Load time Question

2006-10-29 Thread nate
Cake uses temporary caching in debug mode, which is permenant in production mode, which is activated when DEBUG is set to 0, --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, s

Re: Cannot unset string offsets in helpers\ajax.php

2006-10-29 Thread nate
Ismael S. Kafeltz wrote: > 3 params instead of 2 duh Do not ever, *ever* answer a question like that on this list again. You obviously don't appreciate the fact that you weren't already banned from this list for your comments in your hasAndBelongsToMany $fields post. --~--~-~--~~--

Re: How To Load Divs Asynchronous For Index.php?

2006-10-29 Thread Ismael S. Kafeltz
Take a look in this source code, it is easy to understand: http://www.grahambird.co.uk/cake/tutorials/ajax.php --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to

Re: Slow Site Load time Question

2006-10-29 Thread Ismael S. Kafeltz
do you have a copy of this website in your local machine? does it happen in your local machine too? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@goo

Slow Site Load time Question

2006-10-29 Thread Bibek Shrestha
Hi,i've got a website in cake up and running,the site isn't popular enough yetthe problem is when i open the website for the first time, it gives me around 5-10seconds load time (debug - 1)but in further refresh, the load time hovers around 0.4 - 2 secondsis it the server that is taking time to re

Re: Template of the cakeerror

2006-10-29 Thread Paolo
yes ok but when i replace the missing_controller page i see the default layout that is localized in the layouts directory. How i can change this layout?!?! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP"

How To Load Divs Asynchronous For Index.php?

2006-10-29 Thread Eric
Hi, Can anyone who help me to figure out the following questions? A.Like the subject said. Normally when u loading a new page like index.php, all the elements or DIVs are loading simultaneously. How Can I make all the DIVs asynchronous or one by one? B.How Can I reload or refresh a sing

Re: HELP:how to nest the media to the page

2006-10-29 Thread Black Knight
[EMAIL PROTECTED] wrote: > Thank you! I got it. The principle is to embedding the videos into > flash and put the flash into the page? YES =) Plz go to your favourite song on youtube.com and grab the code (The one with / ). Paste to your *.thtml & enjoy ;-) --~--~-~--~~--

Re: ERROR On Update 2 Divs

2006-10-29 Thread Eric
Thanks nate! I have another problem. If I have a index page which contains 3 Divs, I want to load them indiviually. Not like normal way to load all the componets in the page at one time. How I can use AJAX to do it like that ? --~--~-~--~~~---~--~~ You receive

Re: HABTM select problem

2006-10-29 Thread rdoggsv
I Hope im not wrong , but for one i think the $hasAndBelongsToMany needs more data something like the chapter on the manual. var $hasAndBelongsToMany = array('Tag' => array('className'=> 'Tag', 'joinTable'=> 'posts_tags'

Re: Suggestion with maxlength

2006-10-29 Thread Ismael S. Kafeltz
Thank you Mike, but i can't use this kind of method to validate because i have made a method to treat multiple datas, yet cake don't suport this... I already search it this before, i'm still think that cake could "guess" the lenght of the field and do something. It's just an ideia. And E, i use m

Re: session data gone after redirect

2006-10-29 Thread Ismael S. Kafeltz
Thanks for solving demonics problems for us. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group, send emai

Re: Custom CakePHP search engine

2006-10-29 Thread bingo
hi okie ...i have included some more websites...here is the list of sites that are currently in the custom search engine CakePHP official websites http://groups.google.com.pe/group/cake-php?lnk=lr http://bakery.cakephp.org/ http://api.cakephp.org/ http://cakephp.org/ CakePHP blogs http

Re: Custom CakePHP search engine

2006-10-29 Thread [EMAIL PROTECTED]
here are some more resources you can add: http://www.thinkingphp.org/cakenews/ (not just this url, take a look at the page) http://www.noswad.me.uk/ more here: http://www.cakephpforum.com/discussion/8/cakephp-useful-resources/#Item_0 --~--~-~--~~~---~--~~ You rece

Custom CakePHP search engine

2006-10-29 Thread bingo
hi, I have created a custom cakephp search engine. http://www.google.com/coop/cse?cx=006850030468302103399%3Amqxv78bdfdo This search engine will specifically search for cakephp related article, tutorial and tips. Please let me know if there any blogs or websites that should be included in it R

Re: Suggestion with maxlength

2006-10-29 Thread E
It would be nice if the HTML helper went and set the maxlength attribute for the input element based on the char or varchar length. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this g