Re: [CakePHP : The Rapid Development Framework for PHP] #6271: Solution to #5254 does not allow for "opting out" of the security measure

2009-12-06 Thread CakePHP : The Rapid Development Framework for PHP
#6271: Solution to #5254 does not allow for "opting out" of the security measure
+---
Reporter:  Ocean| Owner:   
Type:  RFC  |Status:  new  
Priority:  Medium   | Milestone:  1.2.x.x  
   Component:  Session  |   Version:  1.2 Final
Severity:  Normal   |Resolution:   
Keywords:   |   Php_version:  n/a  
Cake_version:   |  
+---
Comment (by nicketr):

 I was able to opt-out following ADmad's article
 http://bakery.cakephp.org/articles/view/how-to-bend-cakephp-s-session-
 handling-to-your-needs

 I declared
 {{{
 Configure::write('Session.save','my_session');
 }}}
  inside the core.php and created a my_session.php file inside the config
 directory. In the file I wrote a ini_set directive which disables the
 secure cookie.

 {{{
 ini_set('session.cookie_secure', 0);
 }}}

 This method is more flexible and I don't believe there is a need for a
 change.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6271#comment:6>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.

--

You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cake...@googlegroups.com.
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en.




Re: [CakePHP : The Rapid Development Framework for PHP] #6271: Solution to #5254 does not allow for "opting out" of the security measure

2009-12-01 Thread CakePHP : The Rapid Development Framework for PHP
#6271: Solution to #5254 does not allow for "opting out" of the security measure
+---
Reporter:  Ocean| Owner:   
Type:  RFC  |Status:  new  
Priority:  Medium   | Milestone:  1.2.x.x  
   Component:  Session  |   Version:  1.2 Final
Severity:  Normal   |Resolution:   
Keywords:   |   Php_version:  n/a  
Cake_version:   |  
+---
Comment (by ifeghali):

 I would like to reinforce this.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6271#comment:5>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.

--

You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cake...@googlegroups.com.
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en.




Re: [CakePHP : The Rapid Development Framework for PHP] #6538: [Test] Wrong serialization of array with XmlHelper::serialize()

2009-11-27 Thread CakePHP : The Rapid Development Framework for PHP
#6538: [Test] Wrong serialization of array with XmlHelper::serialize()
--+-
Reporter:  dho| Owner:   
Type:  Bug|Status:  closed   
Priority:  Medium | Milestone:  1.2.x.x  
   Component:  Helpers|   Version:  1.2 Final
Severity:  Normal |Resolution:  fixed
Keywords: |   Php_version:  PHP 5
Cake_version:  rev. 8263  |  
--+-
Comment (by mark_story):

 Thanks for the patch on the _name_ issue.  Just so everyone is aware, trac
 is not actively searched for updates.  Please try to keep activity related
 to issues on http://code.cakephp.org.  Thanks :)

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6538#comment:5>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.

--

You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cake...@googlegroups.com.
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en.




Re: [CakePHP : The Rapid Development Framework for PHP] #5847: Model::findQueryType unset prior to Model::afterFind()

2009-11-25 Thread CakePHP : The Rapid Development Framework for PHP
#5847: Model::findQueryType unset prior to Model::afterFind()
+---
Reporter:  zaboo| Owner: 
Type:  Enhancement  |Status:  closed 
Priority:  Low  | Milestone:  1.3.x.x
   Component:  Model|   Version: 
Severity:  Minor|Resolution:  fixed  
Keywords:   |   Php_version:  n/a
Cake_version:   |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 This has been implemented for 1.3

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5847#comment:4>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.

--

You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cake...@googlegroups.com.
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en.




Re: [CakePHP : The Rapid Development Framework for PHP] #4170: Implementing file validation in validation.php

2009-11-25 Thread CakePHP : The Rapid Development Framework for PHP
#4170: Implementing file validation in validation.php
+---
Reporter:  blackymetal  | Owner:
Type:  Enhancement  |Status:  closed
Priority:  Very Low | Milestone:  1.3.x.x   
   Component:  Core Libs|   Version:
Severity:  Minor|Resolution:  wontfix   
Keywords:  file validation  |   Php_version:  PHP 4 >= 4.3.2
Cake_version:   |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => wontfix

Comment:

 File validation has been removed, as there are to many variations and
 possible configurations for file upload validation.  This kind of
 validation is best handled by a behavior or model.

 Thanks for helping make CakePHP better.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4170#comment:2>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.

--

You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cake...@googlegroups.com.
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en.




Re: [CakePHP : The Rapid Development Framework for PHP] #2064: Ajax autoComplete "with option"

2009-11-24 Thread CakePHP : The Rapid Development Framework for PHP
#2064: Ajax autoComplete "with option"
-+--
Reporter:  c3k   | Owner:  Any Developer 
Type:  Bug   |Status:  closed
Priority:  Medium| Milestone:  1.2.x.x   
   Component:  Helpers   |   Version:  RC3   
Severity:  Normal|Resolution:  fixed 
Keywords:  autoComplete with option  |   Php_version:  PHP 4 >= 4.3.0
Cake_version:|  
-+--
Comment (by mryellow):

 Problem persists with whole form serialize only sending values in their
 initial state. Changes for form fields are not sent as the serialization
 doesn't happen at the correct time.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/2064#comment:11>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.

--

You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cake...@googlegroups.com.
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en.




Re: [CakePHP : The Rapid Development Framework for PHP] #6336: XSS Vulner (index.php/anystuff here)

2009-11-20 Thread CakePHP : The Rapid Development Framework for PHP
#6336: XSS Vulner (index.php/anystuff here)
-+--
Reporter:  bakyt.niyazov | Owner:   
Type:  Security Exploit  |Status:  closed   
Priority:  Critical  | Milestone:  1.2.x.x  
   Component:  General   |   Version:  1.2 Final
Severity:  Critical  |Resolution:  fixed
Keywords:|   Php_version:  n/a  
Cake_version:|  
-+--
Comment (by nadin.uvre):

 Replying to [comment:7 jcorrea]:
 It is such a nice research paper [http://www.superiorpapers.com research
 paper].

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6336#comment:8>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.

--

You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cake...@googlegroups.com.
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=.




Re: [CakePHP : The Rapid Development Framework for PHP] #3003: SQLite 3 support

2009-11-19 Thread CakePHP : The Rapid Development Framework for PHP
#3003: SQLite 3 support
+---
Reporter:  sebbarre | Owner:  Any Developer
Type:  Enhancement  |Status:  new  
Priority:  Low  | Milestone:  2.0.0.x  
   Component:  General  |   Version:  2.0.x.x  
Severity:  Trivial  |Resolution:   
Keywords:   |   Php_version:  n/a  
Cake_version:   |  
+---
Comment (by lenzcom):

 Replying to [comment:25 mfandrade]:
 > Replying to [comment:24 mscdex]:
 > > (..)
 >
 > Thanks.  I had another issue too.  In my case, the dbo_sqlite3 is not
 able to return the proper value in a find('count') query.  After some
 debugging, I see a resultset with and index called "count" (quote-count-
 quote), instead of just count.  I've fixed it changing the $startQuote and
 $endQuote attribs to empty strings.
 >
 > PS: Is this ticket already moved to http://code.cakephp.org?

 Yes, carlos.gacimartin did a submit, you can find/enhance it here:
 http://code.cakephp.org/tickets/view/313

-- 
Ticket URL: <https://trac.cakephp.org/ticket/3003#comment:26>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.

--

You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cake...@googlegroups.com.
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=.




Re: [CakePHP : The Rapid Development Framework for PHP] #5123: Incorrect find('count') results when using "GROUP BY" and Controller::paginate()

2009-11-19 Thread CakePHP : The Rapid Development Framework for PHP
#5123: Incorrect find('count') results when using "GROUP BY" and
Controller::paginate()
--+-
Reporter:  bunyan | Owner:  
Type:  Enhancement|Status:  reopened
Priority:  Low| Milestone:  2.0.0.x 
   Component:  MySQL  |   Version:  Alpha   
Severity:  Normal |Resolution:  
Keywords:  paginate, count, group by  |   Php_version:  PHP 5   
Cake_version:  1.2.0.7296 RC2 |  
--+-
Comment (by bmilesp):

 I agree with mark_story that the workarounds suggested do fill the
 flexibility. But Pedro's point that expected/included flexibility should
 be the holy mantra of framework development.

 I had to chime in on this because I had quite a complex pagination query,
 so it wasn't at all obvious which part of the query was causing the bug.
 After nearly 3 hours of debugging the core code I finally found that the
 GROUP BY was causing this bug. I then googled it and found this ticket
 here, finally ending the frustration.

 We can all easily write simple workarounds and overrides, sure, but
 getting to that point can be a long, thorn-laden road if you're not
 familiar with the core code.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5123#comment:17>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.

--

You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cake...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=.




Re: [CakePHP : The Rapid Development Framework for PHP] #5218: Ajax autocomplete doesn't pass security check

2009-11-17 Thread CakePHP : The Rapid Development Framework for PHP
#5218: Ajax autocomplete doesn't pass security check
---+
Reporter:  Anton B.| Owner: 
Type:  Bug |Status:  new
Priority:  Medium  | Milestone:  1.3.x.x
   Component:  Components  |   Version: 
Severity:  Normal  |Resolution: 
Keywords:  |   Php_version:  PHP 5  
Cake_version:  |  
---+
Changes (by mryellow):

  * type:  Enhancement => Bug

Comment:

 No fix planned?

 Little strange that a core component included in a standard form, not
 functioning, could be considered an enhancement for the next version.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5218#comment:3>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.

--

You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cake...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=.




Re: [CakePHP : The Rapid Development Framework for PHP] #2191: ACL should allow AROs with multiple, unnested parents (e.g., users in multiple groups)

2009-11-17 Thread CakePHP : The Rapid Development Framework for PHP
#2191: ACL should allow AROs with multiple, unnested parents (e.g., users in
multiple groups)
+---
Reporter:  scragz   | Owner:  Any Developer
Type:  Enhancement  |Status:  closed   
Priority:  Low  | Milestone:   
   Component:  ACL (Access Control List)|   Version:  RC1  
Severity:  Normal   |Resolution:  worksforme   
Keywords:  acl multiple user group aro  |   Php_version:  n/a  
Cake_version:   |  
+---
Comment (by celsowm):

 We have the same difficulty. How to convince developers of the Cake that
 is very important?

-- 
Ticket URL: <https://trac.cakephp.org/ticket/2191#comment:3>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5709: Cache: Apc gc() is missing

2009-11-16 Thread CakePHP : The Rapid Development Framework for PHP
#5709: Cache: Apc gc() is missing
+---
Reporter:  hausburger   | Owner: 
Type:  Enhancement  |Status:  closed 
Priority:  Medium   | Milestone:  1.3.x.x
   Component:  General  |   Version: 
Severity:  Normal   |Resolution:  invalid
Keywords:  apc cache gc Garbage collection  |   Php_version:  n/a
Cake_version:   |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => invalid

Comment:

 There is no gc() method in the Apc Engine because Apc has built in
 methods, set via the php.ini file for handling garbage collection. The
 cake interface assumes you have correctly configured your Apc caching.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5709#comment:2>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6514: Element cache works without 'key' param but not without 'time' param

