Re: php cms and rewriteRule and cakephp routes

2013-05-30 Thread iFemke
We use our own CMS with CakePHP websites (we're currently translating our 
own cms into a new cakephp cms.). We use the same structure as you, (app, 
lib, plugins, vendors, cms) and we don't do anything with the .htaccess 
files inside the cakephp part (we also use routes, but don't create a /cms 
route especially). We do have this inside our cms map in the .htaccess:
RewriteEngine On
RewriteBase /

RewriteRule ^(.*)/(.*)/(.*)/(.*)/(.*)/$ 
cms/?module=$1&page=$2&pagenumber=$3&get4=$4&get5=$5 [L]
RewriteRule ^(.*)/(.*)/(.*)/(.*)/$ cms/?module=$1&page=$2&pagenumber=$3&get4=$4 
[L]
RewriteRule ^(.*)/(.*)/(.*)/$ cms/?module=$1&page=$2&pagenumber=$3 [L]
RewriteRule ^(.*)/(.*)/$ cms/?module=$1&page=$2 [L]
RewriteRule ^(.*)/$ cms/?module=$1 [L]

We can access our cms at websitename.com/cms. I hope something like this 
will also work for you!

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Routes and multilanguage site

2013-05-30 Thread iFemke
That worked! Thanks! 

I feel so stupid now haha. We tried so many things and in the maintime it 
would all have worked if we had just put that part below everything else.

Op donderdag 30 mei 2013 08:28:02 UTC+2 schreef Bogdan Soos het volgende:
>
> Hi there, 
>
> Try changing the order, nothing is being routed after your first rule, at 
> least move the first rule at the end, that should be your last rule. 
>
> Regards, 
> Bogdan. 
>
>

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Routes and multilanguage site

2013-05-29 Thread iFemke
Hi,

We have a problem with routes and our multilanguage site. We tried 
different salutions, but we can't get it to work.

We have set it up like this:
  Router::connect('/', array('controller' => 'pages', 'action' => 
'display', 'home'));
Router::connect('/:language', array('controller' => 'pages', 'action' => 
'display', 'home'), array('language' => 'eng|ned|deu'));
Router::connect('/:language/:controller/:action/*', array(), 
array('language' => '[a-z]{3}'));

But we can't get the other urls to change, for example:
Router::connect('/:language/portfolio', array('controller' => 
'portfolioitems', 'action' => 'index'), array('language' => 'eng|ned|deu'));
This doesn't work.

What are we doing wrong? Or how do we need to set things up?

---

A more complicated question, is it possible to get 3 different urls from 
the same controller for the 3 different languages? For example (newsitems 
controller):
websitename.com/eng/news
websitename.com/ned/nieuws
websitename.com/deu/nachrichten
If someone knows this, please share! But it is more important for us to get 
the first part of my question working.



If you have any question to make it more clear, please ask! I will try to 
answer as best as I can.

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: $this->Modelname->validator()->add(); works, but shows no messages in view

2013-05-28 Thread iFemke
Thanks for your reaction! I tried it different ways, but it still isn't 
working.

I have this in my controller:
$this->$slug->validator()->add('name', array(
 'notEmpty' => array(
  'rule' => 'notEmpty',
  'message' => 'Vul dit veld in'
 ),
));

I added a screenshot I took from google chrome inspector. There you see my 
Form start (which I made with $this->Form->Create('Newsitem');) and my 
input, which is named 'name'.

I don't see what I'm doing wrong, maybe you or someone else sees it :-)

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


<>

$this->Modelname->validator()->add(); works, but shows no messages in view

2013-05-24 Thread iFemke
Hi,

I have a difficult situation, I am on my way with the validation, but now 
I'm stuck. I'll try to briefly explain my situation before asking my 
question.

We have one controller called "websitemodules", it has no model because it 
uses different tables, I make the model in the view with the new Appmodel. 
Example: websitemodules gets a variable, "newsitems", this is the database 
table we want to use and therefore I make a temporary model for this 
newsitems so that I can use CakePHP ways of getting data etc. The variable 
can change, for example it can also be blogs, or products, etc. This works 
good. 

