Re: Notification same like facebook with using cakephp

2015-09-15 Thread Domingos Coelho
I think what you need is WebSocket https://w3c.github.io/websockets/ https://www.websocket.org/ Em segunda-feira, 14 de setembro de 2015 04:08:55 UTC-4, HIREN DHOKIYA escreveu: > > Hello sir, > > I am new in cakephp and i want implement the notification same like > facebook in my current

Re: CacheEngine and garbage collection

2015-02-19 Thread Domingos Coelho
In the book is written the following: ...used to do clean up *when resources expire*. FileEngine uses this to *delete files containing expired content*. ( http://book.cakephp.org/2.0/en/core-libraries/caching.html#CacheEngine::gc ) If the content is not expired, the file stay in the cache Em

Re: Cake 2.5 connecting to Oracle

2014-10-20 Thread Domingos Coelho
I have the same problem last week and I found this: http://www.hassanbakar.com/2012/01/09/using-oracle-in-cakephp-2-0/ it needs minor adjustments but it's functional as well. But, if someone has other examples/links will be good Em segunda-feira, 13 de outubro de 2014 02h39min17s UTC-4,

Re: Authentication redirect problem when not logged in

2014-08-07 Thread Domingos Coelho
Inform the login action: public $components = array('Auth' = array( 'loginAction' = array('controller' = 'users', 'action' = 'login' , 'plugin' = 'CoasterCms') )); Em quarta-feira, 6 de agosto de 2014 09h59min16s UTC-4, Sam Clauw escreveu: I reached the authentication part of my CakePHP

Re: Integrating Jasper Reports into Cakephp

2014-05-05 Thread Domingos Coelho
When I work, we make the reports in iReport, put in the Jasper Server and when we call, via socket, the IP from the jasper server and send the parameters to the report. Then we print, in a PDF layout, the content. We not use PHPJavaBridge Em quarta-feira, 30 de abril de 2014 19h15min45s UTC-4,

Re: iOS app development

2014-04-04 Thread Domingos Coelho
I'll try to answer some of your questions *.* *- When I do a check for $this-request-isMobile() the result is false; is that because we are using the simulator?* I don't know, but I think yes. *- What part does the RequestHandler component play in this? I have included it in

Re: Cakephp without Save() function?

2013-12-19 Thread Domingos Coelho
You can create your insert statement and use the method Query(), but why don't you want to use the method Save? Em quinta-feira, 12 de dezembro de 2013 02h18min56s UTC-4, YOONG SINJIE escreveu: May I know , got other way to store the SQL statement, except the Save() function ? I want to do

Re: Production and Development Environment

2013-12-03 Thread Domingos Coelho
I do this to config database for each server, production or development, i put this code in database.php: switch($_SERVER['HTTP_HOST']) { case 'localhost': case 'development': $this-default = $this-development; // $development has the configuration for the development database