2009-11-16 Thread CakePHP : The Rapid Development Framework for PHP
#6514: Element cache works without 'key' param but not without 'time' param
-+--
Reporter:  primeminister | Owner:   
Type:  Enhancement   |Status:  closed   
Priority:  Medium| Milestone:  1.2.x.x  
   Component:  View  |   Version:  1.2 Final
Severity:  Normal|Resolution:  wontfix  
Keywords:  element, cache, view  |   Php_version:  PHP 5
Cake_version:|  
-+--
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => wontfix

Comment:

 If you use an array for the cache key, you need to supply both a time and
 key.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6514#comment:2>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5912: Disable clearCache option

2009-11-16 Thread CakePHP : The Rapid Development Framework for PHP
#5912: Disable clearCache option
--+-
Reporter:  akira8 | Owner: 
Type:  Enhancement|Status:  closed 
Priority:  Medium | Milestone:  1.3.x.x
   Component:  Cache  |   Version: 
Severity:  Normal |Resolution:  wontfix
Keywords:  cache, clear cache, disable clear  |   Php_version:  n/a
Cake_version: |  
--+-
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => wontfix

Comment:

 If you want to disable Cache clearing for specific models you can do that
 by overriding Model::_clearCache and implementing the necessary checking
 logic there.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5912#comment:2>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #3003: SQLite 3 support

2009-11-13 Thread CakePHP : The Rapid Development Framework for PHP
#3003: SQLite 3 support
+---
Reporter:  sebbarre | Owner:  Any Developer
Type:  Enhancement  |Status:  new  
Priority:  Low  | Milestone:  2.0.0.x  
   Component:  General  |   Version:  2.0.x.x  
Severity:  Trivial  |Resolution:   
Keywords:   |   Php_version:  n/a  
Cake_version:   |  
+---
Comment (by mfandrade):

 Replying to [comment:24 mscdex]:
 > (..)

 Thanks.  I had another issue too.  In my case, the dbo_sqlite3 is not able
 to return the proper value in a find('count') query.  After some
 debugging, I see a resultset with and index called "count" (quote-count-
 quote), instead of just count.  I've fixed it changing the $startQuote and
 $endQuote attribs to empty strings.

 PS: Is this ticket already moved to http://code.cakephp.org?

-- 
Ticket URL: <https://trac.cakephp.org/ticket/3003#comment:25>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6271: Solution to #5254 does not allow for "opting out" of the security measure

2009-11-13 Thread CakePHP : The Rapid Development Framework for PHP
#6271: Solution to #5254 does not allow for "opting out" of the security measure
+---
Reporter:  Ocean| Owner:   
Type:  RFC  |Status:  new  
Priority:  Medium   | Milestone:  1.2.x.x  
   Component:  Session  |   Version:  1.2 Final
Severity:  Normal   |Resolution:   
Keywords:   |   Php_version:  n/a  
Cake_version:   |  
+---
Comment (by nicketr):

 I've come to face the same problem mentioned in this RFC. I tried googling
 for a solution but all the solutions I could find was based on core
 modifications. Which I don't prefer. During my search I have seen that
 there are many people who have a problem related to this bug.

 [http://groups.google.com/group/cake-
 php/browse_thread/thread/25123fa35be14676]
 [http://missingfeatures.com/2008/12/15/using-blended-ssl-and-non-ssl-in-
 cakephp-applications/]
 [http://stackoverflow.com/questions/308659/session-not-saving-when-moving-
 from-ssl-to-non-ssl]

 So it would be nice if something could be done about this.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6271#comment:4>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #3819: Console Schema component and MySQL's per-table and per-field options

2009-11-09 Thread CakePHP : The Rapid Development Framework for PHP
#3819: Console Schema component and MySQL's per-table and per-field options
+---
Reporter:  paulster | Owner:  
Type:  Enhancement  |Status:  reopened
Priority:  Medium   | Milestone:  1.3.x.x 
   Component:  Databases|   Version:  
Severity:  Normal   |Resolution:  
Keywords:   |   Php_version:  PHP 5   
Cake_version:  1.2.5|  
+---
Changes (by hexmode):

  * priority:  Very Low => Medium
  * severity:  Trivial => Normal
  * version:  2.0.x.x =>
  * cake_version:  1.2.0.5875 pre-beta => 1.2.5
  * milestone:  2.0.0.x => 1.3.x.x

Comment:

 Updated diff for cake 1.2.5.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/3819#comment:4>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5182: Class property is being filtered from hidden input elements

2009-11-08 Thread CakePHP : The Rapid Development Framework for PHP
#5182: Class property is being filtered from hidden input elements
---+
Reporter:  Lemon   | Owner:  mark_story
Type:  RFC |Status:  reopened  
Priority:  Medium  | Milestone:  1.2.x.x   
   Component:  Helpers |   Version:  RC2   
Severity:  Normal  |Resolution:
Keywords:  form hidden input class helper  |   Php_version:  n/a   
Cake_version:  1.2.0.7296 RC2  |  
---+
Comment (by t73net):

 One other possible solution to handle this is to make the hidden type a
 text input type, and to set the style to display: none;

 Granted this is a hack and isn't a fix to the core itself, but it is a
 workable solution. In this way, you will still be able to apply a class to
 the value you need.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5182#comment:8>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5099: Improve to Form Helper (accept monthNames array as $form->input paramenter)

2009-11-02 Thread CakePHP : The Rapid Development Framework for PHP
#5099: Improve to Form Helper (accept monthNames array as $form->input 
paramenter)
---+
Reporter:  gfa | Owner: 
Type:  Enhancement |Status:  closed 
Priority:  Medium  | Milestone:  1.3.x.x
   Component:  Helpers |   Version: 
Severity:  Normal  |Resolution:  fixed  
Keywords:  form, helper, monthNames|   Php_version:  PHP 5  
Cake_version:  7296 2008-06-27 09:09:03Z gwoo  |  
---+
Changes (by renan.saddam):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 Fixed in
 http://code.cakephp.org/commits/view/e3ccf9c760b2c0986c500c66e063ad5e1b0fbb28

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5099#comment:4>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6428: App::import() in bootstrap.php produces tons of is_dir / readdir calls.

2009-11-02 Thread CakePHP : The Rapid Development Framework for PHP
#6428: App::import() in bootstrap.php produces tons of is_dir / readdir calls.
+---
Reporter:  c_t  | Owner:
Type:  Bug  |Status:  closed
Priority:  Medium   | Milestone:  1.2.x.x   
   Component:  General  |   Version:  1.2 Final 
Severity:  Normal   |Resolution:  worksforme
Keywords:   |   Php_version:  n/a   
Cake_version:  r8171|  
+---
Comment (by jmut):

 {{{
 Hi folks, I guess original author lost interest after he fixed this issue
 for himself.
 I can totally see quite a big difference with this patch.

 #USING cakephp version:  1.2.5

 #Here the difference:
 with patch require_once4  readdir()calls
 no patch app import1834 readdir() calls

 in my case..I simplified things really and difference is 1 second but
 still this is huge in long run.

 I think it has todo with extending include path.
 I have

 ini_set('include_path', ini_get('include_path') . PATH_SEPARATOR .
 dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR . 'vendors');

 in app/config/bootstrap.php   where I store my 3rd party libs and stuff.

 From what I see in the xdebug trace cake is recursively checking all dirs
 from include path and doing this Folder->addPathElement  thingies...for
 cake/tests dirs as well...pretty much all.

 Please let me know if I can assist showing out the issue.
 Cheers.
 }}}

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6428#comment:6>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6300: A difference between FormHelper::hour and FormHelper::minute

2009-11-01 Thread CakePHP : The Rapid Development Framework for PHP
#6300: A difference between FormHelper::hour and FormHelper::minute
+---
Reporter:  miau | Owner:   
Type:  Enhancement  |Status:  closed   
Priority:  Low  | Milestone:  1.2.x.x  
   Component:  Helpers  |   Version:  1.2 Final
Severity:  Trivial  |Resolution:  fixed
Keywords:   |   Php_version:  n/a  
Cake_version:   |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 This has been implemented for 1.3 see
 
http://code.cakephp.org/cakephp/commits/view/f9f181f6cada4368274df9626b7e64750198ed31

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6300#comment:1>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4900: Abitilty to turn off 'hidden' field for checkboxes

2009-10-31 Thread CakePHP : The Rapid Development Framework for PHP
#4900: Abitilty to turn off 'hidden' field for checkboxes
+---
Reporter:  utoxin   | Owner: 
Type:  Enhancement  |Status:  closed 
Priority:  Medium   | Milestone:  1.3.x.x
   Component:  Helpers  |   Version: 
Severity:  Normal   |Resolution:  fixed  
Keywords:   |   Php_version:  n/a
Cake_version:  7125 |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 Checkbox hidden field disabling has been implemented for 1.3, you can use
 the hiddenField option to remove hiddenFields from checkboxes.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4900#comment:4>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6340: Added 'before' and 'after' options to form->submit()

2009-10-31 Thread CakePHP : The Rapid Development Framework for PHP
#6340: Added 'before' and 'after' options to form->submit()
+---
Reporter:  tutec| Owner:   
Type:  Enhancement  |Status:  closed   
Priority:  Medium   | Milestone:  1.2.x.x  
   Component:  Helpers  |   Version:  1.2 Final
Severity:  Normal   |Resolution:  fixed
Keywords:  form, submit, after, before  |   Php_version:  n/a  
Cake_version:  1.2.3.8166   |  
+---
Changes (by mark_story):

  * status:  reopened => closed
  * resolution:  => fixed

Comment:

 This has been implemented in 1.3
 
http://code.cakephp.org/cakephp/commits/view/811b5bbcae8d90639bd31f2021107d9562ecd3cf

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6340#comment:3>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6096: Model::bind() duplicates bindModel() and should be deprecated

2009-10-30 Thread CakePHP : The Rapid Development Framework for PHP
#6096: Model::bind() duplicates bindModel() and should be deprecated
+---
Reporter:  alkemann | Owner: 
Type:  Enhancement  |Status:  closed 
Priority:  Medium   | Milestone:  1.3.x.x
   Component:  Model|   Version: 
Severity:  Minor|Resolution:  fixed  
Keywords:   |   Php_version:  n/a
Cake_version:   |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 This has been implemented in 1.3 for a while now, must have forgotten to
 close the ticket.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6096#comment:1>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5109: Allow form type override in FormHelper::input for fields that end in _id

2009-10-30 Thread CakePHP : The Rapid Development Framework for PHP
#5109: Allow form type override in FormHelper::input for fields that end in _id
---+
Reporter:  j3ffy   | Owner: 
Type:  Enhancement |Status:  closed 
Priority:  Medium  | Milestone:  1.3.x.x
   Component:  Helpers |   Version: 
Severity:  Normal  |Resolution:  fixed  
Keywords:  |   Php_version:  PHP 5  
Cake_version:  1.2.0.7296 RC2  |  
---+
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 Thanks for the patch, its been applied to 1.3
 
http://code.cakephp.org/cakephp/commits/view/04fc2616ac5bf52c78497e978488bd0b35f68400

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5109#comment:2>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6185: Disable hidden field on FormHelper::radio() and FormHelper::input()

2009-10-30 Thread CakePHP : The Rapid Development Framework for PHP
#6185: Disable hidden field on FormHelper::radio() and FormHelper::input()
+---
Reporter:  zaboo| Owner: 
Type:  Enhancement  |Status:  closed 
Priority:  Very Low | Milestone:  1.3.x.x
   Component:  Helpers  |   Version: 
