Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm currently trying to migrate from CakePHP 1.3 to 2.0. Do you know an alternative for Configure::getInstance() that works in CakePHP 2.0?

share|improve this question

2 Answers

I don't know why you used Configure::getInstance() in CakePHP 1.3, but all methods of the Configure class in CakePHP 2.0 are static, so you can call them with Configure::<METHOD_NAME>.

share|improve this answer
I'm trying to adapt the code I used from link. Configure::getInstance is used to get paths: $paths = Configure::getInstance(); – Nil Jan 13 '12 at 12:24
I think you can ignore this snippet because in the linked code the $paths variable is never used after the assignment. – dhofstet Jan 13 '12 at 13:06
thanks, now I know why it worked after I changed $paths = Configure::getInstance to $paths = Configure::bootstrap() :D – Nil Jan 13 '12 at 14:23
Did you ever make that work? Configure::bootstrap(); doesn't work for me... – mgPePe Apr 6 '12 at 11:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.