Re: -What is the diffrent between $html-hidden and $html-hiddentag ?

2006-06-23 Thread Christian.Tietze
It's just there because of backwards compatibility. Taking a look at the source (it's always good to have an IDE which shows a list of every included code available) would tell you the following /** * @deprecated Name changed to 'hidden'. Version 0.9.2. * @see HtmlHelper::hidden() *

Re: Setting rdBloggery

2006-06-23 Thread [EMAIL PROTECTED]
No reply ?? :( --~--~-~--~~~---~--~~ 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 email to [EMAIL PROTECTED] For

Re: Cake Sheet

2006-06-23 Thread Daniel Hofstetter
As long as the Cake Sheet is not in the download area, you can download it from https://cakeforge.org/plugins/scmsvn/viewcvs.php/*checkout*/trunk/cheatsheet/cakesheet.pdf?rev=46root=cakedocs -- Daniel Hofstetter http://cakebaker.wordpress.com

Re: Setting rdBloggery

2006-06-23 Thread Olivier Percebois-Garve
Hi rdbloggery is developed by gwoo (and others) so you may ask them first on the project mailing list http://cakeforge.org/mail/?group_id=13 or on IRC where they often are. olivvv [EMAIL PROTECTED] wrote: No reply ?? :( --~--~-~--~~~---~--~~

Re: Association help for an internal table hierarchy

2006-06-23 Thread gremlin
also this assumes you have your categories table with a name field. --~--~-~--~~~---~--~~ 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

Re: Setting rdBloggery

2006-06-23 Thread [EMAIL PROTECTED]
Thanks Olivier... I will post it there... --~--~-~--~~~---~--~~ 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 email

Re: Cake Sheet

2006-06-23 Thread RosSoft
Jonathan: Once printed, they're fast :) --~--~-~--~~~---~--~~ 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 email to

Re: HABTM recursively

2006-06-23 Thread Martin
Hi Christian, I have not had the problems you describe myself. My HABTM relationships recurse just fine if I set the level as deep as I need it to be. Could you post some of your code possibly? It also struck me as strange that you would need HABTM for comments. I my mind one comment won't be

Re: How to update multiple divs with one ajax call

2006-06-23 Thread stefano
Nate, thank for the link. I tried it but it continues crashing my firefox, while it's running without problems in IE: 1. created an action test() in my orders controllers 2. created a view test.thtml with your example code in view/orders/ the view is rendered correctly but when I click on the

Insert value in field with DB function

2006-06-23 Thread joriw
I would insert value to field with DB function i.e. INSERT INTO blog(datetimelogin) VALUES(getdate()); Field datatimelogin is timestamp datatype. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Cake PHP group. To

Re: Passing data from modelA to ModelB.

2006-06-23 Thread bigdog
Would an intermediate table solve your problem to communicate with Transactions and Onhand? I saw this awhile back: http://groups.google.com/group/cake-php/browse_thread/thread/46da519d4b648d48/?hl=en# --~--~-~--~~~---~--~~ You received this message because you

Re: Cake Sheet

2006-06-23 Thread clemos
so cool I'll stick it over my bed. thanks On 6/23/06, RosSoft [EMAIL PROTECTED] wrote: Jonathan: Once printed, they're fast :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Cake PHP group. To post to this

Re: using javascript to access form elements?

2006-06-23 Thread [EMAIL PROTECTED]
i am trying to access that element in javascript using: form.data[User][username].value Just FYI, form.data[User][whatever] won't work in javascript because javascript sees the brackets as parts of javascript arrays. So, rather than look for that as a string, it's trying to evaluate it as

Re: New tutorial for newbies

