Re: sms functionality

2012-04-06 Thread Timothy O'Reilly
I suggest you use a service like http://www.twilio.com/ Regards Tim Sent from my iPhone Cell: +18579280348 Twitter: @timothyjoreilly ——— On Apr 6, 2012, at 9:47 PM, vaibhav pathak wrote: > Please can you tell me how can i implement sms functionality into > site. > > Thanks > > Vaibh

sms functionality

2012-04-06 Thread vaibhav pathak
Please can you tell me how can i implement sms functionality into site. Thanks Vaibhav pathak -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questio

Re: Session unstable?

2012-04-06 Thread Andras Kende
You could add debug_kit to your site so its easier to debug whats happening with your sessions… sessions are good choice for shopping cart no need for cookies or cache... Andras Kende On Apr 6, 2012, at 1:11 PM, heohni wrote: > Hi, > > I just build a kind of small shoppingcart and while tes

Session unstable?

2012-04-06 Thread heohni
Hi, I just build a kind of small shoppingcart and while testing it, I have the feeling that the session works unstable as sometimes I have products saved to my session then I click arround the pages and when I return to my cart it's empty. Is it just me having such issues? Or is this maybe a co

Re: Form Helper usage question

2012-04-06 Thread Mike Griffin
On Thu, Apr 5, 2012 at 23:39, ldardick wrote: > *The view:* > > echo " > Agregar Usuario > "; > >   $this->Form->create('Usuario', array('action'=>'add', 'type'=>'post')); >   $this->Form->input('username', array ('type'=>'text', > 'label'=>'Usuario')); >   $this->Form->input('email', array ('typ

Re: Should I choose CakePHP over another framework for its MPTT / Nested Sets support?

2012-04-06 Thread Ay
If you feel the treebehavior would help you achieve your nested architecture, I'd say go for it. it is easier to implement than zend.I have used both, and I found cakephp relatively easier to use. On Thursday, April 5, 2012 2:14:00 PM UTC-4, Kevin Mitchell wrote: > > Jeremy: > > Thank you, so ve

Re: Vtiger CRM and CakePHP

2012-04-06 Thread Ay
i'd check their API for that On Thursday, April 5, 2012 11:34:50 PM UTC-4, djim wrote: > > Hello, how can I incorporate a CRM system like Vtiger with my CakePhp > app? Perhaps syncing database tables somehow? -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org

Re: $this->Session->read() is returning loding2.gif

2012-04-06 Thread vinit sahasrabudhe
Hello Rajesh, Even I faced a similar problem yesterday and realized that session is not at all reliable if you are dealing with ajax request. It would be better if you keep the value of unique id in some temperory table in database, and flush the database table once the user gets logged off. Reg

Re: self join and HABTM relation

2012-04-06 Thread Brian Bowler
What have you tried so far? On Fri, Apr 6, 2012 at 5:10 AM, Reza Talamkhani wrote: > Hi > I need to create a 'posts' table in db and show related posts to users... > need to self join and HABTM (hasAndBelongsToMany) relation... > please help me > > -- > Our newest site for the community: CakePHP

self join and HABTM relation

2012-04-06 Thread Reza Talamkhani
Hi I need to create a 'posts' table in db and show related posts to users... need to self join and HABTM (hasAndBelongsToMany) relation... please help me -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakep

Vtiger CRM and CakePHP

2012-04-06 Thread djim
Hello, how can I incorporate a CRM system like Vtiger with my CakePhp app? Perhaps syncing database tables somehow? -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their Cak

Form Helper usage question

2012-04-06 Thread ldardick
Hi there, I'm a new user of this Framework and I've been reading the Cookbook the last few days. Today I started my first Cake app and I have a problem regarding the Form Helper usage since it doesn't creates the form in the view. *My model code is:* *My Controller Code (A brief, just the dec

Having trouble with cake installation

2012-04-06 Thread heohni
Hi, I have my cake project running at /root/dev/ The project is there and links are working, but I get this error: Helper class PropertyLinksHelper could not be found. Do I have to set somewhere a path? I have the same project on another server running, but directly inside root and I had no su

Re: run cake with mysql socket

2012-04-06 Thread heohni
public $default = array( 'datasource' => 'Database/Mysql', 'persistent' => false, 'host' => 'localhost', 'unix_socket' => '/tmp/mysql5.sock', 'login' => 'xx', 'password' => 'xx', 'database' => 'xx', 'encoding' => 'utf8' ); -- Our newest site for the community: CakePHP Video Tutorials http:

run cake with mysql socket

2012-04-06 Thread heohni
Hi, on a managed Server I have this infomation: host: localhost:/tmp/mysql5.sock How do I setup my database.php to beeing able to connect to a socket? I am currently only getting error messages :-( -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out

Re: How to stop redirecting to login page

2012-04-06 Thread Mike Griffin
On Thu, Apr 5, 2012 at 22:00, Michael Gaiser wrote: > I forgot to post it, but there is a call to parent::beforeFilter() as well > as $this->Auth->allow('/', 'login', 'logout', 'confirm'); in the > beforeFilter within the User Controller. > > I still cannot figure out why its automatically getting