I have now added validation to it in the controller with 
the $this->$slug->validator()->add(); where $slug is for example newsitems. 
I've left the rules out of it to simplefy things. This works, because when 
I try to save my data, I get the right error messages all in one debug.

My question now is: I don't want them in one debug or later in one message 
to the user. I want them in the cake way to show under the field it belongs 
to, and the * after the label. I just don't know how to get that or what I 
am doing wrong.

I hope all is clear, if there are any questions I will try to make things 
more clear.

Thanks!

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Routes are confusing me

2012-11-27 Thread iFemke
I'm working on the routes of my CakePHP site. The 'easy' ones I have 
already set like:
Router::connect('/contact', array('controller' => 'contacts', 'action' => 
'index')); 
These are working.

But now I am confused as to how to continue with the more complex routing. 
For example, my url now is /findproducts/compare/1, where he goes to the 
controller findproducts and the action compare and 1 is the category_id. I 
have converted this with my routes to /vinden/vergelijk/1 (dutch 
translations). How do I get the 1 to swap with the category name? So that 
you don't get /vinden/vergelijken/1 but /vinden/vergelijken/food for 
example. Do I have to change all my html links for that? So that my 
controller doens't have  the action "public function compare($id = null)" 
but "public function compare($categoryname = null)"? I hope not, because 
that would be a lot of work..

Another question, in some controllers I work with $this->params, if I 
change my routing, will this effect my passed params? Because sometimes I 
need these params, but I rather not have my visitors see them. I don't know 
if that is possible.

I hope you understand what I want to do. I have read a lot about it (on the 
CakePHP website, this group, etc.) but I'm a little bit confused about how 
to do it. That's why I came here :)

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
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 unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.




Re: ACL renamed database table

2012-11-11 Thread iFemke
Thanks that did it!

I forgot that part, stupid mistake.

Op vrijdag 9 november 2012 19:46:13 UTC+1 schreef cricket het volgende:
>
> The table names normally follow from the model names: Group -> groups. 
> If you want to do something different you'll need to add a $useTable 
> var at a minimum. 
>
> Be sure to delete files in tmp/models folder, also. 
>
> On Fri, Nov 9, 2012 at 10:08 AM, iFemke > 
> wrote: 
> > I have followed the Simple Acl controlled Application tutorial and all 
> was 
> > working. 
> > 
> > Then I renamed the database table (which was groups) in to something 
> else 
> > (_companyname_groups). Now I have errors saying Cake can't find my 
> groups 
> > table, which is logical because I renamed it. I can't, however, find how 
> of 
> > where I can say that he has to use the new table name instead. Or do I 
> have 
> > to do all the steps again as explained in the tutorial? 
> > 
> > I hope you guys can help me! 
> > 
> > -- 
> > Like Us on FaceBook https://www.facebook.com/CakePHP 
> > Find us on Twitter http://twitter.com/CakePHP 
> > 
> > --- 
> > You received this message because you are subscribed to the Google 
> Groups 
> > "CakePHP" group. 
> > To post to this group, send email to cake...@googlegroups.com. 
>
> > To unsubscribe from this group, send email to 
> > cake-php+u...@googlegroups.com . 
> > Visit this group at http://groups.google.com/group/cake-php?hl=en. 
> > 
> > 
>

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
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 unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.




ACL renamed database table

2012-11-09 Thread iFemke
I have followed the Simple Acl controlled Application tutorial and all was 
working.

Then I renamed the database table (which was groups) in to something else 
(_companyname_groups). Now I have errors saying Cake can't find my groups 
table, which is logical because I renamed it. I can't, however, find how of 
where I can say that he has to use the new table name instead. Or do I have 
to do all the steps again as explained in the tutorial?

I hope you guys can help me!

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
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 unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.




Re: Can't get HABTM right

2012-09-03 Thread iFemke
Thanks for the quick reply!

