Re: Android Tab IDE for CakePHP

2012-04-18 Thread Daniel Baird
Write a cron job that runs on your server, and every five minutes (or one minute, or whatever) updates your source files from github. Then, any way you can update github will end up deploying to your test server a few minutes later. Or you could use Dropbox to do the syncing -- there are probably

Re: Android Tab IDE for CakePHP

2012-04-18 Thread Justin Edwards
I've seen some experimental stuff but nothing solid. My solution has been using a netbook/ultrabook instead of tablet. On Thu, Apr 19, 2012 at 12:48 AM, DerekGardiner wrote: > I'm looking for an android IDE tab application that will allow me to > achieve the following: > > 1. Edit cakephp fil

Android Tab IDE for CakePHP

2012-04-18 Thread DerekGardiner
I'm looking for an android IDE tab application that will allow me to achieve the following: 1. Edit cakephp files via my tab 2. Deploy them to some online server to test the changes I've just made Has anyone managed to achieve something like this efficiently? The other alternative is to make cha

Render view into a variable Cake 2.0

2012-04-18 Thread Adexe Rivera
Hi, I'm trying get a view into a variable, with negative result. Someone knows how to do, please Thanks -- 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 rela

Re: Best IDE for CakePHP 2.1

2012-04-18 Thread Greg Skerman
Netbeans for me. There are a few tricks required to get the code completion to work (especially in views) but nothing drastic. Has nice integration with subversion, unit testing, jira, etc. Code templates and code snippets are also nice. Free is a major bonus too. Have tried others (eclipse, komo

Re: Best IDE for CakePHP 2.1

2012-04-18 Thread kani
Netbeans faster than eclipse.You can download only php edition. On Wednesday, April 18, 2012 12:25:40 AM UTC+8, Dunhamzzz wrote: > > Slower than Eclipse?! Mother of god... > -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions

Re: Minimum required PHP version for Cake 2.1.1

2012-04-18 Thread lowpass
I should have been kinder and mentioned that i've done the same thing once or twice before with version numbers. On Wed, Apr 18, 2012 at 10:04 PM, bmcelhany wrote: > Good lord...I'm an idiot. Yeah, I was thinking 5.2.1.7 even though I typed > it out correctly half a dozen times in my post. > > I'

Re: Minimum required PHP version for Cake 2.1.1

2012-04-18 Thread bmcelhany
Good lord...I'm an idiot. Yeah, I was thinking 5.2.1.7 even though I typed it out correctly half a dozen times in my post. I'm all about attention to detail... On Wednesday, April 18, 2012 6:43:19 PM UTC-7, cricket wrote: > > 17 comes after 8. Were you reading that as 5.2.1.7? -- Our newest si

Re: Minimum required PHP version for Cake 2.1.1

2012-04-18 Thread lowpass
17 comes after 8. Were you reading that as 5.2.1.7? On Wed, Apr 18, 2012 at 7:43 PM, bmcelhany wrote: > Hello, > > I will be starting a new project on a server that has PHP 5.2.17 installed > and I'd like to use CakePHP 2.1.1 (I've worked with version 1.2 in the > past). I know that it says that

Minimum required PHP version for Cake 2.1.1

2012-04-18 Thread bmcelhany
Hello, I will be starting a new project on a server that has PHP 5.2.17 installed and I'd like to use CakePHP 2.1.1 (I've worked with version 1.2 in the past). I know that it says that the minimum required version of PHP is 5.2.8 but, just for fun, I uploaded an "empty" CakePHP 2 project to the

Re: Auth.redirect - still problems with external links

2012-04-18 Thread Panos Gkikakis
Just saw your post. This is the expected behavior when you set Security to medium or high Set Security to low in core.php and the session will not be cleared when referrer is set On Wednesday, February 15, 2012 4:48:10 PM UTC+2, René Weber wrote: > > Hi there, > > after searching and readin

Re: Fix for error Fatal error: Class 'Debugger' not found in ... for php 5.4

2012-04-18 Thread rvcT
u r right , thanks for ur correction , i am still beginner changing error type to E_ALL & ~E_DEPRECATED & ~E_STRICT will also disable the error On Wednesday, April 18, 2012 2:57:10 PM UTC-7, euromark wrote: > > as far as I know this is a "strict" issue and not related to a specific > php versi

Help with saveAll

2012-04-18 Thread Steven Scaffidi
Ok I have 3 models: Users, Businesses, and Measures. These models are related as follows: Users hasMany Measures Users hasMany Businesses Businesses hasMany Measures Measures belongsTo Users, Businesses Businesses belongsTo Users So basically I have a user registration form and I need some measur

Dreamweaver and CakePHP

2012-04-18 Thread Briceno Miguel
Hi. I am trying to install a mirror of a script that is already running in a shared web hosting into my local windows computer. I already instaled wamp (PHP, Apache,mysql) in my computer, downloaded everyhthing and I intend to use Dreamweaver CS5.5 as my web editor. Do you guys know if Dreamweve

