Re: Migration Guide 1.2 to 1.3

2009-12-17 Thread euromark
it didnt happen with the aplha release
but with the git rep (head rev.) it now does

On 17 Dez., 07:45, Walther waltherl...@gmail.com wrote:
 I've never experienced that before. Are you using the alpha release,
 or the git repository?

 On Dec 17, 3:58 am, euromark dereurom...@googlemail.com wrote:

  i experienced something else now though
  something quite weird

  my models (corresponding to the current controller) are not loaded and
  inst.
  i wondered what was going on until i found out that i needed to add
  var $uses = array('User');
  in the Users Controller

  then it works again
  i always thought (as in = 1.2) this is automagic and does not have to
  be done manually for most cases
  or is this just a bug

  migrating my current 1.2 project to 1.3 is now on halt again i
  guess :)

  On 17 Dez., 01:16, euromark dereurom...@googlemail.com wrote:

   i just checked out the git 1.3 (not the packaged one!)
   and yes, indeed, it seems to be ok now
   the 404s are still thrown as before

   thx :)

   On 16 Dez., 21:36, mark_story mark.st...@gmail.com wrote:

I think the automatic 404 errors you're referring to were fixed.
There was an issue with missingController and other development errors
displaying when debug = 0.  However that was fixed.  If you are using
an AppError class the methods implemented in that class are not
converted to error404 though.  As its assumed you will do that
yourself.

To my knowledge there is no 1.3beta at this time. If one of you is
from the future and already has it, could you email it to me? Would
save me some work if I had code from the future :)

-Mark

On Dec 16, 7:39 am, euromark dereurom...@googlemail.com wrote:

 and the automatic error (404) handling is now missing
 you need to do that yourself now
 the documentation lacks on how to that
 but i was promised that there will soon be some documentation on that

 until then it is not recommended to update productive websites without
 proper error handling
 on your own
 otherwise the error-messages are way too detailed which can be a
 security risk sometimes

 On 16 Dez., 11:18, Dave davidcr...@gmail.com wrote:

  If you read that link you will see there are definitely some things 
  you will
  need to change.  Javascript and Ajax helper are gone replaced by 
  the Js
  Helper and the HTML Helper.

  On Wed, Dec 16, 2009 at 2:11 AM, Jeremy Burns jeremybu...@me.com 
  wrote:
   Thanks for that. What I was really aiming at is: when a production
   version of 1.3 is released, is it a case of putting my app folder 
   into
   a fresh copy, or is it more complicated than that?

   On Dec 16, 1:15 am, Miles J mileswjohn...@gmail.com wrote:
Most of the 1.3 conventions are in place and migrated. There 
wont be a
big difference between beta and final besides internal code.

On Dec 15, 1:56 am, Jeremy Burns jeremybu...@me.com wrote:

 I have only worked with 1.2.5, so haven't done a migration 
 yet. It
 seems sensible to develop in 1.3 beta. If I migrate current
 development work onto 1.3 beta, what will the migration to 
 1.3 final
 be like? Is it worth it, or should I wait in order to avoid
 duplication of effort?

 On Dec 14, 5:55 pm, Miles J mileswjohn...@gmail.com wrote:

  Here you go.

 http://cakephp.lighthouseapp.com/projects/42648/13-migration-guide

  On Dec 14, 7:18 am, web w...@essence.at wrote:

   Hey,

   does anyone know where i can find the migraton guide?

   Check out the new CakePHP Questions 
   sitehttp://cakeqs.organdhelpothers
   with their CakePHP related questions.

   You received this message because you are subscribed to the 
   Google Groups
   CakePHP group.
   To post to this group, send email to cake-php@googlegroups.com
   To unsubscribe from this group, send email to
   cake-php+unsubscr...@googlegroups.comcake-php%2bunsubscr...@googlegroups.c
omFor more options, visit this group at
  http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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


Re: Migration Guide 1.2 to 1.3

