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 am trying to setup CakeEmail to use my gmail as my isp blocks port 25.

However, I am having a very frustrating problem trying to load the App::uses class.

I have tried placing it in many different locations and I still get the following error.

Fatal error: Call to undefined method App::uses() in C:\www\ash\app\controllers\songrequests_controller.php on line 3 

I am not sure whats going on. Am I not loading something properly, or am I not placing it in the correct place?

<?php

App::uses('CakeEmail', 'Network/Email');
class SongrequestsController extends AppController {

http://book.cakephp.org/2.0/en/core-utility-libraries/email.html

Thanks for any help. Regards,

share|improve this question

1 Answer

up vote 1 down vote accepted

App::uses() is a method introduced in CakePHP 2.x, whereas it seems like you are using CakePHP 1.x, hence the error.

So you either have to upgrade to CakePHP 2.x (which I recommend) or use CakePHP 1.x's approach for sending emails described in http://book.cakephp.org/1.3/en/view/1283/Email.

share|improve this answer
Well that is def it. Thanks for the help. – Masa Ash Aug 19 '12 at 15:32
Just an update. I upgraded to the latest stable version. (That was a blast of fun..) and I have the email function working again. Thanks Again! – Masa Ash Aug 21 '12 at 16:46

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.