I renamed the table to what you said and put the $habtm in the Format 
model. So Format and Accessory model both have $habtm to each other now. 

But I still can't get the right accessories to show. What should I put in 
the AccessoriesController? I tried that contain part you said, but can't 
get it to work... I don't need them in the FormatController, that part 
doesn't need to show any accessories. In the AccessoriesController (so that 
if you go to mywebsite.com/accessories) I need to get the accessories that 
belong to a certain Format. I hope you can help me again! :)

Op maandag 3 september 2012 10:18:41 UTC+2 schreef Jeremy Burns het 
volgende:
>
> A few things to try...
>
> The joining table should be accessories_formats (the tables appear in 
> alphabetical order).
>
> Remove the $hasMany declaration from the Format model - it should be a 
> $hasAndBelongsToMany association as well.
>
> You have referenced 'FormatAccessorie' - that is neither the singular or 
> plural version of Accessory.
>
> To get the accessories that belong to a Format, simply comntain the 
> Accessory model (and vice versa) and the HABTM association will bring them 
> in.
>
>
> On 3 Sep 2012, at 09:04, iFemke > wrote:
>
> Hi,
>
> I can't get a HABTM relationship right, I can't get it to show me the 
> results I need. I looked at Cake's documentation and Googled, and I tried 
> differents things, rebuilding it from examples I've found online. I just 
> don't know what I'm doing wrong.
>
> The situation is as following. I have Formats (stored in db table formats) 
> and Accessories (stored in db table accessories). Accessories belongs to 
> one or more Formats. So one accessory can belong to many formats and one 
> format can have different accessories. I made a linking table named 
> formats_accessories (with id, format_id and accessory_id). Then I let cake 
> bake do it's magic. 
>
> My Accessory model:
> public $hasAndBelongsToMany = array(
> 'Format' => array(
> 'className' => 'Format',
> 'joinTable' => 'formats_accessories',
> 'foreignKey' => 'accessory_id',
> 'associationForeignKey' => 'format_id',
> 'unique' => 'keepExisting',
> 'conditions' => '',
> 'fields' => '',
> 'order' => '',
> 'limit' => '',
> 'offset' => '',
> 'finderQuery' => '',
> 'deleteQuery' => '',
> 'insertQuery' => ''
> ),
> );
>
> My Format model:
> public $hasMany = array(
> 'FormatsAccessorie' => array(
> 'className' => 'FormatsAccessorie',
> 'foreignKey' => 'format_id',
> 'dependent' => false,
> 'conditions' => '',
> 'fields' => '',
> 'order' => '',
> 'limit' => '',
> 'offset' => '',
> 'exclusive' => '',
> 'finderQuery' => '',
> 'counterQuery' => ''
> )
> );
>
> I don't think this is right, but whatever I tried, changing 
> 'FormatsAccessorie' to Format or changing the $hasMany to 
> $hasManyAndBelongsTo, it just won't work!
>
> What I want to accomplish. In the index function of AccessoriesController 
> I need to show the accessories that belong to a certain format_id. So not 
> all accessories (I know how to make that), but just the accessories that 
> belong to a certain format (which id i set in a session). If you go to 
> mywebsite.com/accessories it needs to show the accessories that belongs 
> to a format you already picked (and is stored in a session).
>
> I really hope you can help me. I know google and this group are full of 
> HABTM questions, but I already looked at so many that I've given up because 
> I just can't get it right.
>
> -- 
> You received this message because you are subscribed to the Google Groups 
> "CakePHP" group.
> To post to this group, send email to cake...@googlegroups.com
> .
> To unsubscribe from this group, send email to 
> cake-php+u...@googlegroups.com .
> Visit this group at http://groups.google.com/group/cake-php?hl=en-US.
>  
>  
>
>
>

-- 
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 unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.




Can't get HABTM right

2012-09-03 Thread iFemke
Hi,