2009-12-17 Thread mark_story
Yeah there was an issue caused yesterday, but its been resolved.  Keep
in mind that 1.3 is still in alpha stages so things can break.  We try
our best to fix things as quickly as possible, but mistakes happen.

-Mark

On Dec 17, 8:41 am, euromark dereurom...@googlemail.com wrote:
 it didnt happen with the aplha release
 but with the git rep (head rev.) it now does

 On 17 Dez., 07:45, Walther waltherl...@gmail.com wrote:



  I've never experienced that before. Are you using the alpha release,
  or the git repository?

  On Dec 17, 3:58 am, euromark dereurom...@googlemail.com wrote:

   i experienced something else now though
   something quite weird

   my models (corresponding to the current controller) are not loaded and
   inst.
   i wondered what was going on until i found out that i needed to add
   var $uses = array('User');
   in the Users Controller

   then it works again
   i always thought (as in = 1.2) this is automagic and does not have to
   be done manually for most cases
   or is this just a bug

   migrating my current 1.2 project to 1.3 is now on halt again i
   guess :)

   On 17 Dez., 01:16, euromark dereurom...@googlemail.com wrote:

i just checked out the git 1.3 (not the packaged one!)
and yes, indeed, it seems to be ok now
the 404s are still thrown as before

thx :)

On 16 Dez., 21:36, mark_story mark.st...@gmail.com wrote:

 I think the automatic 404 errors you're referring to were fixed.
 There was an issue with missingController and other development errors
 displaying when debug = 0.  However that was fixed.  If you are using
 an AppError class the methods implemented in that class are not
 converted to error404 though.  As its assumed you will do that
 yourself.

 To my knowledge there is no 1.3beta at this time. If one of you is
 from the future and already has it, could you email it to me? Would
 save me some work if I had code from the future :)

 -Mark

 On Dec 16, 7:39 am, euromark dereurom...@googlemail.com wrote:

  and the automatic error (404) handling is now missing
  you need to do that yourself now
  the documentation lacks on how to that
  but i was promised that there will soon be some documentation on 
  that

  until then it is not recommended to update productive websites 
  without
  proper error handling
  on your own
  otherwise the error-messages are way too detailed which can be a
  security risk sometimes

  On 16 Dez., 11:18, Dave davidcr...@gmail.com wrote:

   If you read that link you will see there are definitely some 
   things you will
   need to change.  Javascript and Ajax helper are gone replaced by 
   the Js
   Helper and the HTML Helper.

   On Wed, Dec 16, 2009 at 2:11 AM, Jeremy Burns 
   jeremybu...@me.com wrote:
Thanks for that. What I was really aiming at is: when a 
production
version of 1.3 is released, is it a case of putting my app 
folder into
a fresh copy, or is it more complicated than that?

On Dec 16, 1:15 am, Miles J mileswjohn...@gmail.com wrote:
 Most of the 1.3 conventions are in place and migrated. There 
 wont be a
 big difference between beta and final besides internal code.

 On Dec 15, 1:56 am, Jeremy Burns jeremybu...@me.com wrote:

  I have only worked with 1.2.5, so haven't done a migration 
  yet. It
  seems sensible to develop in 1.3 beta. If I migrate current
  development work onto 1.3 beta, what will the migration to 
  1.3 final
  be like? Is it worth it, or should I wait in order to avoid
  duplication of effort?

  On Dec 14, 5:55 pm, Miles J mileswjohn...@gmail.com wrote:

   Here you go.

  http://cakephp.lighthouseapp.com/projects/42648/13-migration-guide

   On Dec 14, 7:18 am, web w...@essence.at wrote:

Hey,

does anyone know where i can find the migraton guide?

Check out the new CakePHP Questions 
sitehttp://cakeqs.organdhelpothers
with their CakePHP related questions.

You received this message because you are subscribed to the 
Google Groups
CakePHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.comcake-php%2bunsubscr...@googlegroups.c
 omFor more options, visit this group at
   http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
CakePHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, 

Re: Migration Guide 1.2 to 1.3

2009-12-16 Thread Dave
If you read that link you will see there are definitely some things you will
need to change.  Javascript and Ajax helper are gone replaced by the Js
Helper and the HTML Helper.

On Wed, Dec 16, 2009 at 2:11 AM, Jeremy Burns jeremybu...@me.com wrote:

 Thanks for that. What I was really aiming at is: when a production
 version of 1.3 is released, is it a case of putting my app folder into
 a fresh copy, or is it more complicated than that?

 On Dec 16, 1:15 am, Miles J mileswjohn...@gmail.com wrote:
  Most of the 1.3 conventions are in place and migrated. There wont be a
  big difference between beta and final besides internal code.
 
  On Dec 15, 1:56 am, Jeremy Burns jeremybu...@me.com wrote:
 
 
 
   I have only worked with 1.2.5, so haven't done a migration yet. It
   seems sensible to develop in 1.3 beta. If I migrate current
   development work onto 1.3 beta, what will the migration to 1.3 final
   be like? Is it worth it, or should I wait in order to avoid
   duplication of effort?
 
   On Dec 14, 5:55 pm, Miles J mileswjohn...@gmail.com wrote:
 
Here you go.
 
   http://cakephp.lighthouseapp.com/projects/42648/13-migration-guide
 
On Dec 14, 7:18 am, web w...@essence.at wrote:
 
 Hey,
 
 does anyone know where i can find the migraton guide?

 Check out the new CakePHP Questions site http://cakeqs.org and help others
 with their CakePHP related questions.

 You received this message because you are subscribed to the Google Groups
 CakePHP group.
 To post to this group, send email to cake-php@googlegroups.com
 To unsubscribe from this group, send email to
 cake-php+unsubscr...@googlegroups.comcake-php%2bunsubscr...@googlegroups.comFor
  more options, visit this group at
 http://groups.google.com/group/cake-php?hl=en


Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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


Re: Migration Guide 1.2 to 1.3

2009-12-16 Thread euromark
and the automatic error (404) handling is now missing
you need to do that yourself now
the documentation lacks on how to that
but i was promised that there will soon be some documentation on that

until then it is not recommended to update productive websites without
proper error handling
on your own
otherwise the error-messages are way too detailed which can be a
security risk sometimes


On 16 Dez., 11:18, Dave davidcr...@gmail.com wrote:
 If you read that link you will see there are definitely some things you will
 need to change.  Javascript and Ajax helper are gone replaced by the Js
 Helper and the HTML Helper.

 On Wed, Dec 16, 2009 at 2:11 AM, Jeremy Burns jeremybu...@me.com wrote:
  Thanks for that. What I was really aiming at is: when a production
  version of 1.3 is released, is it a case of putting my app folder into
  a fresh copy, or is it more complicated than that?

  On Dec 16, 1:15 am, Miles J mileswjohn...@gmail.com wrote:
   Most of the 1.3 conventions are in place and migrated. There wont be a
   big difference between beta and final besides internal code.

   On Dec 15, 1:56 am, Jeremy Burns jeremybu...@me.com wrote:

I have only worked with 1.2.5, so haven't done a migration yet. It
seems sensible to develop in 1.3 beta. If I migrate current
development work onto 1.3 beta, what will the migration to 1.3 final
be like? Is it worth it, or should I wait in order to avoid
duplication of effort?

On Dec 14, 5:55 pm, Miles J mileswjohn...@gmail.com wrote:

 Here you go.

http://cakephp.lighthouseapp.com/projects/42648/13-migration-guide

 On Dec 14, 7:18 am, web w...@essence.at wrote:

  Hey,

  does anyone know where i can find the migraton guide?

  Check out the new CakePHP Questions sitehttp://cakeqs.organd help others
  with their CakePHP related questions.

  You received this message because you are subscribed to the Google Groups
  CakePHP group.
  To post to this group, send email to cake-php@googlegroups.com
  To unsubscribe from this group, send email to
  cake-php+unsubscr...@googlegroups.comcake-php%2bunsubscr...@googlegroups.comFor
   more options, visit this group at
 http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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


