Re: Is Cake Dead Or Just Catching Up?

2014-03-11 Thread Dr. Tarique Sani
CakePHP is far from dead. Have been hearing about since a few years now ;-) Not a flame bait but anyone here remembers Lithium? The dev team is busy putting finishing touches to version 3.0 which promises to be a huge leap. I will confess that I did wander over to Laravel land but I am back.

Re: Is Cake Dead Or Just Catching Up?

2014-03-11 Thread Jeremy Burns : Class Outfit
This question is a bit like What's your favourite colour; triangle or banana? It's largely a matter of interpretation, habit and opinion. Or Who's the best looking actress?. I don't measure Cake's qualities on how popular it is or how many support questions are raised. I measure it on its

Re: Is Cake Dead Or Just Catching Up?

2014-03-11 Thread Jeremy Burns : Class Outfit
By the way, I've noticed the same thing about the Google forum. I used to spend perhaps an hour a day answering questions where I could. But then the trend became that quite a lot of the questions were either so basic that anyone reading even the first few pages of the Cookbook wouldn't ask, or

Re: Is Cake Dead Or Just Catching Up?

2014-03-11 Thread Thomas von Hassel
If you switch frameworks every 6 months you are doing it wrong. So far CakePHP does what i need it to do, and i see no reason to shop around. Also, with the things coming in 3.0 I'm very optimistic about the direction the dev. team is taking. In regards to traffic on the list/google group, i

RE: Is Cake Dead Or Just Catching Up?

2014-03-11 Thread Advantage+
In no way am I putting Cake down, I love Cake and use it for almost every project. I love it! I just see lack of fan fare as you can call it over the years. I see familiar names always answering questions for users. That's great! But I seem to notice less and less so I was only wondering if

Chat

2014-03-11 Thread ganthi2
Can anyone help me on How to integrate private and group chat with cakePHP (ver 2) application? Thanks in advance. -- 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

Re: Custom MM:SS Time Validation with Regex

2014-03-11 Thread AD7six
If regular expressions aren't your thing - don't use regular expressions =) e.g. write a validation function like so: function validateTime($check) { $string = current($check); list($mins, $seconds) = expode(':', $string); $validMins = is_numeric($mins);

Re: Is Cake Dead Or Just Catching Up?

2014-03-11 Thread Dr. Tarique Sani
But I seem to notice less and less so I was only wondering if people are jumping ship and moving on to other frameworks. Then this would be a wrong place to ask ;-) Tarique On Tue, Mar 11, 2014 at 1:21 PM, Advantage+ movepix...@gmail.com wrote: In no way am I putting Cake down, I love

Re: Can't we use more than 1 paginator per page?

2014-03-11 Thread Борислав Събев Borislav Sabev
It is possible of course but it depends on if you would like to persist the pagination - i.e. save the state via URL so that you can access the same portion of data later. In that case you will have to find a nice named-parameter way to persist the pagination data. You will have to use AJAX

Re: upload compressed image

2014-03-11 Thread Борислав Събев Borislav Sabev
:D On Monday, 10 March 2014 11:29:04 UTC+2, AD7six wrote: On Monday, 10 March 2014 10:06:45 UTC+1, raj kumar Pustela wrote: hi all.. How to implement upload compressed image/video in cakephp 2.3.0.if any one know pls help me. It's exactly the same process as to upload an

Re: Is Cake Dead Or Just Catching Up?

2014-03-11 Thread Stephen S
I think regardless to how many people are using CakePHP right now I will continue to use it because it's a framework which reduces development time and provides many stable features and conventions to follow which in my opinion are awesome. To use another framework will require me to learn the

Re: Is Cake Dead Or Just Catching Up?

2014-03-11 Thread Thomas von Hassel
You can just do it the other way around: make the job into a CakePHP job (that's what i did) /thomas On 11 Mar 2014, at 13:29, Stephen S hellospeak...@gmail.com wrote: OT: Pretty lucky really, I managed to land a job working with CakePHP last November and where I live finding a CakePHP job

Re: Chat

2014-03-11 Thread Stephen S
That's a little vague, you should first decide what method of chat you would like to implement, node.js may be a good method but you'll have to just have a go at it and ask more specific questions when you get stuck. Few node resources (there are other methods) https://github.com/isaacsu/twich

CakePHP 3.0 error

2014-03-11 Thread André Luis
Hi people, I am trying to follow the Blog tutorial from cakephp 3.0 website, but i am getting an error wich isnt showed up, also its not on the log... The problem is whem i try to retrieve the articles with $this-Articles-find('all');, whem have this line the browser says that this page is

Re: Is anyone else getting a zend_mm_heap corrupted error with Cake 3 such that pages never finish loading?

2014-03-11 Thread José Lorenzo
That is usually related to a PHP bug triggered by APC opcode caching. Maybe try to update your PHP version? On Monday, March 10, 2014 1:00:02 PM UTC+1, heavyKevy wrote: I am using Windows 7 64 bit WampServer Version 2.2 Apache 2.4.2 Php 5.4.3 MySql 5.5.24 Eclipse 3.0.2 The problem

Re: CakePHP 3.0 error

2014-03-11 Thread André Luis
Sorry for my incovenience, but it was a version error, i dont know why but i was using php 5.4.3, but now with 5.5 its ok. Thanks anyway Em terça-feira, 11 de março de 2014 14h19min01s UTC-3, André Luis escreveu: Hi people, I am trying to follow the Blog tutorial from cakephp 3.0 website,

Re: Spaces in Field Names

2014-03-11 Thread John Andersen
Hi Dale Thank you for your reply. Does the Customers table contain a large amount of data? Could you replicate the Customers table to MySQL, for example every day? The replicated table could then use column names without spaces, allowing you to work within CakePHP. Is the above an option?

Re: CakePHP 3.0 error

2014-03-11 Thread José Lorenzo
Good to know! How are you finding Cake 3 so far? On Tuesday, March 11, 2014 7:10:56 PM UTC+1, André Luis wrote: Sorry for my incovenience, but it was a version error, i dont know why but i was using php 5.4.3, but now with 5.5 its ok. Thanks anyway Em terça-feira, 11 de março de 2014

Jasper reports at Cakephp

2014-03-11 Thread YOONG SINJIE
HI friend , anyone know how to integrate cakephp with jasper reports ? :D -- 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

RESTful (Form) Validation?

2014-03-11 Thread OJ Tibi - @ojtibi
Hi folks, I was wondering if there was a way to let the client app know which fields it submitted have validation errors. (As you can see, I placed Form between parentheses because there isn't really an HTML form in a REST API request.) While the Cookbook recommends to use the built-in

V3.0 - saving fails...

2014-03-11 Thread Dr. Tarique Sani
Wonder why saving is failing I am doing $article = $this-Articles-newEntity($this-request-data); if ($this-Articles-save($article)) { $this-Session-setFlash(__('Your article has been saved.')); return $this-redirect(['action' = 'index']); }