I can't get a HABTM relationship right, I can't get it to show me the 
results I need. I looked at Cake's documentation and Googled, and I tried 
differents things, rebuilding it from examples I've found online. I just 
don't know what I'm doing wrong.

The situation is as following. I have Formats (stored in db table formats) 
and Accessories (stored in db table accessories). Accessories belongs to 
one or more Formats. So one accessory can belong to many formats and one 
format can have different accessories. I made a linking table named 
formats_accessories (with id, format_id and accessory_id). Then I let cake 
bake do it's magic. 

My Accessory model:
public $hasAndBelongsToMany = array(
'Format' => array(
'className' => 'Format',
'joinTable' => 'formats_accessories',
'foreignKey' => 'accessory_id',
'associationForeignKey' => 'format_id',
'unique' => 'keepExisting',
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'finderQuery' => '',
'deleteQuery' => '',
'insertQuery' => ''
),
);

My Format model:
public $hasMany = array(
'FormatsAccessorie' => array(
'className' => 'FormatsAccessorie',
'foreignKey' => 'format_id',
'dependent' => false,
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'exclusive' => '',
'finderQuery' => '',
'counterQuery' => ''
)
);

I don't think this is right, but whatever I tried, changing 
'FormatsAccessorie' to Format or changing the $hasMany to 
$hasManyAndBelongsTo, it just won't work!

What I want to accomplish. In the index function of AccessoriesController I 
need to show the accessories that belong to a certain format_id. So not all 
accessories (I know how to make that), but just the accessories that belong 
to a certain format (which id i set in a session). If you go to 
mywebsite.com/accessories it needs to show the accessories that belongs to 
a format you already picked (and is stored in a session).

I really hope you can help me. I know google and this group are full of 
HABTM questions, but I already looked at so many that I've given up because 
I just can't get it right.

-- 
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 unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.




Sign up for newsletter form on homepage

2012-08-14 Thread iFemke
For a client website we want a newsletter sign up on the homepage, but we 
can't get this to work the way we want it. 

What's happening so far:
If you add a real email address it gets submitted to the database and the 
homepage reloads, displaying a session flash message.
If you add a fake email address or submit the form without typing in a 
email address, you get redirected to www.website.com/newsletters/add, where 
the validation error is shown.

What we want is to not get redirected to newsletters/add, but to show the 
validation errors (like fill in email address or not a real email address) 
on the homepage. 

We have spend the last 2 hours on Google and trying out different things, 
but we can't get the right solution, so we hoped you could help us!

-- 
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 unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.




Controller render different view and pass var

2012-06-18 Thread iFemke
Hi,

I have two controllers. 
- In one controller (OptionsController) you can create, edit, add and 
delete your own options. This is working as it is supposed to. 
- Next to that I have a different controller (let's name that one 
SecondController) that needs a view from the first controller 
(OptionsController).

Normally I would just use $this->render(), but the thing here is that I 
need to pass a var along with the render.In a view from the 
SecondController I need to embed a view from the OptionsController, which 
needs a variable (like an ID or something). 

So if you go to /options/view/2 then it would show you the option with id 
2, this is working because it's basic stuff. But when you go to 
/second/index I want to render the options view. You can do this with 
$this->render(), but then you can't pass the variable that is needed to 
show the view. So how can I do this? Or is it not possible?

I hope you understand what I am trying to do and have a solution for this.

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Re: Access different tables from controller

2012-06-14 Thread iFemke
That works! Thank you!

Op donderdag 14 juni 2012 12:33:03 UTC+2 schreef stork het volgende:
>
> App::uses('AppModel', 'Model');
>
> $Model = new AppModel(array(
> 'name' => 'Blog',
> 'table' => 'module_blog'
> ));
>
> debug($Model->find('all'));
>
> $Model->name = $Model->alias = 'Product';
> $Model->setSource('module_product');
>
> debug($Model->find('all'));
>
>

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Access different tables from controller

2012-06-14 Thread iFemke
I need to access different tables from one controller and I am not using a 
model, is this possible? 