Re: Migration Guide 1.2 to 1.3

2009-12-16 Thread Miles J
I also have not ran into this problem, and I even tested for it -_-

On Dec 16, 4:39 am, euromark dereurom...@googlemail.com wrote:
 and the automatic error (404) handling is now missing
 you need to do that yourself now
 the documentation lacks on how to that
 but i was promised that there will soon be some documentation on that

 until then it is not recommended to update productive websites without
 proper error handling
 on your own
 otherwise the error-messages are way too detailed which can be a
 security risk sometimes

 On 16 Dez., 11:18, Dave davidcr...@gmail.com wrote:

  If you read that link you will see there are definitely some things you will
  need to change.  Javascript and Ajax helper are gone replaced by the Js
  Helper and the HTML Helper.

  On Wed, Dec 16, 2009 at 2:11 AM, Jeremy Burns jeremybu...@me.com wrote:
   Thanks for that. What I was really aiming at is: when a production
   version of 1.3 is released, is it a case of putting my app folder into
   a fresh copy, or is it more complicated than that?

   On Dec 16, 1:15 am, Miles J mileswjohn...@gmail.com wrote:
Most of the 1.3 conventions are in place and migrated. There wont be a
big difference between beta and final besides internal code.

On Dec 15, 1:56 am, Jeremy Burns jeremybu...@me.com wrote:

 I have only worked with 1.2.5, so haven't done a migration yet. It
 seems sensible to develop in 1.3 beta. If I migrate current
 development work onto 1.3 beta, what will the migration to 1.3 final
 be like? Is it worth it, or should I wait in order to avoid
 duplication of effort?

 On Dec 14, 5:55 pm, Miles J mileswjohn...@gmail.com wrote:

  Here you go.

 http://cakephp.lighthouseapp.com/projects/42648/13-migration-guide

  On Dec 14, 7:18 am, web w...@essence.at wrote:

   Hey,

   does anyone know where i can find the migraton guide?

   Check out the new CakePHP Questions sitehttp://cakeqs.organdhelp others
   with their CakePHP related questions.

   You received this message because you are subscribed to the Google Groups
   CakePHP group.
   To post to this group, send email to cake-php@googlegroups.com
   To unsubscribe from this group, send email to
   cake-php+unsubscr...@googlegroups.comcake-php%2bunsubscr...@googlegroups.comFor
more options, visit this group at
  http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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


Re: Migration Guide 1.2 to 1.3

2009-12-16 Thread mark_story
I think the automatic 404 errors you're referring to were fixed.
There was an issue with missingController and other development errors
displaying when debug = 0.  However that was fixed.  If you are using
an AppError class the methods implemented in that class are not
converted to error404 though.  As its assumed you will do that
yourself.

To my knowledge there is no 1.3beta at this time. If one of you is
from the future and already has it, could you email it to me? Would
save me some work if I had code from the future :)

-Mark

On Dec 16, 7:39 am, euromark dereurom...@googlemail.com wrote:
 and the automatic error (404) handling is now missing
 you need to do that yourself now
 the documentation lacks on how to that
 but i was promised that there will soon be some documentation on that

 until then it is not recommended to update productive websites without
 proper error handling
 on your own
 otherwise the error-messages are way too detailed which can be a
 security risk sometimes

 On 16 Dez., 11:18, Dave davidcr...@gmail.com wrote:



  If you read that link you will see there are definitely some things you will
  need to change.  Javascript and Ajax helper are gone replaced by the Js
  Helper and the HTML Helper.

  On Wed, Dec 16, 2009 at 2:11 AM, Jeremy Burns jeremybu...@me.com wrote:
   Thanks for that. What I was really aiming at is: when a production
   version of 1.3 is released, is it a case of putting my app folder into
   a fresh copy, or is it more complicated than that?

   On Dec 16, 1:15 am, Miles J mileswjohn...@gmail.com wrote:
Most of the 1.3 conventions are in place and migrated. There wont be a
big difference between beta and final besides internal code.

On Dec 15, 1:56 am, Jeremy Burns jeremybu...@me.com wrote:

 I have only worked with 1.2.5, so haven't done a migration yet. It
 seems sensible to develop in 1.3 beta. If I migrate current
 development work onto 1.3 beta, what will the migration to 1.3 final
 be like? Is it worth it, or should I wait in order to avoid
 duplication of effort?

 On Dec 14, 5:55 pm, Miles J mileswjohn...@gmail.com wrote:

  Here you go.

 http://cakephp.lighthouseapp.com/projects/42648/13-migration-guide

  On Dec 14, 7:18 am, web w...@essence.at wrote:

   Hey,

   does anyone know where i can find the migraton guide?

   Check out the new CakePHP Questions sitehttp://cakeqs.organdhelp others
   with their CakePHP related questions.

   You received this message because you are subscribed to the Google Groups
   CakePHP group.
   To post to this group, send email to cake-php@googlegroups.com
   To unsubscribe from this group, send email to
   cake-php+unsubscr...@googlegroups.comcake-php%2bunsubscr...@googlegroups.c
omFor more options, visit this group at
  http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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


Re: Migration Guide 1.2 to 1.3

2009-12-16 Thread euromark
i just checked out the git 1.3 (not the packaged one!)
and yes, indeed, it seems to be ok now
the 404s are still thrown as before

thx :)


On 16 Dez., 21:36, mark_story mark.st...@gmail.com wrote:
 I think the automatic 404 errors you're referring to were fixed.
 There was an issue with missingController and other development errors
 displaying when debug = 0.  However that was fixed.  If you are using
 an AppError class the methods implemented in that class are not
 converted to error404 though.  As its assumed you will do that
 yourself.

 To my knowledge there is no 1.3beta at this time. If one of you is
 from the future and already has it, could you email it to me? Would
 save me some work if I had code from the future :)

 -Mark

 On Dec 16, 7:39 am, euromark dereurom...@googlemail.com wrote:

  and the automatic error (404) handling is now missing
  you need to do that yourself now
  the documentation lacks on how to that
  but i was promised that there will soon be some documentation on that

  until then it is not recommended to update productive websites without
  proper error handling
  on your own
  otherwise the error-messages are way too detailed which can be a
  security risk sometimes

  On 16 Dez., 11:18, Dave davidcr...@gmail.com wrote:

   If you read that link you will see there are definitely some things you 
   will
   need to change.  Javascript and Ajax helper are gone replaced by the Js
   Helper and the HTML Helper.

   On Wed, Dec 16, 2009 at 2:11 AM, Jeremy Burns jeremybu...@me.com wrote:
Thanks for that. What I was really aiming at is: when a production
version of 1.3 is released, is it a case of putting my app folder into
a fresh copy, or is it more complicated than that?

On Dec 16, 1:15 am, Miles J mileswjohn...@gmail.com wrote:
 Most of the 1.3 conventions are in place and migrated. There wont be a
 big difference between beta and final besides internal code.

 On Dec 15, 1:56 am, Jeremy Burns jeremybu...@me.com wrote:

  I have only worked with 1.2.5, so haven't done a migration yet. It
  seems sensible to develop in 1.3 beta. If I migrate current
  development work onto 1.3 beta, what will the migration to 1.3 final
  be like? Is it worth it, or should I wait in order to avoid
  duplication of effort?

  On Dec 14, 5:55 pm, Miles J mileswjohn...@gmail.com wrote:

   Here you go.

  http://cakephp.lighthouseapp.com/projects/42648/13-migration-guide

   On Dec 14, 7:18 am, web w...@essence.at wrote:

Hey,