Severity:  Trivial  |Resolution:  fixed  
Keywords:   |   Php_version:  n/a
Cake_version:   |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 This has been implemented for 1.3 see
 
http://code.cakephp.org/cakephp/commits/view/251ac518c9d3542996f52799935b563326b490da

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6185#comment:3>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #2920: [PATCH] Form helper input method error parameter should pass escape boolean to error method

2009-10-30 Thread CakePHP : The Rapid Development Framework for PHP
#2920: [PATCH] Form helper input method error parameter should pass escape 
boolean
to error method
---+
Reporter:  ketan   | Owner: 

Type:  Enhancement |Status: 
 closed 
Priority:  Medium  | Milestone: 
 1.3.x.x
   Component:  Helpers |   Version: 

Severity:  Normal  |Resolution: 
 fixed  
Keywords:  formHelper input error escape validation ketan  |   Php_version: 
 n/a
Cake_version:  |  
---+
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 This is already possible in 1.2, use 'error' => array('escape' => false)

-- 
Ticket URL: <https://trac.cakephp.org/ticket/2920#comment:7>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6042: correct outlining of encoding in the form tag

2009-10-30 Thread CakePHP : The Rapid Development Framework for PHP
#6042: correct outlining of encoding in the form tag
+---
Reporter:  euromark | Owner: 
Type:  Enhancement  |Status:  closed 
Priority:  Low  | Milestone:  1.3.x.x
   Component:  General  |   Version: 
Severity:  Normal   |Resolution:  fixed  
Keywords:   |   Php_version:  n/a
Cake_version:   |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 This has been implemented for 1.3
 
http://code.cakephp.org/cakephp/commits/view/120bd83604f2de9a1950af0072740ea62f9f2748
 Thanks :)

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6042#comment:3>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6404: Model::query() returns array[0] for INSERT, UPDATE, DELETE, DROP, etc statements instead of true or false

2009-10-29 Thread CakePHP : The Rapid Development Framework for PHP
#6404: Model::query() returns array[0] for INSERT, UPDATE, DELETE, DROP, etc
statements instead of true or false
+---
Reporter:  doze | Owner: 
Type:  Enhancement  |Status:  closed 
Priority:  High | Milestone:  1.3.x.x
   Component:  Model|   Version: 
Severity:  Normal   |Resolution:  fixed  
Keywords:  model query  |   Php_version:  PHP 5  
Cake_version:   |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 This has been implemented for 1.3 see
 
http://code.cakephp.org/cakephp/commits/view/8a0d891e0cc2e72fbe6a4129dd5a4e3b14834824.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6404#comment:2>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4556: Redirect erases session

2009-10-28 Thread CakePHP : The Rapid Development Framework for PHP
#4556: Redirect erases session
+---
Reporter:  kleingy  | 
Owner:
Type:  RFC  |
Status:  reopened  
Priority:  Medium   | 
Milestone:  1.3.x.x   
   Component:  Session  |   
Version:
Severity:  Trivial  |
Resolution:
Keywords:  redirect session lost kleingy mustan9 the_undefined  |   
Php_version:  PHP 4 >= 4.3.2
Cake_version:   |  
+---
Comment (by jpletka):

 I just came across this in 1.2.5. Here are the steps I took to reproduce
 it:
 Submit login form on www.domain.com
 Redirect to subdomain.domain.com/controller/action/param1/param2
 In subdomain controller, write variables to the session
 Redirect to /anothercontroller (in subdomain)
 Session is lost.

 I also tried just printing out a link in www.domain.com, then clicking on
 it.  That also caused the session to be lost.  If I copy and paste the
 link into the address bar however, it works.  This was tested in Firefox
 3.5.3

 The only way I was able to get around it is by creating a hidden form in
 the subdomain.domain.com/controller view that just had a script post
 itself back to the controller.  That built a new session that was
 permanent.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4556#comment:22>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #3003: SQLite 3 support

2009-10-26 Thread CakePHP : The Rapid Development Framework for PHP
#3003: SQLite 3 support
+---
Reporter:  sebbarre | Owner:  Any Developer
Type:  Enhancement  |Status:  new  
Priority:  Low  | Milestone:  2.0.0.x  
   Component:  General  |   Version:  2.0.x.x  
Severity:  Trivial  |Resolution:   
Keywords:   |   Php_version:  n/a  
Cake_version:   |  
+---
Comment (by mscdex):

 I kept getting errors about a transaction within a transaction with 3.6,
 so I made a few changes to the transaction methods and now it has been
 working great.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/3003#comment:22>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4626: FormHelper should handle hasMany relationships beyond one level of recursion

2009-10-22 Thread CakePHP : The Rapid Development Framework for PHP
#4626: FormHelper should handle hasMany relationships beyond one level of
recursion
+---
Reporter:  james.m.k...@gmail.com   | 
Owner: 
Type:  Enhancement  |
Status:  closed 
Priority:  Medium   | 
Milestone:  1.3.x.x
   Component:  Helpers  |   
Version: 
Severity:  Normal   |
Resolution:  fixed  
Keywords:  FormHelper hasMany recursion james.m.k...@gmail.com  |   
Php_version:  n/a
Cake_version:  6311 |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 This has been implemented in the 1.3 branch, and will be part of the next
 packaged release.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4626#comment:4>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4499: [PATCH + TEST] Validation should support error messages on multi-record forms

2009-10-22 Thread CakePHP : The Rapid Development Framework for PHP
#4499: [PATCH + TEST] Validation should support error messages on multi-record
forms
---+
Reporter:  jose_zap| Owner:  joelmoss
Type:  Enhancement |Status:  closed  
Priority:  Medium  | Milestone:  1.3.x.x 
   Component:  Helpers |   Version:  
Severity:  Normal  |Resolution:  fixed   
Keywords:  mutiple record form helper  |   Php_version:  n/a 
Cake_version:  |  
---+
Changes (by mark_story):

  * status:  reopened => closed
  * resolution:  => fixed

Comment:

 This has been implemented in the 1.3 branch of code and will be part of
 the next packaged release.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4499#comment:7>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4203: Form helper should generate input attributes for related model fields

2009-10-22 Thread CakePHP : The Rapid Development Framework for PHP
#4203: Form helper should generate input attributes for related model fields
--+
Reporter:  sector7  
  | Owner: 
Type:  Enhancement  
  |Status:  closed 
Priority:  Medium   
  | Milestone:  1.3.x.x
   Component:  Helpers  
  |   Version: 
Severity:  Trivial  
  |Resolution:  fixed  
Keywords:  formHelper generate input attributes related model fields 
sector7  |   Php_version:  n/a
Cake_version:  6311 
  |  
--+
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 This has been implemented in the 1.3 branch of code, and will be part of
 the next packaged release.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4203#comment:4>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #2563: [PATCH][TEST] Form helper should be able to set class parameter to required for fields from multiple models

2009-10-22 Thread CakePHP : The Rapid Development Framework for PHP
#2563: [PATCH][TEST] Form helper should be able to set class parameter to 
required
for fields from multiple models
+---
Reporter:  biesbjerg| Owner:  mark_story
Type:  Enhancement  |Status:  closed
Priority:  Low  | Milestone:  1.3.x.x   
   Component:  Helpers  |   Version:
Severity:  Trivial  |Resolution:  fixed 
Keywords:  formHelper class required biesbjerg  |   Php_version:  PHP 5 
Cake_version:   |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 This has been implemented in the 1.3 branch of code, and will be part of
 the next 1.3 package.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/2563#comment:11>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #3270: Allow errors to be logged in production (DEBUG 0)

2009-10-21 Thread CakePHP : The Rapid Development Framework for PHP
#3270: Allow errors to be logged in production (DEBUG 0)
--+-
Reporter:  maular | Owner:  
nate   
Type:  Enhancement|Status:  
closed 
Priority:  Low| Milestone:  
1.3.x.x
   Component:  Core Libs  |   Version:  
   
Severity:  Minor  |Resolution:  
fixed  
Keywords:  error_log log_errors debugger error_reporting  |   Php_version:  
n/a
Cake_version:  5672   |  
--+-
Comment (by mark_story):

 You can find it at http://code.cakephp.org/ (I've deleted your comment
 because it was spammy)

-- 
Ticket URL: <https://trac.cakephp.org/ticket/3270#comment:11>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4932: mail component no boundary with sandAs=both

2009-10-21 Thread CakePHP : The Rapid Development Framework for PHP
#4932: mail component no boundary with sandAs=both
---+
Reporter:  stefanski   | Owner:  
Type:  Bug |Status:  closed  
Priority:  Medium  | Milestone:  1.2.x.x 
   Component:  Components  |   Version:  RC1 
Severity:  Normal  |Resolution:  needmoreinfo
Keywords:  |   Php_version:  n/a 
Cake_version:  |  
---+
Comment (by bato):

 I can confirm this bug.

 Sending an email in "both" mode dosen't create boundary. When create mail
 headers in {{{__createHeader()}}} method you can see

 {{{
 } elseif ($this->sendAs === 'both') {
 $prefix[] = 'Content-Type: multipart/alternative; boundary="alt-' .
 $this->__boundary . '"';
 }
 }}}

 but {{{$this->__boundary}}} is generated only {{{if
 (!empty($this->attachments))}}}.

 It should be:

 {{{
 if (!empty($this->attachments)) {
 $this->__createBoundary();
 $this->__header[] = 'MIME-Version: 1.0';
 $this->__header[] = 'Content-Type: multipart/mixed; boundary="' .
 $this->__boundary . '"';
 $this->__header[] = 'This part of the E-mail should never be seen.
 If';
 $this->__header[] = 'you are reading this, consider upgrading your
 e-mail';
 $this->__header[] = 'client to a MIME-compatible client.';
 } elseif ($this->sendAs === 'text') {
 $this->__header[] = 'Content-Type: text/plain; charset=' .
 $this->charset;
 } elseif ($this->sendAs === 'html') {
 $this->__header[] = 'Content-Type: text/html; charset=' .
 $this->charset;
 } elseif ($this->sendAs === 'both') {
 $this->__createBoundary();
     $this->__header[] = 'Content-Type: multipart/alternative;
 boundary="alt-' . $this->__boundary . '"';
 }
 }}}

 This fix it.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4932#comment:7>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6525: Deprecate ife(), a(), am(), r(), up(), low(), and e()

2009-10-20 Thread CakePHP : The Rapid Development Framework for PHP
#6525: Deprecate ife(), a(), am(), r(), up(), low(), and e()
---+
Reporter:  michaelc| Owner:   
Type:  Enhancement |Status:  new  
Priority:  Low | Milestone:  1.3.x.x  
   Component:  Core Libs   |   Version:  1.2 Final