2006-06-23 Thread Christian.Tietze
Good work - but why do you offer a PDF? Copying source out of a PDF is just bloody ugly. We're forced to accept the PDF's line wraps because of the limited page width... A good looking HTML page (probably you could use wordpress' static pages for that with some (cached?) syntax highlighting) will

Re: beforeFilter and rdSimpleAuth

2006-06-23 Thread Jon Bennett
I have tried making an authorization for my article manager I am attempting to make with cake right now, but if I use a beforefilter to redirect to the login page if you aren't logged in, it loops infinately. So I went to the irc channel and asked around and was told to try rdSimpleAuth. Now

anyone working with laszlo?

2006-06-23 Thread SiVA
Hi Guys, I asked about this a few months ago, but wanted to check back in again. Is anyone successfully using cakephp with laszlo as the front end? If so, how's it going? What changes did you have to make? Thanks --~--~-~--~~~---~--~~ You received this message

Re: using javascript to access form elements?

2006-06-23 Thread SEPHROTH64
thanks, that did the trick bibek wrote: Hey, I did some debugging from firefox, well instead of going through document,firn,data[User][username].value how about doing this document.getElementById(UserUsername).value I hope that helps bibstha http://www.ioelive.com

Re: beforeFilter and rdSimpleAuth

2006-06-23 Thread Luke
yes --~--~-~--~~~---~--~~ 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 email to [EMAIL PROTECTED] For more options,

Re: Working with files

2006-06-23 Thread John David Anderson (_psychic_)
On Jun 23, 2006, at 2:55 PM, Luke wrote: I am pretty new to the MVC model. I am rebuilding my File management system (that i just finished without cakePHP). My question is basically this: If I am working with files, won't my model be directories instead of a database? Would the file

Re: Working with files

2006-06-23 Thread Luke
THANKS! That helps so much... that would have taken me probably 2 or 3 hours to figure out... :-D --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Cake PHP group. To post to this group, send email to

Re: Working with files

2006-06-23 Thread John David Anderson (_psychic_)
On Jun 23, 2006, at 3:13 PM, Luke wrote: THANKS! That helps so much... that would have taken me probably 2 or 3 hours to figure out... :-D For future reference, you might check out the manual. The chapter on models talks about $useTable specifically, and the Cake Sheet announced here

Re: Working with files

2006-06-23 Thread Luke
I'm still having a hard time... can anybody post an example of a directory-manipulating function that is built into the model? I have tried many of the functions in the API meant to deal with functions, and I just can't seem to get them to work.

Re: anyone working with laszlo?

2006-06-23 Thread Marcelo de Moraes Serpa
Never used it and probally never will, would better use haXe instead... nothing against it though.Marcelo.On 6/23/06, SiVA [EMAIL PROTECTED] wrote:Hi Guys,I asked about this a few months ago, but wanted to check back in again. Is anyone successfully using cakephp with laszlo as the front end?

Re: Working with files

2006-06-23 Thread John David Anderson
On Jun 23, 2006, at 3:35 PM, Luke wrote: I'm still having a hard time... can anybody post an example of a directory-manipulating function that is built into the model? I have tried many of the functions in the API meant to deal with functions, and I just can't seem to get them to work.

Re: Working with files

2006-06-23 Thread Luke
I meant I have tried many of the functions in the API meant to deal with files and folders... oops (not functions) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Cake PHP group. To post to this group, send email

Re: Working with files

2006-06-23 Thread Luke
What are all these methods for? http://api.cakephp.org/class_folder.html --~--~-~--~~~---~--~~ 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

Re: $ajax-link not to load default.thtml

2006-06-23 Thread nate
Yes, we aim to please. --~--~-~--~~~---~--~~ 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 email to [EMAIL PROTECTED]

Re: Working with files

2006-06-23 Thread nate
Yes, you could certainly use Cake's builtin File and Folder objects for writing your own custom model. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Cake PHP group. To post to this group, send email to

Re: Showing errors in Comment submission on the same page as Post

2006-06-23 Thread John David Anderson (_psychic_)
At tips in the right direction preferably with code samples would be appreciated Samples of code that you're already using would be helpful in trying to get an answer. -- John --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Re: Showing errors in Comment submission on the same page as Post

2006-06-23 Thread Kit
This tutorial might be of assistance, or at least head you in a possible direction. http://wiki.cakephp.org/tutorials:flashing --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Cake PHP group. To post to this group,

Doesn't save, but no errors

2006-06-23 Thread tom
Okay, so I'm running at debug level 2, and dumping $this with every pageload, and validating the data before calling User-save(), but it still isn't working. Any wisdom here? if($this-User-validates($this-data)) { echo validates!;

Connecting to the database directly and cron jobs

2006-06-23 Thread Matt
I've recently started porting a site to CakePHP and have a couple of questions regarding cron jobs. The site had a class for managing emails that would connect to the database and add messages to a queue table. A cron job calling a PHP script would use this class to dispatch messages at regular

Re: How to editing thtml files in Dreamweaver

2006-06-23 Thread sicapitan
Either way, can someone host it on cakePHP somewhere! --~--~-~--~~~---~--~~ 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,

Customizing pages_controller

2006-06-23 Thread BlenderStyle
Does anyone have any insight on how to customize PagesController (pages_controller.php)? I want to add my own methods like add, edit, and delete but I can't get it working. First, I copied cake/libs/controllers/pages_controller.php to app/controllers and added my own method called add(). I

Re: Connecting to the database directly and cron jobs

2006-06-23 Thread BlenderStyle
That's an interesting problem and I'm bound to run into on my own soon. Check simple things like the permissions of the script you're trying to execute with php. Do chmod 777 script.php to test that. I would also try creating your class as a controller in CakePHP with a model and a view. The view

Re: Connecting to the database directly and cron jobs

2006-06-23 Thread BlenderStyle
What version of PHP are you using? Can you post mail_system.php? --~--~-~--~~~---~--~~ 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