does anyone know where i can find the migraton guide?

Check out the new CakePHP Questions sitehttp://cakeqs.organdhelpothers
with their CakePHP related questions.

You received this message because you are subscribed to the Google 
Groups
CakePHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.comcake-php%2bunsubscr...@googlegroups.c
 omFor more options, visit this group at
   http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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


Re: Migration Guide 1.2 to 1.3

2009-12-16 Thread euromark
i experienced something else now though
something quite weird

my models (corresponding to the current controller) are not loaded and
inst.
i wondered what was going on until i found out that i needed to add
var $uses = array('User');
in the Users Controller

then it works again
i always thought (as in = 1.2) this is automagic and does not have to
be done manually for most cases
or is this just a bug

migrating my current 1.2 project to 1.3 is now on halt again i
guess :)



On 17 Dez., 01:16, euromark dereurom...@googlemail.com wrote:
 i just checked out the git 1.3 (not the packaged one!)
 and yes, indeed, it seems to be ok now
 the 404s are still thrown as before

 thx :)

 On 16 Dez., 21:36, mark_story mark.st...@gmail.com wrote:

  I think the automatic 404 errors you're referring to were fixed.
  There was an issue with missingController and other development errors
  displaying when debug = 0.  However that was fixed.  If you are using
  an AppError class the methods implemented in that class are not
  converted to error404 though.  As its assumed you will do that
  yourself.

  To my knowledge there is no 1.3beta at this time. If one of you is
  from the future and already has it, could you email it to me? Would
  save me some work if I had code from the future :)

  -Mark

  On Dec 16, 7:39 am, euromark dereurom...@googlemail.com wrote:

   and the automatic error (404) handling is now missing
   you need to do that yourself now
   the documentation lacks on how to that
   but i was promised that there will soon be some documentation on that

   until then it is not recommended to update productive websites without
   proper error handling
   on your own
   otherwise the error-messages are way too detailed which can be a
   security risk sometimes

   On 16 Dez., 11:18, Dave davidcr...@gmail.com wrote:

If you read that link you will see there are definitely some things you 
will
need to change.  Javascript and Ajax helper are gone replaced by the Js
Helper and the HTML Helper.

On Wed, Dec 16, 2009 at 2:11 AM, Jeremy Burns jeremybu...@me.com 
wrote:
 Thanks for that. What I was really aiming at is: when a production
 version of 1.3 is released, is it a case of putting my app folder into
 a fresh copy, or is it more complicated than that?

 On Dec 16, 1:15 am, Miles J mileswjohn...@gmail.com wrote:
  Most of the 1.3 conventions are in place and migrated. There wont 
  be a
  big difference between beta and final besides internal code.

  On Dec 15, 1:56 am, Jeremy Burns jeremybu...@me.com wrote:

   I have only worked with 1.2.5, so haven't done a migration yet. It
   seems sensible to develop in 1.3 beta. If I migrate current
   development work onto 1.3 beta, what will the migration to 1.3 
   final
   be like? Is it worth it, or should I wait in order to avoid
   duplication of effort?

   On Dec 14, 5:55 pm, Miles J mileswjohn...@gmail.com wrote:

Here you go.

   http://cakephp.lighthouseapp.com/projects/42648/13-migration-guide

On Dec 14, 7:18 am, web w...@essence.at wrote:

 Hey,

 does anyone know where i can find the migraton guide?

 Check out the new CakePHP Questions sitehttp://cakeqs.organdhelpothers
 with their CakePHP related questions.

 You received this message because you are subscribed to the Google 
 Groups
 CakePHP group.
 To post to this group, send email to cake-php@googlegroups.com
 To unsubscribe from this group, send email to
 cake-php+unsubscr...@googlegroups.comcake-php%2bunsubscr...@googlegroups.c
  omFor more options, visit this group at
http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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


Re: Migration Guide 1.2 to 1.3

2009-12-16 Thread Walther
I've never experienced that before. Are you using the alpha release,
or the git repository?

