Re: How do I redirect?

2012-03-18 Thread thatsgreat2345
You can not send output to the webpage and then redirect.

On Sunday, March 18, 2012 7:28:02 PM UTC-7, glevine wrote:
>
> I have the following code:
>
> class TestsController extends AppController
> {
>   public function index()
>   {
> print 'in the index';
>   }
>
>   public function change()
>   {
> print 'before redirect';
> $this->redirect(array('controller' => 'test', 'action' => 'index'));
> print 'after redirect';
>   }
> }
>  
>
> When I visit www.mysite.com/test/change/ I get a page with "before 
> redirect" and the URL is still 
> www.mysite.com/test/change/.I don't get 
> "after redirect" or "in the index". What am I doing wrong?
>
> Thanks
>

-- 
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


How do I redirect?

2012-03-18 Thread glevine
 

I have the following code:

class TestsController extends AppController
{
  public function index()
  {
print 'in the index';
  }

  public function change()
  {
print 'before redirect';
$this->redirect(array('controller' => 'test', 'action' => 'index'));
print 'after redirect';
  }
}
 

When I visit www.mysite.com/test/change/ I get a page with "before 
redirect" and the URL is still 
www.mysite.com/test/change/.I don't get 
"after redirect" or "in the index". What am I doing wrong?

Thanks

-- 
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


Controller can't access the Session

2012-03-18 Thread Felipe Roman
Hi,

Has someone ever seen only one controller does not access the cake session ?

The session works fine for all controllers except for one specific
controller. I tried debug the problem but I didn't find the reason.

The controller code:

