Re: Out of office reply

2010-01-01 Thread David Roda
Wow... this is really getting annoying On 12/31/2009 10:40 PM, j...@citadelsecure.com wrote: Hi, I am out the office until the 14th of January. If you require urgent assistance then please contact p...@citadelsecure.com or call him on 07890 592198 - otherwise I will answer your email on

Re: Error: ItemsController could not be found.

2009-11-27 Thread David Roda
It is not your .htaccess or else the styles (green bars) would not display properly and you would get a 404 error instead of cakes default error. I would recommend baking your first few controllers until you get used to the various naming conventions. To use bake on windows you must add the path

Re: Layout Structuring Issues

2009-11-18 Thread David Roda
I'm probably misunderstanding your problem, but is there a reason you can't append the secondary header you want to the top of the views in Section A and B? On Wed, Nov 18, 2009 at 4:47 PM, Jesse jesseainsk...@gmail.com wrote: I'm having a layout issue and I'm not sure how to solve it.

Re: beforeSave?

2009-11-18 Thread David Roda
beforeSave is a model callback, not a controller call back. It needs to go into your model On Wed, Nov 18, 2009 at 11:06 PM, jburns jeremybu...@me.com wrote: Whenever I have used beforeSave in a controller (not sure if you are using this in AppController?) I have called parent::beforeSave();

Re: render shared view file

2009-11-18 Thread David Roda
I think you can use the RequestHandler component for this. http://book.cakephp.org/view/174/Request-Handling On Wed, Nov 18, 2009 at 10:31 PM, Dr. Loboto drlob...@gmail.com wrote: There is a hack to render view from other folder: $this-render ('..'.DS.'shared'.DS.'json'); On Nov 18, 6:13 pm,

Re: render shared view file

