Re: Bakehouse anybody ??

2006-09-20 Thread Ryan Petrain
Where can we read up on the CakePHP IDE? I would like to find out moreOn 9/20/06, nate [EMAIL PROTECTED] wrote:Hey Olle, interesting idea.Galathas, also an interesting idea (but Bakehaus would be way cooler).Actually, there is a CakePHP IDE in development, and I hearthere's supposed to be a beta

Re: search functionality for whole website

2006-07-20 Thread Ryan Petrain
The only drawback to this is if your data that want to search is in the database.Does Lucene index the database too?On 7/20/06, Langdon Stevenson [EMAIL PROTECTED] wrote: I have to agree with timo here.I was involved in the development of avery powerful search tool based on Lucene.If you want

Re: uml for php

2006-07-20 Thread Ryan Petrain
/release020.html download argo uml extensios, with this you can generate php file class, is beatiful. bye On 7/20/06, Ryan Petrain [EMAIL PROTECTED] wrote: where can you get the plugin for PHP?the project section for the PHP plugin has no files to download. thanx.On 7/20/06, Felix Coutinho

Re: redirect after a short delay

2006-07-14 Thread Ryan Petrain
you might want to consider using setFlash in Session and then displaying the message on the next page.If you search the group you should see examples of this.On 7/14/06, eDevil [EMAIL PROTECTED] wrote: Thanks gwoo and Ryan but you're missing the point. My Debug level isset to 0 and it DOES

Re: Newbie question - user-defined classes?

2006-07-13 Thread Ryan Petrain
I believe that you can store your custom classes in the vendors directory. If you read the blog tutorial part 2 (in the Cake Wiki), in the later part they demo how to set up an RSS feed and they have you put a rss feed class in the vendors directory. On 7/12/06, Larry E. Masters aka PhpNut [EMAIL

Re: Controller without association with a model

2006-07-10 Thread Ryan Petrain
I believe that you define a variable $uses in the controller and set it equal to nothing:var $uses = ;I am not sure but I think that I read that in another post. On 7/10/06, eDevil [EMAIL PROTECTED] wrote: I want to create an Installer for the application I built.The first page collects

Re: Clarification on ACL

2006-07-07 Thread Ryan Petrain
Hi,I would get the ACM plugin and use it to set up the initial set up that you want and then look at the database so you can see the relations that are made.That might get you a better understanding of what is going on. On 7/7/06, LetUsPrey [EMAIL PROTECTED] wrote: I've finally gotten a basic auth

Re: cool editors for using with cakephp

2006-07-06 Thread Ryan Petrain
gwoo,If I had the experience at setting something like that up I would. I was merely saying it be nice. I have no probs using eclipse with phpeclipse plugin.to all: It is interesting to see who is using which editor. I will have to look into some of the other plugins for eclipse that have been

Re: get error messages

2006-07-06 Thread Ryan Petrain
Is there an overall error object that can be used to get the last error that was generated?I think the problem I am having is that I am using validation rules on a model that does not have them defined so it simply reloads the page with no visible errors. --RyanOn 7/6/06, nate [EMAIL PROTECTED]

Re: cool editors for using with cakephp

2006-07-06 Thread Ryan Petrain
I know of someone that is using RadRails which is nothing more than eclipse with a few ruby plugins.He seems to like it and it does what he needs. He is only using it for editing of files.I commented on how this would be nice to have for cake but I do not have the skills to implement a cake

Re: cool editors for using with cakephp

2006-07-05 Thread Ryan Petrain
I am using Eclipse with the php plugin on one machine and using Zend (ZDE) on my laptop.On 7/5/06, nate [EMAIL PROTECTED] wrote:I use TextWrangler on Mac, ZDE on PC, and ZDE on Mac only when I really, really have to. --~--~-~--~~~---~--~~ You received this message

Re: Implemented OthAuth

2006-07-05 Thread Ryan Petrain
Hi CrazyLegs,Looking forward to the new version. Will the new version work with earlier versions of Cake?I do not want to have to switch to Cake 1.2 before it is ready.Do you have a time frame as to when your next version will be available? Thanx.Ryan On 7/1/06, Olivier Percebois-Garve [EMAIL

Re: Implemented OthAuth

2006-07-05 Thread Ryan Petrain
Hi Langdon,What controller did you end putting your code in?and what does your beforeFilter function look like so that we might be able to have the same success that you had?thanx.--Ryan On 6/30/06, Langdon Stevenson [EMAIL PROTECTED] wrote: Hi Olivier and RyanI have experienced all of the

Re: ACL on a shared host

2006-06-30 Thread Ryan Petrain
Nate:Is there a simple way to get a list of the ACOs a given ARO (user) has access to?On 6/29/06, nate [EMAIL PROTECTED] wrote:The example with setup_controller is just an example of how to do some basic initalization.The idea is, you can just write a shortcontroller action to do the initial

Re: Implemented OthAuth

2006-06-30 Thread Ryan Petrain
Hi Langdon,Cna you help me get past a raher mundane aspect of using othAuth?I have added othAuth to my cake install and all appears to be fine.I try to get to a restricted area and it redirects to the login page. I enter the login credentials and then I get this error once I click the submit

Re: Implemented OthAuth

2006-06-30 Thread Ryan Petrain
() { $this-othAuth-logout(); $this-flash('You are not logged in!','/users/login'); } }?On 6/30/06, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: can you paste your code ? (in cakebin for instance) Ryan Petrain wrote: Hi Langdon, Cna you help me get past a raher mundane aspect of using

Re: Implemented OthAuth

2006-06-30 Thread Ryan Petrain
, the package is old and broke) Ryan Petrain wrote: Hi Olivier, This is the user controller that handles the login. What other code do you need? class UsersController extends AppController { var $name = Users; var $components = array('othAuth'); //var $othAuthRestrictions = array('index

Re: Implemented OthAuth

2006-06-30 Thread Ryan Petrain
this will be redirected to categories/login if it is a restricted page? How do I set up a generic beforeFilter so that it can be handed in apage to redirect after the login is sucessful?Thanx.On 6/30/06, Ryan Petrain [EMAIL PROTECTED] wrote:Olivier, I am not getting that error, but when I visit

Re: Implemented OthAuth

2006-06-30 Thread Ryan Petrain
not sure if I understand you second question. You want to be always redirect to the same page after login, whatever the restricted page that has been called ? Ryan Petrain wrote: Olivier, I have a question about you app_controller.php. If I understand it right, seeing where you have