class ExecutivosController extends AppController {

var $name = 'Executivos';
var $uses = array('Executivo', 'FormacaoAcademica',
'FormacaoComplementar', 'Executivo', 'Empresa', 'Unidade', 'Cargo',
'ExecutivoCargo', 'AtuacaoProfissional', 'ExecutivoIdioma', 'Decisao',
'Mobilidade', 'PotencialProntidao', 'Arquivo', 'Usuario');
var $components = array('RequestHandler', 'Email');

function index() {

// Get login information
$Login = $this->Session->read('Login');

debug($_SESSION);
debug($Login);

and the others controllers are similar:

Session->read('Login');

debug($_SESSION);
debug($Login);


When I access the Cargos controller all session information are
printed by debug funcion as expected, when I try access the first one
the Session and $_SESSION is empty. If I reload the second one again
the session values are still there (it means the session isn't
erased).

The app_controller.php file:

class AppController extends Controller {
var $helpers = array('Html', 'Javascript', 'Session', 'Ajax',
'Time', 'Form');

function  beforeFilter() {
//debug($this);
if (($this->name != "Usuarios") or ($this->action != 'login')){

if($this->Session->read('Login')) {
} else {
$this->Session->setFlash(__('Efetue o login para
acessar o sistema', true));
$this->redirect(array('controller' => 'usuarios',
'action' => 'login'));
}
}
}

Has someone have any ideas why the Executivos controller can't access
the session ?

Thanks

-- 
Best Regards,
Felipe Roman
Phone 55 51 8454 8110
LinkedIn http://au.linkedin.com/in/feliperoman

-- 
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


Dots in database name, already fixed?

2012-03-18 Thread ThaGizmo
Hi all,

New Cake user here, came across an "issue" (works as designed, I know)
that Cake won't accept a database name with dots in it (e.g.
"www.mydomain.com"). I've seen it mentioned in older Lighthouseapp
posts, but no solution (or dead links if anything came close to it).

Anybody happen to have a workaround, besides renaming the database?

Cheers,

Ben

-- 
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: find value in array and unset it

2012-03-18 Thread luftlinie
yep. this is it. cant believe it. it drove me nuts. thanks a bunch
tilen :)

On 18 Mrz., 19:57, Tilen Majerle  wrote:
> just don't use  array_values in foreach and should work
> --
> Lep pozdrav, Tilen Majerlehttp://majerle.eu
>
> 2012/3/18 luftlinie 
>
>
>
>
>
>
>
> > hi everyone,
>
> > i have an array "$book['BookAttachment']" like this:
> > ==
>
> > Array
> > (
> >    [0] => Array
> >        (
> >            [title] =>
> >            [name] => booking.pdf
>
> >        )
>
> >    [1] => Array
> >        (
> >            [title] =>
> >            [name] => DSC_6576.JPG
>
> >        )
>
> >    [2] => Array
> >        (
> >            [title] =>
> >            [name] => tt.JPG
>
> >        )
>
> > )
>
> > now i wanna go through that array and find a value that is defined in
> > a passed variable "$filename". once it found it i want to unset that
> > part of the array. but i cant get it to work this is my approach
>
> > foreach(array_values($book['BookAttachment']) as $key => $attachment)
> >                        {
> >                                        if($attachment['name'] == $filename)
> >                                        {
> >                                                $arrayKeyToDelete = $key;
> >                                      }
> >                       }
> > unset($book['BookAttachment'][$arrayKeyToDelete]);
>
> > the problem is "$key" wont point at the correct array index that is to
> > be unset. i think it returns the iteration number and not the index..
>
> > so how do i make sure that i delete the correct array, where filename
> > was found?
>
> > i appreciate it. thank you
>
> > kind regrads
>
> > --
> > Our newest site for the community: CakePHP Video Tutorials
> >http://tv.cakephp.org
> > Check out the new CakePHP Questions sitehttp://ask.cakephp.organd 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
> > athttp://groups.google.com/group/cake-php

-- 
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: find value in array and unset it

2012-03-18 Thread Tilen Majerle
just don't use  array_values in foreach and should work
--
Lep pozdrav, Tilen Majerle
http://majerle.eu



2012/3/18 luftlinie 

> hi everyone,
>
> i have an array "$book['BookAttachment']" like this:
> ==
>
> Array
> (
>[0] => Array
>(
>[title] =>
>[name] => booking.pdf
>
>)
>
>[1] => Array
>(
>[title] =>
>[name] => DSC_6576.JPG
>
>)
>
>[2] => Array
>(
>[title] =>
>[name] => tt.JPG
>
>)
>
> )
>
>
> now i wanna go through that array and find a value that is defined in
> a passed variable "$filename". once it found it i want to unset that
> part of the array. but i cant get it to work this is my approach
>
>
> foreach(array_values($book['BookAttachment']) as $key => $attachment)
>{
>if($attachment['name'] == $filename)
>{
>$arrayKeyToDelete = $key;
>  }
>   }
> unset($book['BookAttachment'][$arrayKeyToDelete]);
>
>
> the problem is "$key" wont point at the correct array index that is to
> be unset. i think it returns the iteration number and not the index..
>
> so how do i make sure that i delete the correct array, where filename
> was found?
>
> i appreciate it. thank you
>
> kind regrads
>
> --
> 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
>

-- 
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


find value in array and unset it

2012-03-18 Thread luftlinie
hi everyone,

i have an array "$book['BookAttachment']" like this:
==

Array
(
[0] => Array
(
[title] =>
[name] => booking.pdf

)

[1] => Array
(
[title] =>
[name] => DSC_6576.JPG

)

[2] => Array
(
[title] =>
[name] => tt.JPG

)

)


now i wanna go through that array and find a value that is defined in
a passed variable "$filename". once it found it i want to unset that
part of the array. but i cant get it to work this is my approach


foreach(array_values($book['BookAttachment']) as $key => $attachment)
{
if($attachment['name'] == $filename)
{
$arrayKeyToDelete = $key;
  }
   }
unset($book['BookAttachment'][$arrayKeyToDelete]);


the problem is "$key" wont point at the correct array index that is to
be unset. i think it returns the iteration number and not the index..

so how do i make sure that i delete the correct array, where filename
was found?

i appreciate it. thank you

kind regrads

-- 
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


ACL - Error Messages after Add New User

2012-03-18 Thread Passivhaus Experte

Hi,

I'm a newbie.

I use the CakePHP Version 2.1.0 and followed the following description
http://book.cakephp.org/2.0/en/tutorials-and-examples/simple-acl-controlled-application/simple-acl-controlled-application.html

Currently I'm at the point "Acts As a Requester" and have the source 
code added to the Models User and Group. Also, I've successfully created 
3 groups. When I add a user to the User table the user is created, but 
in the table Aros was no record is added...


I am a little puzzled, hope you can help me.

Error Messages:
--

Notice (8): Array to string conversion 
[CORE/Cake/Model/Datasource/DboSource.php, line 436]

Code Context

$sql=   'node'
$params =   array(
(int) 0 => array(
)
)
$prepareOptions =   array()
$this   =   object(Mysql) {}
$query  =   object(PDOStatement) {}

PDOStatement::execute() - [internal], line ??
DboSource::_execute() - CORE/Cake/Model/Datasource/DboSource.php, line 
436
DboSource::execute() - CORE/Cake/Model/Datasource/DboSource.php, line 
403
DboSource::fetchAll() - CORE/Cake/Model/Datasource/DboSource.php, line 
646

DboSource::query() - CORE/Cake/Model/Datasource/DboSource.php, line 588
Model::__call() - CORE/Cake/Model/Model.php, line 776
Aro::node() - CORE/Cake/Model/Behavior/AclBehavior.php, line 88
AclBehavior::node() - CORE/Cake/Model/Behavior/AclBehavior.php, line 88
AclBehavior::afterSave() - CORE/Cake/Model/Behavior/AclBehavior.php, 
line 106
ObjectCollection::trigger() - CORE/Cake/Utility/ObjectCollection.php, 
line 130

call_user_func - [internal], line ??
CakeEventManager::dispatch() - CORE/Cake/Event/CakeEventManager.php, 
line 246

Model::save() - CORE/Cake/Model/Model.php, line 1730
UsersController::add() - APP/Controller/UsersController.php, line 68
ReflectionMethod::invokeArgs() - [internal], line ??
Controller::invokeAction() - CORE/Cake/Controller/Controller.php, line 
488

Dispatcher::_invoke() - CORE/Cake/Routing/Dispatcher.php, line 103

--

Database Error

Error: SQLSTATE[42000]: Syntax error or access violation: 1064 You have 
an error in your SQL syntax; check the manual that corresponds to your 
MySQL server version for the right syntax to use near 'node' at line 1


SQL Query: node

Notice: If you want to customize this error message, create 
app/View/Errors/pdo_error.ctp

Stack Trace

CORE/Cake/Model/Datasource/DboSource.php line 436 → 
PDOStatement->execute(array)
CORE/Cake/Model/Datasource/DboSource.php line 403 → 
DboSource->_execute(string, array)
CORE/Cake/Model/Datasource/DboSource.php line 646 → 
DboSource->execute(string, array, array)
CORE/Cake/Model/Datasource/DboSource.php line 588 → 
DboSource->fetchAll(string, array, array)
CORE/Cake/Model/Model.php line 776 → DboSource->query(string, 
array, Aro)
CORE/Cake/Model/Behavior/AclBehavior.php line 88 → 
Model->__call(string, array)

CORE/Cake/Model/Behavior/AclBehavior.php line 88 → Aro->node(array)
CORE/Cake/Model/Behavior/AclBehavior.php line 106 → 
AclBehavior->node(User, array, string)

[internal function] → AclBehavior->afterSave(User, boolean, array)
CORE/Cake/Utility/ObjectCollection.php line 130 → 
call_user_func_array(array, array)

[internal function] → ObjectCollection->trigger(CakeEvent)
CORE/Cake/Event/CakeEventManager.php line 246 → 
call_user_func(array, CakeEvent)
CORE/Cake/Model/Model.php line 1730 → 
CakeEventManager->dispatch(CakeEvent)

APP/Controller/UsersController.php line 68 → Model->save(array)
[internal function] → UsersController->add()
CORE/Cake/Controller/Controller.php line 488 → 
ReflectionMethod->invokeArgs(UsersController, array)
CORE/Cake/Routing/Dispatcher.php line 103 → 
Controller->invokeAction(CakeRequest)
CORE/Cake/Routing/Dispatcher.php line 85 → 
Dispatcher->_invoke(UsersController, CakeRequest, CakeResponse)
APP/webroot/index.php line 96 → Dispatcher->dispatch(CakeRequest, 
CakeResponse)


--
Grüße Sie freundlich.
Tim Bischoff (Indianer3c)
Blogautor Passivhaus Experte
http://www.passivhaus-experte.de/blog

--
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


ACL - Error Messages after Add New User

2012-03-18 Thread i...@passivhaus-experte.de
Hi,

I'm a newbie.

I use the CakePHP Version 2.1.0 and followed the following description
http://book.cakephp.org/2.0/en/tutorials-and-examples/simple-acl-controlled-application/simple-acl-controlled-application.html

Currently I'm at the point "Acts As a Requester" and have the source
code added to the Models User and Group. Also, I've successfully
created 3 groups. When I add a user to the User table the user is
created, but in the table Aros was no record is added...

I am a little puzzled, hope you can help me.

Error Messages:
--

Notice (8): Array to string conversion [CORE/Cake/Model/Datasource/
DboSource.php, line 436]
Code Context

$sql=   'node'
$params =   array(
(int) 0 => array(
)
)
$prepareOptions =   array()
$this   =   object(Mysql) {}
$query  =   object(PDOStatement) {}

PDOStatement::execute() - [internal], line ??
DboSource::_execute() - CORE/Cake/Model/Datasource/DboSource.php, line
436
DboSource::execute() - CORE/Cake/Model/Datasource/DboSource.php, line
403
DboSource::fetchAll() - CORE/Cake/Model/Datasource/DboSource.php, line
646
DboSource::query() - CORE/Cake/Model/Datasource/DboSource.php, line
588
Model::__call() - CORE/Cake/Model/Model.php, line 776
Aro::node() - CORE/Cake/Model/Behavior/AclBehavior.php, line 88
AclBehavior::node() - CORE/Cake/Model/Behavior/AclBehavior.php, line
88
AclBehavior::afterSave() - CORE/Cake/Model/Behavior/AclBehavior.php,
line 106
ObjectCollection::trigger() - CORE/Cake/Utility/ObjectCollection.php,
line 130
call_user_func - [internal], line ??
CakeEventManager::dispatch() - CORE/Cake/Event/CakeEventManager.php,
line 246
Model::save() - CORE/Cake/Model/Model.php, line 1730
UsersController::add() - APP/Controller/UsersController.php, line 68
ReflectionMethod::invokeArgs() - [internal], line ??
Controller::invokeAction() - CORE/Cake/Controller/Controller.php, line
488
Dispatcher::_invoke() - CORE/Cake/Routing/Dispatcher.php, line 103

--

Database Error

Error: SQLSTATE[42000]: Syntax error or access violation: 1064 You
have an error in your SQL syntax; check the manual that corresponds to
your MySQL server version for the right syntax to use near 'node' at
line 1

SQL Query: node

Notice: If you want to customize this error message, create app/View/
Errors/pdo_error.ctp
Stack Trace

CORE/Cake/Model/Datasource/DboSource.php line 436 → PDOStatement-
>execute(array)
CORE/Cake/Model/Datasource/DboSource.php line 403 → DboSource-
>_execute(string, array)
CORE/Cake/Model/Datasource/DboSource.php line 646 → DboSource-
>execute(string, array, array)
CORE/Cake/Model/Datasource/DboSource.php line 588 → DboSource-
>fetchAll(string, array, array)
CORE/Cake/Model/Model.php line 776 → DboSource->query(string,
array, Aro)
CORE/Cake/Model/Behavior/AclBehavior.php line 88 → Model-
>__call(string, array)
CORE/Cake/Model/Behavior/AclBehavior.php line 88 → Aro-
>node(array)
CORE/Cake/Model/Behavior/AclBehavior.php line 106 → AclBehavior-
>node(User, array, string)
[internal function] → AclBehavior->afterSave(User, boolean, array)
CORE/Cake/Utility/ObjectCollection.php line 130 →
call_user_func_array(array, array)
[internal function] → ObjectCollection->trigger(CakeEvent)
CORE/Cake/Event/CakeEventManager.php line 246 →
call_user_func(array, CakeEvent)
CORE/Cake/Model/Model.php line 1730 → CakeEventManager-
>dispatch(CakeEvent)
APP/Controller/UsersController.php line 68 → Model->save(array)
[internal function] → UsersController->add()
CORE/Cake/Controller/Controller.php line 488 → ReflectionMethod-
>invokeArgs(UsersController, array)
CORE/Cake/Routing/Dispatcher.php line 103 → Controller-
>invokeAction(CakeRequest)
CORE/Cake/Routing/Dispatcher.php line 85 → Dispatcher-
>_invoke(UsersController, CakeRequest, CakeResponse)
APP/webroot/index.php line 96 → Dispatcher->dispatch(CakeRequest,
CakeResponse)

--
Grüße Sie freundlich.
Tim Bischoff (Indianer3c)
Blogautor Passivhaus Experte
http://www.passivhaus-experte.de/blog

-- 
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: Vendors php classes for cake 2.1

2012-03-18 Thread dariob
App:import / App:uses ??



Il giorno domenica 18 marzo 2012 10:36:55 UTC+1, dariob ha scritto:
>
> What is for you the best way to implement any external php class to be 
> avaible trough controllers or models?
> We truly need to package any php class in a plugin?? And how? (cake 2.1)

-- 
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: JS->Submit

2012-03-18 Thread David Cole
Have you considered going with JQuery and using the .submit() ?

http://api.jquery.com/submit/

On Saturday, March 17, 2012 3:30:08 AM UTC-5, CrotchFrog wrote:
>
> I recently switched computers and for whatever reason I decided to go with 
> WampServer on this machine instead of XAMPP which I have been using up 
> until now. 
>
> I have a JS request that seems to have stopped working once I switched. 
>
> [code]
>
> Form->create(false);?>
> 
>   echo $this->Form->input('date', array(
> 'label' => false,
>  'type' => 'date',
> 'dateFormat' => 'MY',
>  'minYear' => date('Y'),
> 'maxYear' => date('Y') + 1,
>  ));
> ?>
> 
>  
> Js->submit('Go', array('url' => array('action' => 
> 'admin_getWeeks'), 'update' => '#weekList'));?>
>  Form->end();?>
> 
>
> [/code]
>
> I'm (relatively) sure that it worked just fine as written above however, 
> now when submitting the form instead of making the request and updating the 
> element #weekList the form submits to 'ShopHours/admin_add'.
> I'm sure it's purely coincidence that this occurred at the same time I 
> switched servers but I'm unable to see what I'm overlooking here. 
>
> Thanks in advance, 
> ED 
>

-- 
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: Pagination + querying associated models

2012-03-18 Thread David Cole
Look up bindModel for #2. Should be what your looking for.

On Saturday, March 17, 2012 9:45:17 PM UTC-5, succ...@tiscali.it wrote:
>
> Hi bakers! 
>
> I have 2 questions for you: 
>
> 1)Is it possibile to use afterFind with pagination? 
>
>
> 2) I have this association: Cities hasMany Users. 
> How can i do a query to have the list of the city with the number of 
> people who lives in it? 
> sounds like to add after a findAll 
>
>
> foreach ($city) 
> { 
> $city['population']=$this->users->find('count', array('condition' => 
> array('cities_id' => $city['id']))); 
> } 
>
> Is there a cakeway?! 
> thank you so much!

-- 
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


Help Regarding ACL

2012-03-18 Thread mohit kumar
Hi Experts,

Need some help,
I am in process of learning of Cake PHP. I was creating an app which needs
ACL feature.
While reading various docs this is what I have learn. Please correct me if
I am wrong

ACL has 2 components, ACO  and ARO

Object(ARO)  Requests - Object(ACO)

Now using the bake tool , i was able to add various tables and aco and aro
tables.
I have added  2 groups to ARO

Aro tree:
---
  [1] Group.2
  [2] Group.3
---

Now i am not able to figure out how to add objects to ACO?

another thing is I am getting the following error, is this due to the fact
i have not added any object to ACO

*Warning* (512): AclNode::node() - Couldn't find Aro node identified by "Array
(
[Aro0.model] => Group
[Aro0.foreign_key] => 1
)
" [*CORE\Cake\Model\AclNode.php*, line *176*]

*Warning* (512): DbAcl::check() - Failed ARO/ACO node lookup in
permissions check.  Node references:
Aro: Array
(
[User] => Array
(
[id] => 1
[username] => mohit
[group_id] => 1
[created] => 2012-03-18 11:02:07
[modified] => 2012-03-18 11:02:07
)

)

Aco: controllers/Pages/display
[*CORE\Cake\Controller\Component\AclComponent.php*, line *303*]

Thanks for help.

Regards,
Mohit









-- 
Best Regards,
Mohit Kumar

-- 
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


Vendors php classes for cake 2.1

2012-03-18 Thread dariob
What is for you the best way to implement any external php class to be 
avaible trough controllers or models?
We truly need to package any php class in a plugin?? And how? (cake 2.1)

-- 
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