Re: Penetration tests

2012-12-21 Thread Ceeram
@Jeremy Great to hear about your findings, i think it would be cool to put your post up on cakephp.org as testimonial :) Op vrijdag 21 december 2012 15:28:43 UTC+1 schreef HK het volgende: > > On 21/12/2012 3:56 μμ, Matthew Kaufman wrote: > > Which do you use? > > I don't. I am searching for s

Re: CakePdf - How To Start?

2012-08-23 Thread Ceeram
I fixed the notice: https://github.com/ceeram/CakePdf/commit/efb6f480d28676f95d1860dd95f71aa01da5a0a5 On Thursday, August 23, 2012 3:31:14 PM UTC+2, Ceeram wrote: > > The first error about missing method setExtensions() is because you are > not using latest cake version, if you woul

Re: CakePdf - How To Start?

2012-08-23 Thread Ceeram
The first error about missing method setExtensions() is because you are not using latest cake version, if you would look up the line where the error points to you would read this: https://github.com/ceeram/CakePdf/blob/master/Config/routes.php#L3 The dompdf error, i can not help with really

Re: Why doesn't JsonView trigger callbacks?

2012-08-16 Thread Ceeram
https://github.com/cakephp/cakephp/pull/777 Keep an eye on this one id say :) On Wednesday, August 15, 2012 12:57:53 AM UTC+2, Lucho Molina wrote: > > [Tumbleweed] > > :P > > On Monday, August 13, 2012 11:28:53 AM UTC-5, Lucho Molina wrote: >> >> I was playing around with JsonView and the Pagina

Re: CakePdf - How To Start?

2012-08-16 Thread Ceeram
:01:37 PM UTC+2, Ceeram wrote: > > Line 994 tries to throw missingview exception, so your setup is still > incorrect > > On Thursday, August 16, 2012 12:49:08 PM UTC+2, Mancho Murgan wrote: >> >> You need increase PHP memory limit for this method. >> You can get the

Re: CakePdf - How To Start?

2012-08-16 Thread Ceeram
Line 994 tries to throw missingview exception, so your setup is still incorrect On Thursday, August 16, 2012 12:49:08 PM UTC+2, Mancho Murgan wrote: > > You need increase PHP memory limit for this method. > You can get the current memory limit with ini_get() function, for example: > print_r(ini_

Re: CakePdf - How To Start?

2012-08-14 Thread Ceeram
Btw i just noticed there is anotyehr CakePdf plugin that does use the prefix thing, but works in completely different way I got here, as someone opened a ticket on my repo, can you confirm which plugin you are using? On Tuesday, August 14, 2012 12:37:42 AM UTC+2, Ceeram wrote: > > Hi gu

Re: CakePdf - How To Start?

2012-08-13 Thread Ceeram
Hi guys, im the maintainer of the plugin. Lets nail this, so i know what to add to the docs. For what i know everything is in the readme, but perhaps i missed a step. You can use CakePdf in 2 ways: 1. Render like normal html view in the browser but as pdf (or forced download), use the same u

Re: Unauthorized users don't get redirected to login action

2012-05-24 Thread Ceeram
Why should a logged in user be redirected to login? Op donderdag 24 mei 2012 09:03:03 UTC+2 schreef rahajiyev het volgende: > > I have Auth set up as 'authorize' => 'controller' so Cake calls > isAuthorized() for each url. > The problem is, when my isAuthorized() returns false (meaning user has

Re: Headers already sent using DOMPDF in view

2012-05-24 Thread Ceeram
Perhaps this might help you. Use or copy the code https://github.com/ceeram/CakePdf Op vrijdag 18 mei 2012 23:59:46 UTC+2 schreef Josh M het volgende: > > > > On May 18, 2:28 pm, AD7six wrote: > > On Friday, 18 May 2012 18:09:35 UTC+2, Josh M wrote: > > > > >

Re: Many-to-many ACL

2012-05-24 Thread Ceeram
Or you can use this plugin: https://github.com/ceeram/Authorize and set AuthComponent up with HabtmDbAclAuthorize Op maandag 21 mei 2012 14:35:32 UTC+2 schreef rahajiyev het volgende: > > > > On May 16, 1:23 am, Justin Edwards wrote: > > > To DB > > > >

Re: isAuthorized() is never called

2012-04-02 Thread Ceeram
@Sony $this->Auth-> authorize = 'controller'; should be $this->Auth-> authorize = 'Controller'; Op woensdag 28 maart 2012 15:09:03 UTC+2 schreef Sony het volgende: > > Hi, > > When I run a action, the access is refused because the method > isAuthorized() is never called. > > AppController :

Re: Cake 2.1 Events:

2012-01-31 Thread Ceeram
@phpMagpie a follow up on this subject would be nice ;) -- 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, s

Re: saveAll not working

2011-09-07 Thread Ceeram
The usage and data formatting seems to be correct, so only thing that could be wrong is validations, or a beforeSave/beforeValidate callback not returning true, you can easily find out which one is causing it, by passing array('callbacks' => false) or array('validate' => false) as $options --

Re: Looking for a ticket for Cakefest

2011-08-30 Thread Ceeram
http://twitter.com/#!/cakephp/statuses/108533488298360832 -- 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,

Re: Component causing AppController to fail in 2.0 beta

2011-08-24 Thread Ceeram
Turn on debug, it should,have shown an error message about the plugin not being loaded -- 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

Re: Security and Model Validation Questions

2011-08-12 Thread Ceeram
with debug on, and there is an error with db connection, it will show db login credentials (this is changed in latest versions), so they probably accessed the db itself, is the user allowed for all hosts on the db or just local? -- Our newest site for the community: CakePHP Video Tutorials ht

Re: Moving a tree node

2011-08-12 Thread Ceeram
check the api for this, if you dont set 3rd parameter it will move 1 position by default -- 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.

Re: 1.3.11 Auth ACL beforeFilter

2011-08-12 Thread Ceeram
call parent::beforeFilter() also bindNode should be in your model -- 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 thi

Re: Nested table update

2011-08-12 Thread Ceeram
saveAll() will only save directly associated data, so Post->saveAll() wont save Image data, as that model is directtly associated with Post This is described in the book and api -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questi

Re: compatibility with mysql workbench foreign key names

2011-08-12 Thread Ceeram
then complain with workbench that you are not able to define how fk fieldnames are named -- 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.

Re: Formatting arrays returned using Find('all')

2011-08-04 Thread Ceeram
why did you double post this? Set::extract('{n}.Industry', $your_data); -- 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 fr

Re: Formatting Arrays

2011-08-04 Thread Ceeram
Set::extract('{n}.Industry', $your_data); -- 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 ca

Re: plugin routing problem

2011-08-02 Thread Ceeram
Your Html->link() is correct and should point to /users/users/index . Check your routes.php, perhaps you are routing this to blog plugin. -- 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

Re: CakePHP 2.0 Auth not hashing password

2011-07-27 Thread Ceeram
This is mentioned in the migration guide, Auth doesnt auto hash your passwords anymore, you need to handle that manually in 2.0 . It was very confusing for new users to have the passwords auto hashed. -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check ou