On Dec 17, 3:58 am, euromark dereurom...@googlemail.com wrote:
 i experienced something else now though
 something quite weird

 my models (corresponding to the current controller) are not loaded and
 inst.
 i wondered what was going on until i found out that i needed to add
 var $uses = array('User');
 in the Users Controller

 then it works again
 i always thought (as in = 1.2) this is automagic and does not have to
 be done manually for most cases
 or is this just a bug

 migrating my current 1.2 project to 1.3 is now on halt again i
 guess :)

 On 17 Dez., 01:16, euromark dereurom...@googlemail.com wrote:

  i just checked out the git 1.3 (not the packaged one!)
  and yes, indeed, it seems to be ok now
  the 404s are still thrown as before

  thx :)

  On 16 Dez., 21:36, mark_story mark.st...@gmail.com wrote:

   I think the automatic 404 errors you're referring to were fixed.
   There was an issue with missingController and other development errors
   displaying when debug = 0.  However that was fixed.  If you are using
   an AppError class the methods implemented in that class are not
   converted to error404 though.  As its assumed you will do that
   yourself.

   To my knowledge there is no 1.3beta at this time. If one of you is
   from the future and already has it, could you email it to me? Would
   save me some work if I had code from the future :)

   -Mark

   On Dec 16, 7:39 am, euromark dereurom...@googlemail.com wrote:

and the automatic error (404) handling is now missing
you need to do that yourself now
the documentation lacks on how to that
but i was promised that there will soon be some documentation on that

until then it is not recommended to update productive websites without
proper error handling
on your own
otherwise the error-messages are way too detailed which can be a
security risk sometimes

On 16 Dez., 11:18, Dave davidcr...@gmail.com wrote:

 If you read that link you will see there are definitely some things 
 you will
 need to change.  Javascript and Ajax helper are gone replaced by the 
 Js
 Helper and the HTML Helper.

 On Wed, Dec 16, 2009 at 2:11 AM, Jeremy Burns jeremybu...@me.com 
 wrote:
  Thanks for that. What I was really aiming at is: when a production
  version of 1.3 is released, is it a case of putting my app folder 
  into
  a fresh copy, or is it more complicated than that?

  On Dec 16, 1:15 am, Miles J mileswjohn...@gmail.com wrote:
   Most of the 1.3 conventions are in place and migrated. There wont 
   be a
   big difference between beta and final besides internal code.

   On Dec 15, 1:56 am, Jeremy Burns jeremybu...@me.com wrote:

I have only worked with 1.2.5, so haven't done a migration yet. 
It
seems sensible to develop in 1.3 beta. If I migrate current
development work onto 1.3 beta, what will the migration to 1.3 
final
be like? Is it worth it, or should I wait in order to avoid
duplication of effort?

On Dec 14, 5:55 pm, Miles J mileswjohn...@gmail.com wrote:

 Here you go.

http://cakephp.lighthouseapp.com/projects/42648/13-migration-guide

 On Dec 14, 7:18 am, web w...@essence.at wrote:

  Hey,

  does anyone know where i can find the migraton guide?

  Check out the new CakePHP Questions 
  sitehttp://cakeqs.organdhelpothers
  with their CakePHP related questions.

  You received this message because you are subscribed to the Google 
  Groups
  CakePHP group.
  To post to this group, send email to cake-php@googlegroups.com
  To unsubscribe from this group, send email to
  cake-php+unsubscr...@googlegroups.comcake-php%2bunsubscr...@googlegroups.c
   omFor more options, visit this group at
 http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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


Re: Migration Guide 1.2 to 1.3

2009-12-15 Thread Jeremy Burns
I have only worked with 1.2.5, so haven't done a migration yet. It
seems sensible to develop in 1.3 beta. If I migrate current
development work onto 1.3 beta, what will the migration to 1.3 final
be like? Is it worth it, or should I wait in order to avoid
duplication of effort?