searching cakephp freelancer in austria

2012-04-18 Thread cwsTrummer
hello i am searching for a cakephp freelancer but didnt find a job website or something similar. withcake.com is down i think. do somebody knows a good place to find freelancers with cakephp knowledge? would be great to find someone in austria or germany... -- Our newest site for the community:

Re: Fix for error Fatal error: Class 'Debugger' not found in ... for php 5.4

2012-04-18 Thread euromark
as far as I know this is a "strict" issue and not related to a specific php version if you disable strict mode in your core.php you shouldnt get any such notices regardless if you are using 5.4 or 5.3 correct me if I'm wrong but yes, some code examples might be outdated the documentation can be

Re: Error Pages

2012-04-18 Thread creat1v1ty
That makes sense now that you say it. Does anyone know how to use the AppController with the error/exception handling? On Wednesday, April 18, 2012 2:20:30 PM UTC-5, creat1v1ty wrote: > > I am using version 2.1... > > In my app I have some logic taking place in my AppController's > beforeFilte

Re: Error Pages

2012-04-18 Thread lowpass
Set debug to 1 and then click on the "Notice" link to see the stacktrace. You'll see that AppController is not even used. An internal redirect happens and ErrorHandler then passes the rendering to ExceptionRenderer, which in turn invokes Controller directly. I can't remember what the workaround is

Error Pages

2012-04-18 Thread creat1v1ty
I am using version 2.1... In my app I have some logic taking place in my AppController's beforeFilter() function where I'm setting a few variables that get used in my default layout, and subsequently on all pages of the site. When testing my error pages in production mode (debug=0), I noticed t

BUG Translate Behaviour and Related Models

2012-04-18 Thread Fábio
Its hard to understand why this conflit is still present in cake 2.1, as it has been noticed by many people since version 1.2. I made tons of searches in google and coudnt find any useful awnser. I was testing it in cake 2.0, but when i figured out that it was a cake problem i tryed to update to

Who designs the CakePHP web site?

2012-04-18 Thread Jerry
CakePHP web site looks good, who design it? By a company or someone? I am not good at designing outlook... -- 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 rela

Fix for error Fatal error: Class 'Debugger' not found in ... for php 5.4

2012-04-18 Thread rvcT
using cake 2.1.1 + php 5.4 when writing your components callback functions ensure that they have the same declaration as there parent function in class component for example : when using function initialize in your component make it's declaration as public function initialize(Controller $control

Re: Distinto limit en la paginacion

2012-04-18 Thread Jackson Bicalho
Establecer la cantidad de artículos para ser publicados en el parámetro [límite] 'Límite' => N Dentro del controlador realice las comprobaciones que desee y cambiar el límite de acuerdo a donde usted está. Espero que sea útil. (Traducido a través de Google) :=) Em 18-04-2012 08:10, Antonio G

Re: Using html template in cakephp

2012-04-18 Thread McBuck DGAF
The new View Blocks allow you define general layouts, like header, content, footer, etc., in separate files to avoid repetition (DRY). Check out the "Extending Views" section, discussing View Blocks, in the cookbook: http://book.cakephp.org/2.0/en/views.html It might be easiest for you to create

Re: Distinto limit en la paginacion

2012-04-18 Thread Yves S. Garret
Amigo, it'd be easier for others to understand and help you with some translation done for other before-hand. Most of the people here speak English :) . Google translate, ftw! Good afternoon, I would like to know how to do the following: I would like to paginate in page 1 page for example only

Re: Some Issues: multiple views on one page and help with javascript

2012-04-18 Thread bs28723
I don't know a lot about AJAX - Need to learn :-) What I am doing with the helper, is that I was finding that I was repeating code in multiple views or several times in a single view to get ready to call an element. So, I just moved this common code from the view to a helper, then made a single

Distinto limit en la paginacion

2012-04-18 Thread Antonio Garcia
Buenas tardes, quisiera saber como hacer lo siguiente: me gustaria que al paginar, en la pagina 1 paginar por ejemplo solo 10 elementos, y en las paginas siguientes paginar por ejemplo 15. En resumen definir dependiendo de la pagina en la que nos encontremos, el numero de elementos que deben apar

Re: Some Issues: multiple views on one page and help with javascript

2012-04-18 Thread luca capra
Il 18/04/2012 13:01, Timo ha scritto: Thanks a lot for your answer, it helped me a lot! I see how elements can be used for what I am trying to do. I tried the simple example from the link you provided, so now I can populate multiple ares of one page with different views - that's great! Wha

Re: Some Issues: multiple views on one page and help with javascript

2012-04-18 Thread Timo
Thanks a lot for your answer, it helped me a lot! I see how elements can be used for what I am trying to do. I tried the simple example from the link you provided, so now I can populate multiple ares of one page with different views - that's great! What I don't quite grasp is the usefulness of