Re: Recommendations for changes to Cake manual.

2008-06-02 Thread mustan9
> If people want to rant and rave in the mailing list, all the power to > you. But don't lie about the reasons for not filing tickets please. If you wish to have an argument about the truthfulness of my posts, then I recommend we move this to a private exchange of e-mails. My e- mail address is

Re: Recommendations for changes to Cake manual.

2008-06-02 Thread mustan9
I've filed tickets there before and gotten replies telling me to post things like this on the mailing list. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to cake-ph

Recommendations for changes to Cake manual.

2008-06-02 Thread mustan9
Hi, I have a few improvement requests for the Cake online manual. 1) Currently, CakePHP.org is using Google to perform searching of the online manual. This doesn't work very well, and if you enter the value "model" it returns lots of unrelated links outside the scope of the manual. I would prefe

Using pagination with requestAction()

2008-05-21 Thread mustan9
Hi, I have a controller that provides a list of documents using the requestAction from a view. For example in my view for another controller: $documents = $this->requestAction( '/documents/getDocuments' ); foreach( $documents as $doc ) { echo $this->renderElement( 'description', $doc ); } Is

Why CakePHP always uses var?

2008-05-21 Thread mustan9
Hi, The var keyword is deprecated in PHP5. The Cake documentation and source code constantly use this keyword to define properties for classes. The documentation should be changed, and all references to var should be replaced with the correct visibility of that member variable. for example; cla

Website under maintenance.

2008-05-16 Thread mustan9
Hi, I have to perform a weekly heavy optimization of indexes that requires an exclusive lock. I need to display a message that the website is under going maintenance, but maybe just to certain sections of the website. Browsing controllers that don't access those tables won't cause any problems.

Popup color picker.

2008-05-12 Thread mustan9
Hi, Does anyone have a helper for a view that will show a color popup picker? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubsc

Sending POST to Cake website via PHP

2008-05-10 Thread mustan9
Hi guys, This isn't exactly Cake related, but I was hoping someone could point me in the right direction. I have a Cake site that accepts updates via a form, and that form includes attaching 2 files. I need to have remote server send a POST request to the Cake site as a nightly crontab. I was w

AJAX updating a field.

2008-05-07 Thread mustan9
Hi, Boy, I'm having trouble getting the run down on how to do AJAX in Cake 1.2. I want to do something very simple. Display a value of "123" in a view, and when the user clicks a link have it call a controller, and update that value to "555". A very simple AJAX request. In my controller I have

Re: Form field validation when there is no model.

2008-05-07 Thread mustan9
ke-php/browse_thread/thread/97a22aa5... > > On May 6, 10:31 pm, mustan9 <[EMAIL PROTECTED]> wrote: > > > Hi, > > > Is it possible to use Cake's built in field validation rules for data > > submitted from a form, when there is no AppModel for that controller. >

Form field validation when there is no model.

2008-05-06 Thread mustan9
Hi, Is it possible to use Cake's built in field validation rules for data submitted from a form, when there is no AppModel for that controller. For example; I have a controller that performs actions on a system service. So it has actions like start, stop, and submit job. I'd like to display a d

Re: Sharing plugins between several CakePHP websites.

2008-05-05 Thread mustan9
> You can define a variable $pluginPaths in app/config/bootstrap.php and > add your plugin directory there. Thanks Dan, That was exactly what I was looking for. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake

Sharing plugins between several CakePHP websites.

2008-05-02 Thread mustan9
Hi, I have 3 websites that all require a blog reusable component that I'm developing. Can I share the same plug-in across several websites by telling the different Cake websites to look for plugins in the same directory. Thanks, Mu