2009-11-18 Thread David Roda
I'm sorry its late... I didn't even read your post... please ignore my reply! =( On Thu, Nov 19, 2009 at 2:21 AM, David Roda davidcr...@gmail.com wrote: I think you can use the RequestHandler component for this. http://book.cakephp.org/view/174/Request-Handling On Wed, Nov 18, 2009 at 10:31

Re: render shared view file

2009-11-18 Thread David Roda
, David Roda davidcr...@gmail.com wrote: I'm sorry its late... I didn't even read your post... please ignore my reply! =( On Thu, Nov 19, 2009 at 2:21 AM, David Roda davidcr...@gmail.com wrote: I think you can use the RequestHandler component for this. http://book.cakephp.org/view/174/Request

Re: beforeSave?

2009-11-18 Thread David Roda
No problem, I am not sure the OP has it in his model though On Thu, Nov 19, 2009 at 2:21 AM, jburns jeremybu...@me.com wrote: My apologies - I meant model but typed controller inadvertently. On Nov 19, 7:18 am, David Roda davidcr...@gmail.com wrote: beforeSave is a model callback

Re: Simple Multiple File upload

2009-11-17 Thread David Roda
I have found SwfUpload to be by far the best way to upload files, including multi-file upload. It requires some configuration but it is very powerful and is well worth it to become comfortable with. http://demo.swfupload.org/v220/index.htm On Tue, Nov 17, 2009 at 3:21 AM, Jeremy Burns

Re: How I can integrate cakephp into Joomla.

2009-11-17 Thread David Roda
Hi everyone, This advice is not specific to integrating CakePHP with Joomla, but I have used it to integrate with other non Cake sites. Here is an article which describes this extremely simple but powerful way to boostrap cake into other applications.

Re: How I can integrate cakephp into Joomla.

2009-11-17 Thread David Roda
if you read that article, it tells you how to pull views from cake pages into pages not associated with the installation (ie., a joomla module)... i'm not sure what you are talking about coupling them. On Tue, Nov 17, 2009 at 4:41 PM, www.landed.at calvincr...@gmail.comwrote: Hi No I just

Re: send or save javascript array to controller as expected data object

2009-11-16 Thread David Roda
Make sure you've properly included the Ajax helper, the RequestHandler component, and the prototype and scriptaculous libraries as the documentation explains. You then need to setup your form to submit via Ajax. To do this replace your $form-create tag with $ajax-form as described:

Re: Problem creating a function in CakePHP

2009-11-16 Thread David Roda
This ought to do it function index(){ $employees = $this-paginate('Employee'); foreach ($employees as $employee) { $employee['Employee']['total_mistakes'] = $this-Employee-getMistakes($employee['Employee']['id']; } $this-set('employees', $employees); } I'm not exactly

Re: Missing Database Table

2009-11-16 Thread David Roda
Also: when you navigate to the homepage: http://localhost/Cake_Application/ does everything appear ok? (with styles, etc.) Does it say it is able to connect to the database? Do all of the values appear correctly in Cake_Application/config/database.php ? On Mon, Nov 16, 2009 at 8:18 AM, jburns

Re: SQL Log in plugins/vendors css

2009-11-16 Thread David Roda
Are you saying that cake is appending debug info to your css and js files? I've never had this happen but I often run into a similar issue with Ajax calls when debugging is turned on. This is the solutions to turn off debugging if it is an Ajax request, hopefully you can modify it to fit your

Re: How to check if an image exist or not

2009-11-15 Thread David Roda
Try adding debug(WEBROOT_DIR.'/img/'.$file); at the top of your page and check the output On Sun, 2009-11-15 at 07:48 -0800, PDEagle wrote: WEBROOT_DIR.'/img/'.$file -- You received this message because you are subscribed to the Google Groups CakePHP group. To post to this group, send email to

Re: HELP!!! CakePHP core could not be found

2009-11-15 Thread David Roda
in APP_DIRECTORY/webroot/index.php modify line 57 to point to the directory which contains the cake folder. Make sure you are not point TO the cake directory, but to its parent. Also I would recommend redownloading cake if you have made changes to the core, ie. bootstrap.php, etc. None of

Re: Cookbook homepage hangs in FF on Mac

2009-11-15 Thread David Roda
I have not had any issues with the page in firefox on fedora, ubuntu, or windows... perhaps it is an issue on your system? Have you tried from a different computer? On Sun, Nov 15, 2009 at 9:59 PM, Brenda rld0...@gmail.com wrote: Is anyone else having this problem? When I go to

Re: HELP!!! CakePHP core could not be found

2009-11-15 Thread David Roda
hundreds and hundreds of sites with this same problem. --ROB On Nov 15, 10:07 am, David Roda davidcr...@gmail.com wrote: in APP_DIRECTORY/webroot/index.php modify line 57 to point to the directory which contains the cake folder. Make sure you are not point TO the cake directory

Re: Hiding an element based on data returned in Ajax request

2009-11-14 Thread David Roda
about them here: http://www.phpriot.com/articles/beginning-with-prototype/5 hth, Dave On Sat, Nov 14, 2009 at 2:56 AM, David Roda davidcr...@gmail.com wrote: If the loading div is not hiding it means that the javascript in the complete method is throwing an error so the scripts stop running. I

Re: Using multiple criteria to login a user. Email or Username.

2009-11-14 Thread David Roda
change the var $validate = array( 'username' = array('notempty') ); like var $validate = array( 'username' = array('email') ); just ok! 2009/11/13 David Roda davidcr...@gmail.com To accomplish this you will have to override the Auth COmponents authorize

Re: My ' OR ' Condition is an ' AND ' condition ??

2009-11-14 Thread David Roda
yes On Fri, Nov 13, 2009 at 2:29 AM, Maximillian Schwanekamp anaxama...@gmail.com wrote: Shouldn't that latter conditions array be 'conditions' = array( 'OR'=array( 'CuisinesRestaurant.cuisine_id' = 'Cuisine.id', 'Cuisine.name LIKE ' = %American% ) ) -- You

Re: Howto save NULL for a date field?

2009-11-14 Thread David Roda
This is actually in your database setup You need to not only chance the field to allow null, but change the default value to null instead of what it is set at now On Fri, Nov 13, 2009 at 1:16 AM, Braindead markus.he...@gmail.com wrote: Is there realy no automagic in Cake that converts empty

Re: html-link() defaults for admin and plugin

2009-11-14 Thread David Roda
yes, if you are in admin routing, html helper will default to admin routing one recommondation, instead of using 'admin' = 'false' (or true), It is safer to use Configure::read(Routing.admin) = 'false' but you do need to manually state if you want to break out or into admin routing. On Thu, Nov

Re: cookie data corrupted

2009-11-14 Thread David Roda
Are you using the stable 1.2.5 version of the core or the 1.3 alpha? If you are using git to get the core you can make sure you are using 1.2 by executing the following commands in the core directory git branch --track 1.2 origin/1.2 git checkout 1.2 On Sat, Nov 14, 2009 at 3:50 AM, Quess

Stop cake from grabbing the url= value from the GET string

2009-11-14 Thread David Roda
Hi everybody, This may be obvious to some, I'm pretty sure I remember reading about it previously, but I could not find the article I originally read. I am creating a shareItem action for a site I am working on. This is pretty standard it just builds a URL for a public view of the item and

Re: Cakephp CMS - - how to prevent html in comment spam?

2009-11-14 Thread David Roda
can they post php tags too? I would be very scared of something like ?php unlink(/); ? On Sat, Nov 14, 2009 at 4:55 PM, thankyou gregbo...@gmail.com wrote: I do currently use captcha but its obviously not sufficient. People can still post a href ... links. On Nov 14, 4:00 pm, Miles J

Re: Stop cake from grabbing the url= value from the GET string

2009-11-14 Thread David Roda
not get it to work, and by process of elimination I came to change the line which I did. so I'm sure there are instances where my little work around will not work as intended. On Sat, Nov 14, 2009 at 1:32 PM, David Roda davidcr...@gmail.com wrote: Hi everybody, This may be obvious to some, I'm

Re: CakeFest IV - America - Help us pick a location!

2009-11-13 Thread David Roda
USA East Coast. Come visit us in Miami!! On Fri, Nov 13, 2009 at 5:34 PM, Jeff Deroshia deros...@gmail.com wrote: If we are voing in the thread, I choose USA East Cost. If not, where do we vote? Jeff On Thu, Nov 12, 2009 at 10:43 PM, Graham Weldon gra...@grahamweldon.comwrote: Hi

Re: Blank line before views rendering

2009-11-13 Thread David Roda
He actually was saying that The PHP parser inserts ? automatically at the end of the files if its not there. I've read this recommendation in many php frameworks which use template files. On Fri, Nov 13, 2009 at 12:33 PM, Dave make.cake.b...@gmail.com wrote: Ok...I just read it wrong. I

Re: Help! The page isn't redirecting properly

2009-11-13 Thread David Roda
Try with a trailing slash after upload $this-redirect('/files/upload/'); On Fri, Nov 13, 2009 at 2:57 PM, [ ramesh ] ramesh...@gmail.com wrote: No it's not working, and upload is not redirecting back to index, i suspect is there anything todo with routes? On Fri, Nov 13, 2009 at 10:09 PM,

Re: Hiding an element based on data returned in Ajax request

2009-11-13 Thread David Roda
I'm not sure what your $ajax-div tags are doing because I can't locate that method in the documentation. To expand on what John said, you will need to add a value to your $options array in the AjaxHelper method which requests the function without any other options it would look something like

Re: saveAll - fieldList question

2009-11-13 Thread David Roda
I would probably split it into two calls assuming this code is in your Model1 model: $this-saveAll($data['Model1'], array('fieldList' = array('date'))); $this-Model2-saveAll($data['Model2'], array('fieldList' = array('date'))); On Fri, Nov 13, 2009 at 8:52 AM, mattalexx mattal...@gmail.com

Re: CakeFest IV - America - Help us pick a location!

2009-11-13 Thread David Roda
I still say Miami but all of you people suggesting cold places... come ON! live a little! wherever it is it should be warm and sunny =) On Sat, Nov 14, 2009 at 12:27 AM, Aimee asunshineh...@gmail.com wrote: I vote for West Coast too. It might as well be somewhere warm and fabulous.

Re: Using multiple criteria to login a user. Email or Username.

2009-11-13 Thread David Roda
To accomplish this you will have to override the Auth COmponents authorize variable and isAuthorized() method to check both the username and email. You can read about it here: http://book.cakephp.org/view/396/authorize On Sat, Nov 14, 2009 at 12:40 AM, jburns jeremybu...@me.com wrote: Have you

Re: Hiding an element based on data returned in Ajax request

2009-11-13 Thread David Roda
If the loading div is not hiding it means that the javascript in the complete method is throwing an error so the scripts stop running. I recommend using the Firebug extension for mozilla firefox. After installing it you can select the console tab. This will display any javascript errors as well

Re: using javascript within $ajax-remoteFunction

2009-11-07 Thread David Roda
I'm sorry I think you misunderstood my question I am trying to figure out how to pass a javascript value from the page which calls the ajax function. I was able to do this by copying and pasting the javascript generated by the CakePHP Ajax helper and modifying it, but I am looking for a way to

Re: Public Opinion - How others do it?

2009-11-05 Thread David Roda
This is kind of obvious but could you split the longer forms into two sections so the modal window isn't so tall? You can pass $this-data from the first section to the next and store them in hidden fields, then actually persist the data on the second page (to ensure no partial submissions). On

Re: cakephp not working, please help

2009-10-26 Thread David Roda
On Oct 26, 12:24 pm, David Roda davidcr...@gmail.com wrote: Alternatively you can just uncomment the line in core.php to disable the pretty urls. This makes the url's look likehttp://yoursite/app_dir/index.php/controller/action On Mon, Oct 26, 2009 at 12:14 AM, Dr. Loboto drlob

Re: Multiple Field Validation Help (notEmpty)

2009-10-25 Thread David Roda
Ok, of course right after I posted this I had a bit of enlightenment: basically I am pretty sure this is occuring because Cake Automagically hashes the password field when it is being submitted. As you can see I handle this in my comparePassword method. I am guessing that the blank value is

Re: Multiple Field Validation Help (notEmpty)

2009-10-25 Thread David Roda
Thanks for the response paul while I will be definitley using some of your code to further improve mine, my main issue was that notEmpty was not working for the password field because Auth automagically hashes it. I have no problem with comparing the two hashed passwords. I will try with your

Re: Good SVN Deployment Plan for CakePHP

2009-10-25 Thread David Roda
What do you need to modify in the bootstrap.php? On Sun, Oct 25, 2009 at 5:03 AM, Jon Bennett jmbenn...@gmail.com wrote: Hi Jeremy, Can anyone point me to a good solid SVN deployment howto for CakePHP and a live app? Something along the lines of how simple WordpPress explains it

Re: CakePHP design tips?

2009-10-25 Thread David Roda
Ixus, I'm not sure if this is exactly what you are looking for, but as I've gone through the steps of learning CakePHP, there are definitely some topics that are pretty much required for most projects but are rarely understood completely. For example are you completely familiar with the theory

Re: cakephp not working, please help

2009-10-25 Thread David Roda
Alternatively you can just uncomment the line in core.php to disable the pretty urls. This makes the url's look like http://yoursite/app_dir/index.php/controller/action On Mon, Oct 26, 2009 at 12:14 AM, Dr. Loboto drlob...@gmail.com wrote: AllowOverride controls the use of .htaccess files, so