On Dec 14, 5:55 pm, Miles J mileswjohn...@gmail.com wrote:
 Here you go.

 http://cakephp.lighthouseapp.com/projects/42648/13-migration-guide

 On Dec 14, 7:18 am, web w...@essence.at wrote:



  Hey,

  does anyone know where i can find the migraton guide?

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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


Re: Migration Guide 1.2 to 1.3

2009-12-15 Thread Miles J
Most of the 1.3 conventions are in place and migrated. There wont be a
big difference between beta and final besides internal code.

On Dec 15, 1:56 am, Jeremy Burns jeremybu...@me.com wrote:
 I have only worked with 1.2.5, so haven't done a migration yet. It
 seems sensible to develop in 1.3 beta. If I migrate current
 development work onto 1.3 beta, what will the migration to 1.3 final
 be like? Is it worth it, or should I wait in order to avoid
 duplication of effort?

 On Dec 14, 5:55 pm, Miles J mileswjohn...@gmail.com wrote:

  Here you go.

 http://cakephp.lighthouseapp.com/projects/42648/13-migration-guide

  On Dec 14, 7:18 am, web w...@essence.at wrote:

   Hey,

   does anyone know where i can find the migraton guide?

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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


Re: Migration Guide 1.2 to 1.3

2009-12-15 Thread Jeremy Burns
Thanks for that. What I was really aiming at is: when a production
version of 1.3 is released, is it a case of putting my app folder into
a fresh copy, or is it more complicated than that?

On Dec 16, 1:15 am, Miles J mileswjohn...@gmail.com wrote:
 Most of the 1.3 conventions are in place and migrated. There wont be a
 big difference between beta and final besides internal code.

 On Dec 15, 1:56 am, Jeremy Burns jeremybu...@me.com wrote:



  I have only worked with 1.2.5, so haven't done a migration yet. It
  seems sensible to develop in 1.3 beta. If I migrate current
  development work onto 1.3 beta, what will the migration to 1.3 final
  be like? Is it worth it, or should I wait in order to avoid
  duplication of effort?

  On Dec 14, 5:55 pm, Miles J mileswjohn...@gmail.com wrote:

   Here you go.

  http://cakephp.lighthouseapp.com/projects/42648/13-migration-guide

   On Dec 14, 7:18 am, web w...@essence.at wrote:

Hey,

does anyone know where i can find the migraton guide?

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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


Migration Guide 1.2 to 1.3

2009-12-14 Thread web
Hey,

does anyone know where i can find the migraton guide?

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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


Re: Migration Guide 1.2 to 1.3

2009-12-14 Thread Miles J
Here you go.

http://cakephp.lighthouseapp.com/projects/42648/13-migration-guide

On Dec 14, 7:18 am, web w...@essence.at wrote:
 Hey,

 does anyone know where i can find the migraton guide?

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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


migration to 1.2

2008-09-29 Thread mcphisto

Hi I was migrating an appilcation on mine to 1.2. Everything works
fine, except for the select fields in forms. I would like to know hoew
to remove labels from the list. Another problem (i'll try to explain
as better as I can) is with data. I've a table with 3 fields, name,
last_name, ID. In my table there are only 2 records and they are: ID:
1, Name: Steven, Last_name: Warren. The other is ID:2, Name: Max,
Last_name: Test. Well in my select I've 6 selectable data. I have this
choices: 1, Steven, Worren, 2, Max, Test.

Here's my code (add.ctp):

   td?php echo $form-label('Practice/lawyer_id',
'Avvocato');?/td
td?php echo $form-select('Practice/lawyer_id', $lawyers, $form-
value('Practice/lawyer_id'), array (), array(), true);?/td
td?php echo $form-error('Practice/lawyer_id', 'Seleziona un
avvocato.') ?/td/tr

(and my controller)

$this-set('lawyers', $this-Practice-Lawyer-
findAll(null,'last_name','last_name ASC',null,null,-1));
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
CakePHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---