Severity:  Minor   |Resolution:   
Keywords:  deprecate ife am a r up low echo e  |   Php_version:  PHP 5
Cake_version:  |  
---+
Comment (by michaelc):

 Progress has been made, here's the current status as of 1.2.5:


 {{{
 cake/basics.php:switch (low($target)) {
 cake/console/libs/tasks/db_config.php:  if
 (low($persistent) == 'n') {
 cake/console/libs/tasks/db_config.php:  if (low($port) ==
 'n') {
 cake/console/libs/tasks/db_config.php:  if (low($prefix)
 == 'n') {
 cake/console/libs/tasks/db_config.php:  if (low($encoding)
 == 'n') {
 cake/console/libs/tasks/db_config.php:  if (low($schema)
 == 'n') {
 cake/console/libs/tasks/db_config.php:  if (low($doneYet
 == 'n')) {
 cake/console/libs/templates/skel/views/layouts/xml/default.ctp:header()); ?>
 cake/console/libs/acl.php:  $id =
 ife(is_numeric($this->args[1]), intval($this->args[1]), $this->args[1]);
 cake/console/libs/acl.php:  $key =
 ife(is_numeric($this->args[1]), $secondary_id, 'alias');
 cake/console/libs/acl.php:  } elseif
 (isset($commands[low($this->args[0])])) {
 cake/console/libs/acl.php:
 $this->out($commands[low($this->args[0])] . "\n\n");
 cake/console/libs/acl.php:  $key =
 (ife(is_numeric($this->args[1]), $secondary_id, 'alias'));
 cake/console/libs/acl.php:  $aro =
 ife(is_numeric($this->args[0]), intval($this->args[0]), $this->args[0]);
 cake/console/libs/acl.php:  $aco =
 ife(is_numeric($this->args[1]), intval($this->args[1]), $this->args[1]);
 cake/console/libs/acl.php:  $vars['secondary_id'] =
 ife(strtolower($class) == 'aro', 'foreign_key', 'object_id');
 cake/console/libs/api.php:  } elseif
 (isset($commands[low($this->args[1])])) {
 cake/console/libs/api.php:
 $this->out($commands[low($this->args[1])] . "\n\n");
 cake/console/libs/console.php:  $class =
 Inflector::camelize(r('.php', '', $model));
 cake/libs/view/helpers/javascript.php:  $val =
 ife($val, 'true', 'false');
 cake/libs/validation.php:   $_this->regex =
 '/^(?:(?:https?|ftps?|file|news|gopher):\/\/)' . ife($strict, '', '?') .
 cake/tests/cases/libs/http_socket.test.php:
 $this->RequestSocket->expect('request', a(array('method' => 'GET', 'uri'
 => 'http://www.google.com/')));
 cake/tests/cases/libs/http_socket.test.php:
 $this->RequestSocket->expect('request', a(array('method' => 'GET', 'uri'
 => 'http://www.google.com/?foo=bar')));
 cake/tests/cases/libs/http_socket.test.php:
 $this->RequestSocket->expect('request', a(array('method' => 'GET', 'uri'
 => 'http://www.google.com/?foo=bar')));
 cake/tests/cases/libs/http_socket.test.php:
 $this->RequestSocket->expect('request', a(array('method' => 'GET', 'uri'
 => 'http://www.google.com/?foo=23&foobar=42')));
 cake/tests/cases/libs/http_socket.test.php:
 $this->RequestSocket->expect('request', a(array('method' => 'GET', 'uri'
 => 'http://www.google.com/', 'auth' => array('user' => 'foo', 'pass' =>
 'bar';
 cake/tests/cases/libs/http_socket.test.php:
 $this->RequestSocket->expect('request', a(array('method' => $method, 'uri'
 => 'http://www.google.com/', 'body' => array(;
 cake/tests/cases/libs/http_socket.test.php:
 $this->RequestSocket->{low($method)}('http://www.google.com/');
 cake/tests/cases/libs/http_socket.test.php:
 $this->RequestSocket->expect('request', a(array('method' => $method, 'uri'
 => 'http://www.google.com/', 'body' => array('Foo' => 

Re: [CakePHP : The Rapid Development Framework for PHP] #6276: afterFind() called twice / documentation does not match behaviour

2009-10-20 Thread CakePHP : The Rapid Development Framework for PHP
#6276: afterFind() called twice / documentation does not match behaviour
--+-
Reporter:  nemosoft   | Owner:   
Type:  RFC|Status:  new  
Priority:  Medium | Milestone:  1.2.x.x  
   Component:  Model  |   Version:  1.2 Final
Severity:  Normal |Resolution:   
Keywords:  afterFind primary data corruption  |   Php_version:  PHP 5
Cake_version:  8120   |  
--+-
Comment (by Pichan):

 Still nothing? I'd at least like an official opinion on this ticket.[[BR]]
 Is it supposed to do that? Is the code wrong or are the docs wrong?[[BR]]
 I have no idea what kind of problems the devs are facing elsewhere since
 this is my first time using trac here but at least from my point of view
 cake acting like this is an annoyance. A minor one but still one.[[BR]]
 At least how I see it, having to identify data only by it's structure
 should be avoided.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6276#comment:5>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #3270: Allow errors to be logged in production (DEBUG 0)

2009-10-20 Thread CakePHP : The Rapid Development Framework for PHP
#3270: Allow errors to be logged in production (DEBUG 0)
--+-
Reporter:  maular | Owner:  
nate   
Type:  Enhancement|Status:  
closed 
Priority:  Low| Milestone:  
1.3.x.x
   Component:  Core Libs  |   Version:  
   
Severity:  Minor  |Resolution:  
fixed  
Keywords:  error_log log_errors debugger error_reporting  |   Php_version:  
n/a
Cake_version:  5672   |  
--+-
Comment (by Bookmarkwiz):

 where can i find the 1.3-misc branch build?


 [http://www.centralairconditioningunits.net/window-air-conditioning-
 units.html Window Air Conditioning Units]

-- 
Ticket URL: <https://trac.cakephp.org/ticket/3270#comment:10>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6280: Add conditional logging, LOG_LEVEL >= LOG_WARNING for production systems

2009-10-19 Thread CakePHP : The Rapid Development Framework for PHP
#6280: Add conditional logging, LOG_LEVEL >= LOG_WARNING for production systems
+---
Reporter:  cuppett  | Owner:   
Type:  Enhancement  |Status:  closed   
Priority:  Medium   | Milestone:  1.2.x.x  
   Component:  General  |   Version:  1.2 Final
Severity:  Major|Resolution:  fixed
Keywords:   |   Php_version:  n/a  
Cake_version:  1.2.2|  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 For 1.3 you are able to set Configure::write('log', $val) Equal to any bit
 mask of error reporting you want captured in the logs. See
 http://code.cakephp.org/wiki/1.3/new-features. If this doesn't address
 what your ticket is about, please reopen with how they differ.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6280#comment:1>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6253: FormHelper->button() and HtmlHelper->tags['button']

2009-10-19 Thread CakePHP : The Rapid Development Framework for PHP
#6253: FormHelper->button() and HtmlHelper->tags['button']
+---
Reporter:  verbal   | Owner:   
Type:  Enhancement  |Status:  closed   
Priority:  Medium   | Milestone:  1.2.x.x  
   Component:  Helpers  |   Version:  1.2 Final
Severity:  Normal   |Resolution:  fixed
Keywords:   |   Php_version:  n/a  
Cake_version:   |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 I agree, implemented for 1.3 see
 http://code.cakephp.org/commits/view/5a0c0e35ca643d09c7cfa03c72f817de80591054

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6253#comment:1>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4645: Pagination should accept a limit of 0 or null

2009-10-16 Thread CakePHP : The Rapid Development Framework for PHP
#4645: Pagination should accept a limit of 0 or null
-+--
Reporter:  Laeffe| Owner: 
Type:  Enhancement   |Status:  new
Priority:  Very Low  | Milestone:  1.3.x.x
   Component:  Controller|   Version: 
Severity:  Trivial   |Resolution: 
Keywords:  pagination limit null Laeffe  |   Php_version:  n/a
Cake_version:  1.2.0.6311|  
-+--
Comment (by macnewbold):

 I attached a patch that works against 1.2.2, and I confirmed that it
 applies against 1.2.4.8284 with a very minor change in line number.


 While I would be happy just to have this patch applied against this simple
 and long-standing bug, the full solution probably involves some changes in
 the paginator helper to deal with limit 0. Right now I get something like
 this out of it:


 < Previous | | Next >


 My patch doesn't deal with limit null, which I don't think is necessary,
 since nothing sends a null limit.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4645#comment:3>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6538: [Test] Wrong serialization of array with XmlHelper::serialize()

2009-10-15 Thread CakePHP : The Rapid Development Framework for PHP
#6538: [Test] Wrong serialization of array with XmlHelper::serialize()
--+-
Reporter:  dho| Owner:   
Type:  Bug|Status:  closed   
Priority:  Medium | Milestone:  1.2.x.x  
   Component:  Helpers|   Version:  1.2 Final
Severity:  Normal |Resolution:  fixed
Keywords: |   Php_version:  PHP 5
Cake_version:  rev. 8263  |  
--+-
Comment (by chihchun):

 The [8264] create another issue, which keeps _name_ tag in the serialized
 xml string.

 {{{
 From 75e55ea45e84f0f32abff180412fcf7b14d10ceb Mon Sep 17 00:00:00 2001
 From: Rex Tsai 
 Date: Thu, 15 Oct 2009 15:39:04 +0800
 Subject: [PATCH] clean _name_ field

 ---
  cake/libs/xml.php |2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)

 diff --git a/cake/libs/xml.php b/cake/libs/xml.php
 index be7e976..daeccfa 100644
 --- a/cake/libs/xml.php
 +++ b/cake/libs/xml.php
 @@ -241,7 +241,7 @@ class XmlNode extends Object {
 }

 $n = $name;
 -   if (!empty($chldObjs['_name_'])) {
 +   if (isset($chldObjs['_name_'])) {
 $n = null;
 unset($chldObjs['_name_']);
 }
 --
 1.5.6.5

 }}}

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6538#comment:4>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6538: [Test] Wrong serialization of array with XmlHelper::serialize()

2009-10-15 Thread CakePHP : The Rapid Development Framework for PHP
#6538: [Test] Wrong serialization of array with XmlHelper::serialize()
--+-
Reporter:  dho| Owner:   
Type:  Bug|Status:  closed   
Priority:  Medium | Milestone:  1.2.x.x  
   Component:  Helpers|   Version:  1.2 Final
Severity:  Normal |Resolution:  fixed
Keywords: |   Php_version:  PHP 5
Cake_version:  rev. 8263  |  
--+-
Comment (by chihchun):

 This issue should be reopened.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6538#comment:3>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4541: [PATCH] Add 'defaults' key to FormHelper::inputs()

2009-10-14 Thread CakePHP : The Rapid Development Framework for PHP
#4541: [PATCH] Add 'defaults' key to FormHelper::inputs()
+---
Reporter:  grigri   | Owner: 
Type:  Enhancement  |Status:  closed 
Priority:  Low  | Milestone:  1.3.x.x
   Component:  Helpers  |   Version: 
Severity:  Trivial  |Resolution:  fixed  
Keywords:  form helper inputs defaults  |   Php_version:  n/a
Cake_version:  6724 |  
+---
Changes (by mark_story):

  * status:  reopened => closed
  * resolution:  => fixed

Comment:

 Considering this fixed/duplicate,  a very similar feature is being
 implemented in 1.3.  It will allow you to set default options when
 creating a form, and have those options persist across all input() calls.
 See http://code.cakephp.org/tickets/view/56 for more information on what
 is planned.

 It doesn't seem useful to have two similar but different behaviors, and
 since default options offers more flexibility and reuse, I'm going with
 that option.  Thanks for helping make Cake better :)

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4541#comment:8>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6144: Console Schema generation should support "comments"

2009-10-14 Thread CakePHP : The Rapid Development Framework for PHP
#6144: Console Schema generation should support "comments"
+---
Reporter:  euromark | Owner:   
Type:  Enhancement  |Status:  closed   
Priority:  High | Milestone:  1.3.x.x  
   Component:  Console  |   Version:  1.2 Final
Severity:  Normal   |Resolution:  fixed
Keywords:   |   Php_version:  n/a  
Cake_version:   |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 Table comments have been implemented in the MySQL and MySQLi dbos at this
 point in time for 1.3, Other dbos will be implemented shortly.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6144#comment:1>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #2551: using $form->input('fieldName'); for date fields creates a label with the wrong "for" attribute

2009-10-14 Thread CakePHP : The Rapid Development Framework for PHP
#2551: using $form->input('fieldName'); for date fields creates a label with the
wrong "for" attribute
+---
Reporter:  scook| Owner:  Any Developer
Type:  Bug  |Status:  closed   
Priority:  Low  | Milestone:  1.2.x.x  
   Component:  Core Libs|   Version:  RC1  
Severity:  Minor|Resolution:  worksforme   
Keywords:  label for|   Php_version:  n/a  
Cake_version:  1.2.0.4853alpha  |  
+---
Comment (by watchout):

 Above mentioned solution is not an actual fix to the problem. Especially
 since $form->year(), $form->month(), $form->dateTime() etc. don't even
 have an $options parameter. Therefor, setting a label is impossible.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/2551#comment:4>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6205: Invalid default value for datetime/timestamp

2009-10-14 Thread CakePHP : The Rapid Development Framework for PHP
#6205: Invalid default value for datetime/timestamp
+---
Reporter:  verbal   | Owner:  mark_story
Type:  Enhancement  |Status:  assigned  
Priority:  Medium   | Milestone:  1.3.x.x   
   Component:  MySQLi   |   Version:
Severity:  Normal   |Resolution:
Keywords:   |   Php_version:  n/a   
Cake_version:  1.2.1.8004   |  
+---
Comment (by Ceeram):

 came across a patch:

 http://www.klenwell.com/press/2009/09/model-testing-cakephp/

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6205#comment:8>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6468: Import Fixtures don't use Model's table for HABTM models

2009-10-14 Thread CakePHP : The Rapid Development Framework for PHP
#6468: Import Fixtures don't use Model's table for HABTM models
+---
Reporter:  arialdomartini   | Owner: 
Type:  Enhancement  |Status:  new
Priority:  Low  | Milestone:  1.3.x.x
   Component:  Test Suite   |   Version: 
Severity:  Normal   |Resolution: 
Keywords:  fixture, test_suite  |   Php_version:  n/a
Cake_version:   |  
+---
Comment (by Ceeram):

 came across a patch:
 http://www.klenwell.com/press/2009/09/model-testing-cakephp/

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6468#comment:2>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4242: Validation message not displayed on formhelper::password

2009-10-13 Thread CakePHP : The Rapid Development Framework for PHP
#4242: Validation message not displayed on formhelper::password
+---
Reporter:  ravi | Owner:
Type:  Bug  |Status:  closed
Priority:  Medium   | Milestone:  1.2.x.x   
   Component:  Helpers  |   Version:  RC1   
Severity:  Normal   |Resolution:  worksforme
Keywords:   |   Php_version:  PHP 5 
Cake_version:   |  
+---
Comment (by phpfaber):

 Actually I came here with the same problem. My password is empty but was
 validated.
 I have an idea why, but not checked it.
 Once form is sent we will get an array with data where password is hashed
 already.
 And of course, this string will not be empty now.
 E.g. I am using md5 for hashing. My password now will be md5(SALT.'')
 So, for password field you should check if it before hashing, or compare
 it with hash_function(SALT) and if equal the password was empty..
 Make sense?

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4242#comment:3>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #3356: [PATCH] Bake should create views with properly formatted i18n strings

2009-10-11 Thread CakePHP : The Rapid Development Framework for PHP
#3356: [PATCH] Bake should create views with properly formatted i18n strings
+---
Reporter:  derelm   | 
Owner: 
Type:  Enhancement  |
Status:  closed 
Priority:  Low  | 
Milestone:  1.3.x.x
   Component:  Console  |   
Version: 
Severity:  Normal   |
Resolution:  fixed  
Keywords:  bake create views i18n derelm sarimarton phpnut  |   
Php_version:  n/a
Cake_version:  5723 |  
+---
Changes (by mark_story):

  * status:  reopened => closed
  * resolution:  => fixed

Comment:

 Fixed in [773502df9bc7892a23b1e6b509377b6c9330f552]

-- 
Ticket URL: <https://trac.cakephp.org/ticket/3356#comment:19>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5814: Add i18n function in ALL strings of scaffold/index.ctp

2009-10-09 Thread CakePHP : The Rapid Development Framework for PHP
#5814: Add i18n function in ALL strings of scaffold/index.ctp
---+
Reporter:  joaojose| Owner: 
Type:  Enhancement |Status:  closed 
Priority:  Medium  | Milestone:  1.3.x.x
   Component:  Scaffold|   Version: 
Severity:  Trivial |Resolution:  fixed  
Keywords:  scaffold, i18n  |   Php_version:  n/a
Cake_version:  |  
---+
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 Fixed in [64a6dce8ccdc1a0e5ba66c542da8218c4692f9f6]

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5814#comment:2>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5493: ClassRegistry::init() doesn't work with components

2009-10-09 Thread CakePHP : The Rapid Development Framework for PHP
#5493: ClassRegistry::init() doesn't work with components
+---
Reporter:  dho  | Owner: 
Type:  Enhancement  |Status:  closed 
Priority:  Medium   | Milestone:  1.3.x.x
   Component:  Config   |   Version: 
Severity:  Normal   |Resolution:  wontfix
Keywords:   |   Php_version:  n/a
Cake_version:  1.2.0.7673   |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => wontfix

Comment:

 ClassRegistry is only for constructing models, It will not build
 Components now or in the future. Thanks for helping make cake better :)

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5493#comment:4>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5071: Router::url should be consistent with prefix params

2009-10-09 Thread CakePHP : The Rapid Development Framework for PHP
#5071: Router::url should be consistent with prefix params
--+-
Reporter:  jonathansnook  | Owner: 
Type:  Enhancement|Status:  closed 
Priority:  Medium | Milestone:  1.3.x.x
   Component:  General|   Version: 
Severity:  Normal |Resolution:  fixed  
Keywords: |   Php_version:  n/a
Cake_version: |  
--+-
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 This has been fixed with the changes to prefix routing in 1.3.  You can
 see http://code.cakephp.org/wiki/1.3/new-features for  a summary on the
 new features.  Or you can view the test case at
 
http://code.cakephp.org/source/branches/1.3/cake/tests/cases/libs/router.test.php#1466

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5071#comment:2>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4877: Console schema generate doesnt work for every models.

2009-10-09 Thread CakePHP : The Rapid Development Framework for PHP
#4877: Console schema generate doesnt work for every models.
+---
Reporter:  titang   | Owner:
Type:  Enhancement  |Status:  closed
Priority:  Medium   | Milestone:  1.3.x.x   
   Component:  Schema   |   Version:
Severity:  Normal   |Resolution:  worksforme
Keywords:   |   Php_version:  n/a   
Cake_version:   |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => worksforme

Comment:

 You can make the models work with {{{Configure::listObjects()}}} but
 bootstrapping additional model paths.  This will enable you to include
 models in subdirectories in your schema files.  Also you can use the -f
 parameter to force using the tables for schema generation instead of the
 models.

 Closing as fixed, as there are a few ways to make this work.  If you think
 the issue isn't resolved please reopen.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4877#comment:5>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #2218: multibyte strings should be supported

2009-10-07 Thread CakePHP : The Rapid Development Framework for PHP
#2218: multibyte strings should be supported
+---
Reporter:  Rik  | Owner:  phpnut
Type:  Enhancement  |Status:  closed
Priority:  High | Milestone:  1.3.x.x   
   Component:  General  |   Version:
Severity:  Major|Resolution:  fixed 
Keywords:   |   Php_version:  PHP 4 >= 4.3.0
Cake_version:   |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 TextHelper::truncate() and Validation methods have been updated to use mb_
 methods where available.  If you know of other places where Multibyte
 support is missing, please either reopen this ticket, or open new tickets
 on http://code.cakephp.org

-- 
Ticket URL: <https://trac.cakephp.org/ticket/2218#comment:9>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #1406: Text Helper should work with Russian characters in PHP 4

2009-10-07 Thread CakePHP : The Rapid Development Framework for PHP
#1406: Text Helper should work with Russian characters in PHP 4
+---
Reporter:  vladiq   | Owner:  phpnut
Type:  Enhancement  |Status:  closed
Priority:  Medium   | Milestone:  1.3.x.x   
   Component:  Helpers  |   Version:
Severity:  Normal   |Resolution:  fixed 
Keywords:  TextHelper UTF8  |   Php_version:  PHP 4 >= 4.3.0
Cake_version:   |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 This has been fixed for 1.3 and will be part of the upcoming 1.3 release.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/1406#comment:5>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6011: scaffolding doesn't support reverse routing

2009-10-06 Thread CakePHP : The Rapid Development Framework for PHP
#6011: scaffolding doesn't support reverse routing
---+
Reporter:  phoque  | Owner:   
Type:  Enhancement |Status:  closed   
Priority:  Medium  | Milestone:  1.2.x.x  
   Component:  Scaffold|   Version:  1.2 Final
Severity:  Normal  |Resolution:  fixed
Keywords:  Scaffold, form  |   Php_version:  PHP 5
Cake_version:  1.2.0.7962  |  
---+
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 Fixed, changes were made to $form->create() which enabled reverse routing
 to work for Scaffold forms.  Will be part of 1.3 when released.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6011#comment:3>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4268: [PATCH] Schema shell should generate based on plugin models

2009-10-04 Thread CakePHP : The Rapid Development Framework for PHP
#4268: [PATCH] Schema shell should generate based on plugin models
--+-
Reporter:  SkieDr | Owner:  mark_story
Type:  Enhancement|Status:  closed
Priority:  Medium | Milestone:  1.3.x.x   
   Component:  Shells |   Version:
Severity:  Normal |Resolution:  fixed 
Keywords:  schema plugin  |   Php_version:  n/a   
Cake_version: |  
--+-
Changes (by mark_story):

  * status:  assigned => closed
  * resolution:  => fixed

Comment:

 Thanks for the patches, this feature has been implemented in the
 1.3-console branch, and will be part of 1.3 once it gets merged in.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4268#comment:5>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5123: Incorrect find('count') results when using "GROUP BY" and Controller::paginate()

2009-10-04 Thread CakePHP : The Rapid Development Framework for PHP
#5123: Incorrect find('count') results when using "GROUP BY" and
Controller::paginate()
--+-
Reporter:  bunyan | Owner:  
Type:  Enhancement|Status:  reopened
Priority:  Low| Milestone:  2.0.0.x 
   Component:  MySQL  |   Version:  Alpha   
Severity:  Normal |Resolution:  
Keywords:  paginate, count, group by  |   Php_version:  PHP 5   
Cake_version:  1.2.0.7296 RC2 |  
--+-
Comment (by mark_story):

 Pedro: How is flexibility not afforded by the current options?  There are
 two different ways you can solve using group and paginate(). I don't
 really see how flexibility is lacking.  Furthermore there is nothing
 stopping you overriding _findCount in your models and implementing a more
 specific behavior for individual models there.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5123#comment:15>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5123: Incorrect find('count') results when using "GROUP BY" and Controller::paginate()

2009-10-03 Thread CakePHP : The Rapid Development Framework for PHP
#5123: Incorrect find('count') results when using "GROUP BY" and
Controller::paginate()
--+-
Reporter:  bunyan | Owner:  
Type:  Enhancement|Status:  reopened
Priority:  Low| Milestone:  2.0.0.x 
   Component:  MySQL  |   Version:  Alpha   
Severity:  Normal |Resolution:  
Keywords:  paginate, count, group by  |   Php_version:  PHP 5   
Cake_version:  1.2.0.7296 RC2 |  
--+-
Comment (by Pedro):

 Thanks a lot for the snippets above. Whilst great with all its extras and
 automatic functionality, CakePhP and its team sometimes disregard that
 which is, from my point of view, the most important aspect of a db
 intermediary: flexibility on all the basic query and model aspects. Let's
 hope 2.0 overcomes this kind of limitations.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5123#comment:14>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5275: nocache tags occurring after $content_for_layout aren't parsed

2009-09-30 Thread CakePHP : The Rapid Development Framework for PHP
#5275: nocache tags occurring after $content_for_layout aren't parsed
---+
Reporter:  Ratso   | Owner:  mark_story
Type:  Bug |Status:  closed
Priority:  Medium  | Milestone:  1.2.x.x   
   Component:  Cache   |   Version:  RC2   
Severity:  Normal  |Resolution:  fixed 
Keywords:  cache, nocache, content_for_layout  |   Php_version:  PHP 5 
Cake_version:  1.2.x.x nightly build 14.08.2008|  
---+
Comment (by nanoman):

 This bug still exists in 1.2.5. It only occurs if there is more than 1
  tag in the view file.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5275#comment:4>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4819: Alphanumeric field validation is not UTF-8 safe

2009-09-28 Thread CakePHP : The Rapid Development Framework for PHP
#4819: Alphanumeric field validation is not UTF-8 safe
+---
Reporter:  Joel | Owner: 
Type:  Enhancement  |Status:  closed 
Priority:  Low  | Milestone:  1.3.x.x
   Component:  Validation   |   Version: 
Severity:  Minor|Resolution:  fixed  
Keywords:   |   Php_version:  n/a
Cake_version:  7089 |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 Fixed, validation currently works with Japanese and Greek characters,
 those are certainly in the realm of utf-8

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4819#comment:2>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6420: $controller->set('title', 'foo') is unnecessary.

2009-09-28 Thread CakePHP : The Rapid Development Framework for PHP
#6420: $controller->set('title', 'foo') is unnecessary.
+---
Reporter:  cakeman  | Owner:   
Type:  Enhancement  |Status:  closed   
Priority:  Medium   | Milestone:  1.2.x.x  
   Component:  General  |   Version:  1.2 Final
Severity:  Normal   |Resolution:  fixed
Keywords:   |   Php_version:  n/a  
Cake_version:   |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 Fixed in [2e1b93293331d477c9510411aaf5766b759cb5d4]
 
http://code.cakephp.org/cakephp/commits/view/2e1b93293331d477c9510411aaf5766b759cb5d4

 Controller::$pageTitle has also been removed.  Simply set
 'title_for_layout' or a custom variable for layout titles.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6420#comment:2>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4818: Replace "title" as magic key for the page title in Controller::set()

2009-09-28 Thread CakePHP : The Rapid Development Framework for PHP
#4818: Replace "title" as magic key for the page title in Controller::set()
+---
Reporter:  dho  | Owner: 
Type:  Enhancement  |Status:  closed 
Priority:  Low  | Milestone:  1.3.x.x
   Component:  Controller   |   Version: 
Severity:  Trivial  |Resolution:  fixed  
Keywords:   |   Php_version:  n/a
Cake_version:  1.2.0.7088   |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 Fixed in [2e1b93293331d477c9510411aaf5766b759cb5d4]
 
http://code.cakephp.org/cakephp/commits/view/2e1b93293331d477c9510411aaf5766b759cb5d4

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4818#comment:2>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4341: Additional configuration methods for session management should be implemented

2009-09-28 Thread CakePHP : The Rapid Development Framework for PHP
#4341: Additional configuration methods for session management should be
implemented
+---
Reporter:  wargoth  | Owner: 
Type:  Enhancement  |Status:  new
Priority:  Very Low | Milestone:  1.3.x.x
   Component:  Session  |   Version: 
Severity:  Trivial  |Resolution: 
Keywords:   |   Php_version:  n/a
Cake_version:   |  
+---
Comment (by mark_story):

 You can use custom session handling which is explained
 http://book.cakephp.org/view/173/Sessions

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4341#comment:3>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5935: Helpers should always be addressed by $this->Helper->func() instead of $helper->func()

2009-09-28 Thread CakePHP : The Rapid Development Framework for PHP
#5935: Helpers should always be addressed by $this->Helper->func() instead of
$helper->func()
+---
Reporter:  euromark | Owner:   
Type:  Enhancement  |Status:  closed   
Priority:  Medium   | Milestone:  1.3.x.x  
   Component:  Helpers  |   Version:  1.2 Final
Severity:  Normal   |Resolution:  fixed
Keywords:   |   Php_version:  n/a  
Cake_version:   |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 Fixed in 1.3 (don't remember the commit)

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5935#comment:1>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4341: Additional configuration methods for session management should be implemented

2009-09-28 Thread CakePHP : The Rapid Development Framework for PHP
#4341: Additional configuration methods for session management should be
implemented
+---
Reporter:  wargoth  | Owner: 
Type:  Enhancement  |Status:  closed 
Priority:  Very Low | Milestone:  1.3.x.x
   Component:  Session  |   Version: 
Severity:  Trivial  |Resolution:  fixed  
Keywords:   |   Php_version:  n/a
Cake_version:   |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4341#comment:4>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4134: [PATCH] session_cache_limiter should be configurable

2009-09-28 Thread CakePHP : The Rapid Development Framework for PHP
#4134: [PATCH] session_cache_limiter should be configurable
+---
Reporter:  shin | Owner: 
Type:  Enhancement  |Status:  closed 
Priority:  Low  | Milestone:  1.3.x.x
   Component:  Session  |   Version: 
Severity:  Normal   |Resolution:  fixed  
Keywords:  session  |   Php_version:  n/a
Cake_version:   |  
+---
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 You can already do this by implementing custom session settings.
 http://book.cakephp.org/view/173/Sessions

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4134#comment:3>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6136: Shell bootstrap (cake.php) overwrites existing debug setting

2009-09-28 Thread CakePHP : The Rapid Development Framework for PHP
#6136: Shell bootstrap (cake.php) overwrites existing debug setting
---+
Reporter:  andyfowler  | Owner:   
Type:  RFC |Status:  new  
Priority:  Medium  | Milestone:  1.2.x.x  
   Component:  Shells  |   Version:  1.2 Final
Severity:  Normal  |Resolution:   
Keywords:  console, shell, cli, debug  |   Php_version:  n/a  
Cake_version:  1.2.1.8004  |  
---+
Comment (by mensler):

 Maybe the debug mode should only be set to 1 if it's greater than 1?

 We send emails only if debug mode is 0 so sending emails from shells is
 impossible.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6136#comment:2>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5775: Debug output should be without html when using it in cli

2009-09-26 Thread CakePHP : The Rapid Development Framework for PHP
#5775: Debug output should be without html when using it in cli
-+--
Reporter:  dho   | Owner: 
Type:  Optimization  |Status:  new
Priority:  Medium| Milestone:  1.3.x.x
   Component:  Console   |   Version: 
Severity:  Normal|Resolution: 
Keywords:|   Php_version:  n/a
Cake_version:  1.2.0.7879|  
-+--
Comment (by olafnorge):

 subscribed

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5775#comment:2>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6136: Shell bootstrap (cake.php) overwrites existing debug setting

2009-09-26 Thread CakePHP : The Rapid Development Framework for PHP
#6136: Shell bootstrap (cake.php) overwrites existing debug setting
---+
Reporter:  andyfowler  | Owner:   
Type:  RFC |Status:  new  
Priority:  Medium  | Milestone:  1.2.x.x  
   Component:  Shells  |   Version:  1.2 Final
Severity:  Normal  |Resolution:   
Keywords:  console, shell, cli, debug  |   Php_version:  n/a  
Cake_version:  1.2.1.8004  |  
---+
Comment (by olafnorge):

 subscribed

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6136#comment:1>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #2191: ACL should allow AROs with multiple, unnested parents (e.g., users in multiple groups)

2009-09-25 Thread CakePHP : The Rapid Development Framework for PHP
#2191: ACL should allow AROs with multiple, unnested parents (e.g., users in
multiple groups)
+---
Reporter:  scragz   | Owner:  Any Developer
Type:  Enhancement  |Status:  closed   
Priority:  Low  | Milestone:   
   Component:  ACL (Access Control List)|   Version:  RC1  
Severity:  Normal   |Resolution:  worksforme   
Keywords:  acl multiple user group aro  |   Php_version:  n/a  
Cake_version:   |  
+---
Comment (by mikebeanz):

 Can we re-open this ticket as a serious documentation failure?  "Examples
 on how to accomplish this will be forthcoming."

 Alternatively, was this ticket confused with NESTED permission inheritance
 in 1.2? (contrast multiple NON-NESTED group parents)

 This article was written some 6 months after this ticket was tagged
 "worksforme", and if a correct solution, a similar example should be
 integrated into the Cake ACL documentation:

* http://mentalramblings.info/posts/view/cakephp-12-acl-auth-habtm

-- 
Ticket URL: <https://trac.cakephp.org/ticket/2191#comment:2>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5872: Validation::ip() should support IPv6 addresses

2009-09-25 Thread CakePHP : The Rapid Development Framework for PHP
#5872: Validation::ip() should support IPv6 addresses
+---
Reporter:  mark_story   | Owner: 
Type:  Enhancement  |Status:  new
Priority:  Medium   | Milestone:  1.3.x.x
   Component:  General  |   Version: 
Severity:  Normal   |Resolution: 
Keywords:   |   Php_version:  n/a
Cake_version:   |  
+---
Comment (by bjornpost):

 Crisp mentions the provided patch doesn’t work on a big number of
 testcases he made. You can read about it, and a better solution over here:
 http://crisp.tweakblogs.net/blog/2031 . The testcases he checked against
 are here: http://therealcrisp.xs4all.nl/blog/article-
 content/ipv6/ipv6.phps (search for $unitTests).

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5872#comment:2>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6522: Missing code + functionality in /libs/controller/controller.php

2009-09-24 Thread CakePHP : The Rapid Development Framework for PHP
#6522: Missing code + functionality in /libs/controller/controller.php
+---
Reporter:  euromark | Owner:   
Type:  Enhancement  |Status:  new  
Priority:  Low  | Milestone:  1.3.x.x  
   Component:  Core Libs|   Version:  1.2 Final
Severity:  Minor|Resolution:   
Keywords:   |   Php_version:  n/a  
Cake_version:   |  
+---
Comment (by juan_basso):

 I'm implemented this in my fork:
 
http://code.cakephp.org/forks/jrbasso/cakephp/commits/view/5c8710dd4765567825b097ec4c2a87f643e01f2c

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6522#comment:1>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #3003: SQLite 3 support

2009-09-24 Thread CakePHP : The Rapid Development Framework for PHP
#3003: SQLite 3 support
+---
Reporter:  sebbarre | Owner:  Any Developer
Type:  Enhancement  |Status:  new  
Priority:  Low  | Milestone:  2.0.0.x  
   Component:  General  |   Version:  2.0.x.x  
Severity:  Trivial  |Resolution:   
Keywords:   |   Php_version:  n/a  
Cake_version:   |  
+---
Comment (by diego.rocha.br):

 I've changed the "dbo_sqlite3.5.php" by ezyang attachment and patched with
 "correct_resultset.dbo_sqlite3.patch" by lumen
 and maked the type char of database be recozigned as string and not as
 text

 sorry of my bad english ;)

-- 
Ticket URL: <https://trac.cakephp.org/ticket/3003#comment:21>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5208: [PATCH][TEST] translation functions should return values by default

2009-09-23 Thread CakePHP : The Rapid Development Framework for PHP
#5208: [PATCH][TEST] translation functions should return values by default
+---
Reporter:  davidpersson | Owner: 
Type:  RFC  |Status:  new
Priority:  Medium   | Milestone:  1.3.x.x
   Component:  i18n/l10n|   Version:  Alpha  
Severity:  Normal   |Resolution: 
Keywords:  translate i18n return value  |   Php_version:  PHP 5  
Cake_version:   |  
+---
Comment (by michaelc):

 +1 - PHP's _() returns the value also, so a good precedent
 ([http://us.php.net/manual/en/function.gettext.php]).

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5208#comment:4>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4311: [PATCH] FormHelper create method onSubmit needs to be lowercase to pass XHTML 1.0 strict validation

2009-09-23 Thread CakePHP : The Rapid Development Framework for PHP
#4311: [PATCH] FormHelper create method onSubmit needs to be lowercase to pass
XHTML 1.0 strict validation
--+
Reporter:  farez
  | Owner: 
Type:  Optimization 
  |Status:  closed 
Priority:  Low  
  | Milestone:  1.2.x.x
   Component:  Helpers  
  |   Version:  RC1
Severity:  Minor
  |Resolution:  fixed  
Keywords:  form helper create onsubmit dom xhtml strict lowercase farez 
sliv  |   Php_version:  n/a
Cake_version:   
  |  
--+
Comment (by carxwol):

 This "bug" is not fixed in 1.2.1.8004, because the if at form.php:225
 never gonna works :
  if (isset($htmlAttributes['onSubmit']) ||
 isset($htmlAttributes['onsubmit'])) {

 $htmlAttributes never had an 'onSubmit' or 'onsubmit' key setted (if you
 look the code above of the create method)

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4311#comment:5>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5418: Containable Behavior does not reset hasMany relationships after find.

2009-09-23 Thread CakePHP : The Rapid Development Framework for PHP
#5418: Containable Behavior does not reset hasMany relationships after find.
---+
Reporter:  james.m.k...@gmail.com  | Owner: 
Type:  Bug |Status:  closed 
Priority:  Medium  | Milestone:  1.2.x.x
   Component:  Behaviors   |   Version:  RC2
Severity:  Normal  |Resolution:  invalid
Keywords:  containable |   Php_version:  PHP 5  
Cake_version:  |  
---+
Comment (by kzhiwei):

 I am experiencing the same issue with CakePHP 1.2.4.8284.

 Adding "reset" as true, and a call to Model->resetBindings() does not
 resolve the issue. To sidestep this issue, the hasMany association has to
 be redefined before the find(); e.g.

 {{{
 Model->hasMany["Assoc"] = array(
"className" => "Assoc",
"foreignKey" => "model_id"
 );
 }}}

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5418#comment:3>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5449: Support named parameters that represent arrays

2009-09-21 Thread CakePHP : The Rapid Development Framework for PHP
#5449: Support named parameters that represent arrays
---+
Reporter:  d...@trafx.net   | Owner: 
Type:  Enhancement |Status:  new
Priority:  Medium  | Milestone: 
   Component:  Routing/Dispatcher  |   Version: 
Severity:  Minor   |Resolution: 
Keywords:  |   Php_version:  n/a
Cake_version:  1.2.0.7296 RC2  |  
---+
Comment (by Pedro):

 Why not pass information about arbitrary array keys as well? I uploaded
 the patch revised to also take that into consideration. The following then
 becomes valid:
 {{{
 http://www.example.com/test/arg1:foo/arr[]:val1/arr[some-
 key]:val2/arr[2]:val3
 }}}
 The next step would be to make this recursive, and thus allow for nested
 array structures. If it turns out easy and I find myself some time, I'll
 post it here.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5449#comment:3>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6420: $controller->set('title', 'foo') is unnecessary.

2009-09-21 Thread CakePHP : The Rapid Development Framework for PHP
#6420: $controller->set('title', 'foo') is unnecessary.
+---
Reporter:  cakeman  | Owner:   
Type:  Enhancement  |Status:  new  
Priority:  Medium   | Milestone:  1.2.x.x  
   Component:  General  |   Version:  1.2 Final
Severity:  Normal   |Resolution:   
Keywords:   |   Php_version:  n/a  
Cake_version:   |  
+---
Comment (by ADmad):

 I have made a patch for this
 
[http://code.cakephp.org/forks/ADmad/cakephp/commits/view/df7d16af591dbab75838d2000136fcdd260308f8]

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6420#comment:1>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4932: mail component no boundary with sandAs=both

2009-09-21 Thread CakePHP : The Rapid Development Framework for PHP
#4932: mail component no boundary with sandAs=both
---+
Reporter:  stefanski   | Owner:  
Type:  Bug |Status:  closed  
Priority:  Medium  | Milestone:  1.2.x.x 
   Component:  Components  |   Version:  RC1 
Severity:  Normal  |Resolution:  needmoreinfo
Keywords:  |   Php_version:  n/a 
Cake_version:  |  
---+
Comment (by nescha):

 Of course, some of the code can and should be moved to:
 {{{
 function __formatMessage($message) {
 if (!empty($this->attachments)) {
 $prefix = array(
 '--' . $this->__boundary,
 'Content-Type: text/plain; charset=' .
 $this->charset,
 'Content-Transfer-Encoding: 7bit',
 ''
 );
 $message = array_merge($prefix, $message);
 } elseif ($this->sendAs === 'both') {
 $prefix = array('--' . $this->__boundary);
 $message = array_merge($prefix, $message);
 }
 return $message;
     }
 }}}

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4932#comment:6>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4932: mail component no boundary with sandAs=both

2009-09-21 Thread CakePHP : The Rapid Development Framework for PHP
#4932: mail component no boundary with sandAs=both
---+
Reporter:  stefanski   | Owner:  
Type:  Bug |Status:  closed  
Priority:  Medium  | Milestone:  1.2.x.x 
   Component:  Components  |   Version:  RC1 
Severity:  Normal  |Resolution:  needmoreinfo
Keywords:  |   Php_version:  n/a 
Cake_version:  |  
---+
Comment (by nescha):

 Branch "both" requires full code like for attachment:
 {{{
 ...
 } elseif ($this->sendAs === 'both') {
 $this->__createBoundary();
 $this->__header[] = 'MIME-Version: 1.0';
 $this->__header[] = 'Content-Type:
 multipart/related; boundary="' . $this->__boundary . '"';
 $this->__header[] = 'This message is in MIME
 format. Since your mail reader does not understand this format, some or
 all of this message may not be legible.';
 $this->__header[] = '--' . $this->__boundary;
 $this->__header[] = 'Content-Type:
 multipart/alternative; boundary="alt-' . $this->__boundary . '"';
 $this->__header[] = '';
 }
 ...
 }}}

 Of course, some of the code can and should be moved to __formatMessage()
 function (i.e. "'--' . $this->__boundary")

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4932#comment:5>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4367: File Searching Kills Performance

2009-09-21 Thread CakePHP : The Rapid Development Framework for PHP
#4367: File Searching Kills Performance
-+--
Reporter:  andyic3   | Owner:  
Type:  Optimization  |Status:  reopened
Priority:  Critical  | Milestone:  1.3.x.x 
   Component:  File System   |   Version:  
Severity:  Critical  |Resolution:  
Keywords:|   Php_version:  n/a 
Cake_version:|  
-+--
Comment (by AbhimanyuG):

 Same problem: https://trac.cakephp.org/ticket/6143

 #6143 can be closed.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4367#comment:7>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4261: [PATCH] ACL Behavior should change parent on update

2009-09-18 Thread CakePHP : The Rapid Development Framework for PHP
#4261: [PATCH] ACL Behavior should change parent on update
-+--
Reporter:  oscar | Owner: 
Type:  Enhancement   |Status:  closed 
Priority:  Medium| Milestone:  1.3.x.x
   Component:  ACL (Access Control List) |   Version: 
Severity:  Trivial   |Resolution:  fixed  
Keywords:  acl behavior parent update oscar  |   Php_version:  n/a
Cake_version:|  
-+--
Changes (by mark_story):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 Fixed in
 http://code.cakephp.org/commits/view/21eb7dc7865ea69d7e9223dcbf44b33e54ed49f8

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4261#comment:7>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6525: Deprecate ife(), a(), am(), r(), up(), low(), and e()

2009-09-18 Thread CakePHP : The Rapid Development Framework for PHP
#6525: Deprecate ife(), a(), am(), r(), up(), low(), and e()
---+
Reporter:  michaelc| Owner:   
Type:  Enhancement |Status:  new  
Priority:  Low | Milestone:  1.3.x.x  
   Component:  Core Libs   |   Version:  1.2 Final
Severity:  Minor   |Resolution:   
Keywords:  deprecate ife am a r up low echo e  |   Php_version:  PHP 5
Cake_version:  |  
---+
Comment (by michaelc):

 [cfcc5f9df12aee831b8b41266a89d60287a6ccd5] fixes a()

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6525#comment:7>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5457: i18n extract runs out of memory when processing large numbers of files

2009-09-18 Thread CakePHP : The Rapid Development Framework for PHP
#5457: i18n extract runs out of memory when processing large numbers of files
---+
Reporter:  TheFenux| Owner: 
Type:  Bug |Status:  closed 
Priority:  Medium  | Milestone:  1.2.x.x
   Component:  i18n/l10n   |   Version:  RC2
Severity:  Normal  |Resolution:  invalid
Keywords:  TheFenux, i18n extract  |   Php_version:  PHP 5  
Cake_version:  |  
---+
Comment (by michaelc):

 This has actually been fixed (for my usecase) in the release of 1.2.3.
 Note that I had the exact same problem otherwise beforehand.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5457#comment:3>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6333: Custom prefix should be appended to the url based on current url by router during url generation

2009-09-17 Thread CakePHP : The Rapid Development Framework for PHP
#6333: Custom prefix should be appended to the url based on current url by 
router
during url generation
---+
Reporter:  ADmad   | Owner:   
Type:  RFC |Status:  new  
Priority:  Medium  | Milestone:  1.2.x.x  
   Component:  Routing/Dispatcher  |   Version:  1.2 Final
Severity:  Normal  |Resolution:   
Keywords:  ADmad router custom prefix  |   Php_version:  n/a  
Cake_version:  |  
---+
Comment (by joaquin_win):

 Check the patch available at
 
http://code.cakephp.org/forks/joaquin_win/cakephp/commits/view/b615e8f6a6c9f3ee1da02e94278a0761f9b4d2cf#highlight

 All test pass.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6333#comment:4>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6194: Error: Database table app_models for model AppModel was not found.

2009-09-16 Thread CakePHP : The Rapid Development Framework for PHP
#6194: Error: Database table app_models for model AppModel was not found.
-+--
Reporter:  yaman666  | Owner:   
Type:  Bug   |Status:  closed   
Priority:  Medium| Milestone:  1.2.x.x  
   Component:  General   |   Version:  1.2 Final
Severity:  Normal|Resolution:  invalid  
Keywords:|   Php_version:  n/a  
Cake_version:|  
-+--
Comment (by quermit):

 The below piece of code '''should fix the problem''' - in my case it
 helped!

 function __construct($id = false, $table = null, $ds = null) {
 parent::__construct($id, $table, $ds);

 // your code
 }

 See this: http://api.cakephp.org/view_source/model/#line-340 (original
 constructor)

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6194#comment:2>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5630: NumberHelper should implement a addFormat method so to minimize view calls to currency

2009-09-11 Thread CakePHP : The Rapid Development Framework for PHP
#5630: NumberHelper should implement a addFormat method so to minimize view 
calls
to currency
-+--
Reporter:  alkemann  | Owner:  mark_story
Type:  Enhancement   |Status:  closed
Priority:  Medium| Milestone:  1.3.x.x   
   Component:  Helpers   |   Version:
Severity:  Minor |Resolution:  fixed 
Keywords:  NumberHelper  |   Php_version:  n/a   
Cake_version:|  
-+--
Changes (by mark_story):

  * status:  assigned => closed
  * resolution:  => fixed

Comment:

 Fixed in [853b4c535c804f48e422fa1f695270a5bcab0898]
 http://code.cakephp.org/commits/view/853b4c535c804f48e422fa1f695270a5bcab0898

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5630#comment:3>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #4261: [PATCH] ACL Behavior should change parent on update

2009-09-11 Thread CakePHP : The Rapid Development Framework for PHP
#4261: [PATCH] ACL Behavior should change parent on update
-+--
Reporter:  oscar | Owner: 
Type:  Enhancement   |Status:  new
Priority:  Medium| Milestone:  1.3.x.x
   Component:  ACL (Access Control List) |   Version: 
Severity:  Trivial   |Resolution: 
Keywords:  acl behavior parent update oscar  |   Php_version:  n/a
Cake_version:|  
-+--
Comment (by Ceeram):

 patch with test:

 http://bin.cakephp.org/saved/50582

-- 
Ticket URL: <https://trac.cakephp.org/ticket/4261#comment:6>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5630: NumberHelper should implement a addFormat method so to minimize view calls to currency

2009-09-11 Thread CakePHP : The Rapid Development Framework for PHP
#5630: NumberHelper should implement a addFormat method so to minimize view 
calls
to currency
-+--
Reporter:  alkemann  | Owner:  mark_story
Type:  Enhancement   |Status:  assigned  
Priority:  Medium| Milestone:  1.3.x.x   
   Component:  Helpers   |   Version:
Severity:  Minor |Resolution:
Keywords:  NumberHelper  |   Php_version:  n/a   
Cake_version:|  
-+--
Changes (by mark_story):

  * owner:  => mark_story
  * status:  new => assigned

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5630#comment:2>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #3270: Allow errors to be logged in production (DEBUG 0)

2009-09-10 Thread CakePHP : The Rapid Development Framework for PHP
#3270: Allow errors to be logged in production (DEBUG 0)
--+-
Reporter:  maular | Owner:  
nate   
Type:  Enhancement|Status:  
closed 
Priority:  Low| Milestone:  
1.3.x.x
   Component:  Core Libs  |   Version:  
   
Severity:  Minor  |Resolution:  
fixed  
Keywords:  error_log log_errors debugger error_reporting  |   Php_version:  
n/a
Cake_version:  5672   |  
--+-
Comment (by mark_story):

 Its not in a tar file, as the commit happened after the 1.3-dev tar was
 made.  You would need to use the git checkout to use it.  Its currently
 only in the 1.3-misc branch.

-- 
Ticket URL: <https://trac.cakephp.org/ticket/3270#comment:9>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5666: Pagination - unable to sort by custom aliased fields

2009-09-10 Thread CakePHP : The Rapid Development Framework for PHP
#5666: Pagination - unable to sort by custom aliased fields
+---
Reporter:  morris082| Owner: 
Type:  Enhancement  |Status:  new
Priority:  Medium   | Milestone:  1.3.x.x
   Component:  Helpers  |   Version: 
Severity:  Normal   |Resolution: 
Keywords:  pagination   |   Php_version:  PHP 5  
Cake_version:   |  
+---
Comment (by celsowm):

 Tested and worked for me!

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5666#comment:2>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #3270: Allow errors to be logged in production (DEBUG 0)

2009-09-10 Thread CakePHP : The Rapid Development Framework for PHP
#3270: Allow errors to be logged in production (DEBUG 0)
--+-
Reporter:  maular | Owner:  
nate   
Type:  Enhancement|Status:  
closed 
Priority:  Low| Milestone:  
1.3.x.x
   Component:  Core Libs  |   Version:  
   
Severity:  Minor  |Resolution:  
fixed  
Keywords:  error_log log_errors debugger error_reporting  |   Php_version:  
n/a
Cake_version:  5672   |  
--+-
Comment (by euromark):

 just downloaded the nightly builds (1.2.5 and 1.3 dev), but this change is
 not in there
 nothing about function handleError()

-- 
Ticket URL: <https://trac.cakephp.org/ticket/3270#comment:8>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #845: Append aggregate function data to the primary model being queried

2009-09-10 Thread CakePHP : The Rapid Development Framework for PHP
#845: Append aggregate function data to the primary model being queried
---+
Reporter:  bparise | Owner:  Any Developer
Type:  Enhancement |Status:  closed   
Priority:  Low | Milestone:  1.2.x.x  
   Component:  Model   |   Version:  RC1  
Severity:  Normal  |Resolution:  worksforme   
Keywords:  model function  |   Php_version:  n/a  
Cake_version:  |  
---+
Comment (by bjeutter):

 This Syntax does NOT work with MySQL! We need another solution!

 Replying to [comment:4 nao]:
 > Simple solution is may be to prefix field by the name of the model you
 want to link to it. Example for "num_trackers" :
 "poker_tracker_num_trackers".
 >
 >
 > {{{
 > $data = $this->PokerTracker->query ("SELECT `user_id`, COUNT(*) as
 `poker_tracker_num_trackers` FROM `poker_trackers` AS `PokerTracker` GROUP
 BY `user_id` HAVING `poker_tracker_num_trackers` > 1"));
 > }}}
 >
 > Result :
 > {{{
 > Array
 > (
 > [0] => Array
 > (
 > [PokerTracker] => Array
 > (
 > [user_id] => 1
 > [num_trackers] => 197
 >     )
 > )
 > ...
 > )
 > }}}
 >

-- 
Ticket URL: <https://trac.cakephp.org/ticket/845#comment:6>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6538: [Test] Wrong serialization of array with XmlHelper::serialize()

2009-09-10 Thread CakePHP : The Rapid Development Framework for PHP
#6538: [Test] Wrong serialization of array with XmlHelper::serialize()
--+-
Reporter:  dho| Owner:   
Type:  Bug|Status:  closed   
Priority:  Medium | Milestone:  1.2.x.x  
   Component:  Helpers|   Version:  1.2 Final
Severity:  Normal |Resolution:  fixed
Keywords: |   Php_version:  PHP 5
Cake_version:  rev. 8263  |  
--+-
Comment (by tobi_one):

 This fixes the XML output of a find all operation, but once you do custom
 array data the XML is broken again. E.g. if you wrap the find all result
 in another array to add some additional data;

 {{{

 [output] => Array
 (
 [Vouchers] => Array
 (
 [0] => Array
 (
 [Voucher] => Array
 (
 [id] => 1
 [title] => something
 )
 )
 [1] => Array
 (
 ...
 )
 )

 [my_pixel_x] => -2950
 [my_pixel_y] => 10123
 [zoom] => 8
 [latitude] => 48.5
 [longitude] => 16.2
 )
 }}}

 then the Vouchers will be wrapped multiple times as before the fix:

 {{{
 
 
 
 
 
 
 
 
  
  
  
 
 -2950
 ...
 

 }}}

 it also does not work with multiple nested arrays e.g.

 {{{
 [Vouchers] => Array
 (
 [0] => Array
 (
 [Voucher] => Array
 (
 [id] => 1
 [title] => something
 [Locations] => Array
 (
 [0] => Array
 (
 [Location] => Array
 (
 [id] => 151
 [lat] => 48.563301
 [lng] => 16.079201
 )

 )

 [1] => Array
 (
 [Location] => Array
 (
 [id] => 134
 [lat] => 48.289799
 [lng] => 16.383801
 )

 )

 [2] => Array
 (
 [Location] => Array
 (
 [id] => 129
 [lat] => 48.297100
 [lng] => 16.419800
 )

 )

 )

 )

 )
)

 }}}

 there again, locations will be wrapped multiple times in the XML:

 {{{
 ...
 
 
 151
 ...
 
 
 
 
 134
     ...
 
 
 ...
 }}}

-- 
Ticket URL: <https://trac.cakephp.org/ticket/6538#comment:2>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #3270: Allow errors to be logged in production (DEBUG 0)

2009-09-09 Thread CakePHP : The Rapid Development Framework for PHP
#3270: Allow errors to be logged in production (DEBUG 0)
--+-
Reporter:  maular | Owner:  
nate   
Type:  Enhancement|Status:  
closed 
Priority:  Low| Milestone:  
1.3.x.x
   Component:  Core Libs  |   Version:  
   
Severity:  Minor  |Resolution:  
fixed  
Keywords:  error_log log_errors debugger error_reporting  |   Php_version:  
n/a
Cake_version:  5672   |  
--+-
Comment (by nate):

 Try this one:

 
http://code.cakephp.org/commits/view/0b9f9afef498e418ceb44cbaba4029b21b8bf04e#highlight

-- 
Ticket URL: <https://trac.cakephp.org/ticket/3270#comment:7>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #3270: Allow errors to be logged in production (DEBUG 0)

2009-09-09 Thread CakePHP : The Rapid Development Framework for PHP
#3270: Allow errors to be logged in production (DEBUG 0)
--+-
Reporter:  maular | Owner:  
nate   
Type:  Enhancement|Status:  
closed 
Priority:  Low| Milestone:  
1.3.x.x
   Component:  Core Libs  |   Version:  
   
Severity:  Minor  |Resolution:  
fixed  
Keywords:  error_log log_errors debugger error_reporting  |   Php_version:  
n/a
Cake_version:  5672   |  
--+-
Comment (by aidan):

 The changeset doesn't seem to have anything to do with this bug, wrong bug
 number perhaps?

-- 
Ticket URL: <https://trac.cakephp.org/ticket/3270#comment:6>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



  1   2   3   4   5   6   7   8   9   10   >