What I am trying to do:
I have a controller named Websitemodules, which has a function called 
name() which gets the 3rd part of url. So if you go to 
/websitemodules/name/blog/ the name() function gets blog. That 3rd var can 
change to anything, blog or products or news etc, they are all modules. 
That's why I put the name() function in there because I need to dynamically 
change the page depending on which module someone wants to access. I know 
this is not the usual way but I need to do it this way because of the 
product we are developing. Every 3rd url var (the module you want to 
access) has a own table like module_blog or module_product, so I need to 
change that part in the name() function depending on which module you want 
to access (the 3rd url var).

I hope you understand what I want to do and I hope it is possible within 
CakePHP. I think it's possible because I could get it to work with just 
PHP, but I don't know how to achieve the same with CakePHP.

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


updating div from a ajax div

2012-06-13 Thread iFemke
I know the title isn't that clear, but I didn't know what to put in there. 
I will explain the situation as best as I can!

When you go to [ourwebsite]/users/ you see on the left side a list of all 
the users and when you click on one user you can edit the user on the right 
side. See screenshot:














left: user list (view = index.ctp)
right: edit user (view = edit.ctp)

We did this using ajax, in short our code looks like this:

/** UsersController **/
class UsersController extends AppController {

public $helpers = array('Js' => array('Jquery'));
public $components = array('RequestHandler');

public function index() {
$this->User->recursive = 0;
$this->set('users', $this->paginate());
}

public function edit($id = null) {
$this->User->id = $id;
if (!$this->User->exists()) {
throw new NotFoundException(__('Invalid user'));
}
if ($this->request->is('post') || $this->request->is('put')) {
if ($this->User->save($this->request->data)) {
//$this->Session->setFlash(__('The user has been saved'));
//$this->redirect(array('action' => 'index'));
echo "Gebruiker is bewerkt!";
$this->autoRender = false;
} else {
//$this->Session->setFlash(__('The user could not be saved. Please, try 
again.'));
echo "Gebruiker is niet bewerkt!";
$this->autoRender = false;
}
} else {
$this->request->data = $this->User->read(null, $id);
}
$groups = $this->User->Group->find('list');
$this->set(compact('groups'));
 $this->set('user', $this->User->read(null, $id));
} 
}

/*** index.ctp **/


 //here the foreach to get the list, not relevant

 //the link you see 'Bewerk' (dutch, edit in english) is made with 
$this->Js->link as you can see below
 Js->link('Bewerk', array('controller' => 'users', 
'action' => 'edit', $user['User']['id']), array('update' => 
'#changedisplay')); ?>



//if you click on 'Bewerk' next to a user (see link above) the view file 
edit.ctp will load in here with the right user info

Js->writeBuffer(); ?>

/** edit.ctp **/

//form code to update the user, also not relevant

//below is the 'Opslaan' button (save in english) to save a user, this is a 
javascript link because we can display a flash message then but I took that 
out of the code because it is not relevant
Js->submit('Opslaan', array('class' => 'button right', 
'div' => false)); ?>
Js->writeBuffer(); ?>

--
So as you can see the edit.ctp file is rendered in the index.ctp using ajax 
and javascript. Nothing wrong here, everything is working fine. But we 
can't save one thing we have been struggling with. When you save a user the 
data in the database gets updated and you can immediately see that in the 
right side of the page (to edit a user - edit.ctp), but the left side of 
the page (the list of users - index.ctp) doesn't get updated.

So if you change the name Femke van Gemert to Femke Gemert and save it, it 
gets updated on the right side, but on the left side in the list it still 
says Femke van Gemert. My question is: How can you refresh the list on the 
left side? the biggest problem is that if you do a refresh with command+R 
(on mac) then the list of users gets updated, but you lose the left side, 
because it isn't in the changedisplay div anymore. So I need a way to 
update the users list from the screen that I showed above, without doing a 
hard refresh (refreshing the whole page), just the users list.

I hope you understand what I am trying to do and I really hop you can help 
me!

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php