RE: Clone Site Error

2011-09-04 Thread Krissy Masters
On site 1 (no problem / original site) I turn debug on and I don't see any errors no memory crash on any of the pages. Site 2 ( the clone) every page has the memory error. If I turn debug off the site runs fine, but with debug on I see the error. I dumped the cache, session db. It still makes

Re: Clone Site Error

2011-09-04 Thread Dr. Loboto
Clear caches at /app/tmp - it's first that should be done on clone. Look at site code - is there any hardcoded file path or URL of site? Any of this can create hidden infinite loop as Jeremy suspected. On 4 сен, 13:09, Krissy Masters naked.cake.ba...@gmail.com wrote: On site 1 (no problem /

RE: Clone Site Error

2011-09-04 Thread Krissy Masters
Deleted everything inside all tmp folders, nothing is hardcoded. Checked debug and error logs just for the hell of it, Cleared the logs and went thru every link on the site and check the logs after doing so and everything is at zero so nothing it tripping up any where I can see. Stripped

Re: Clone Site Error

2011-09-04 Thread Ryan Schmidt
On Sep 3, 2011, at 20:36, Krissy Masters wrote: Its already maxed at 64M Both sites are small. 3 tables mostly all statc pages, not heavy at all. Very little sql calls and what ever calls are cached anyways so there is no demand what so ever. And it only appears on 1 site. Why does it

test_app

2011-09-04 Thread Prabha vathi
Is it important, what can i delete in cake/test? -- 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 questions. To unsubscribe from this group, send

Re: test_app

2011-09-04 Thread Teddy Zeenny
I guess all of it if you don't need testing. On Sun, Sep 4, 2011 at 1:15 PM, Prabha vathi prabha.ridd...@gmail.comwrote: Is it important, what can i delete in cake/test? -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions

Persson Queue Plugin - job progress inspection

2011-09-04 Thread Eric Blanpied
Hello, I'm working on an app which needs to manage a number of large file transfers (gigs of full-HD video files) on a periodic basis, and am planning to implement this via some sort of job queue system with curl- based workers taking the activity offline from the browser. I had been planning to

Re: Issues With Auth Component

2011-09-04 Thread tubiz
Hi andrewperk am really grateful for you help so far. Thanks a lot before I got the reply I was able to figure it out. One last problem I am having is that if a user want to edit his profile and the id field for the user in the profile table is 1 but the value of the loggedin user id is 2 a user

CakePHP 2.0.0-RC1 Hot and fresh

2011-09-04 Thread mark_story
The CakePHP core team is proud to announce the immediate availability of CakePHP 2.0.0-RC1[1]. 2.0.0-RC1 marks the beggining of the release candidate process for 2.0.0. From this point forward no additional new features or backwards incompatabile changes will be made to CakePHP 2.0. We plan on

CakePHP without naming convention. is it possible?

2011-09-04 Thread Cruisine
hi guys, i need to know something important about naming convention. yeah, i've been using naming convention while developing all my app all the time. but recently a problem appeared. let say i've got a project to re-developing an app ( from non-cakephp to cakephp) which already had a database.

cakephp 2 app deployed on a subdomain

2011-09-04 Thread #2Will
Hello I have deployed a little app to a subdomain as a stage environment - iv'e done this before with 1.3 apps and not had to do anything special to get it to work. The app works on my localhost I'm getting errors where for example the login form now gives error Error: The requested address

Re: cakephp 2 app deployed on a subdomain

2011-09-04 Thread #2Will
Sorry, forgot to mention: i'm on 2.0 rc1 On Sep 5, 9:56 am, #2Will willjbar...@gmail.com wrote: Hello I have deployed a little app to a subdomain as a stage environment - iv'e done this before with 1.3 apps and not had to do anything special to get it to work. The app works on my localhost

Re: cakephp 2 app deployed on a subdomain

2011-09-04 Thread #2Will
just running some debug statements looking at paths: debug(ROOT); debug(WWW_ROOT); debug(WEBROOT_DIR); debug(APP_DIR); debug(APP_PATH); gives me /home/kindlem1/public_html/elip /home/kindlem1/public_html/elip/app/webroot/ webroot app /home/kindlem1/public_html/elip/app/ Which i think looks as

Re: 2.0 is pretty awesome

2011-09-04 Thread mark_story
Thanks for the feedback Parris. Glad to hear you like the code and docs changes. :) -Mark On Sep 3, 10:08 pm, Parris presid...@parrisstudios.com wrote: Thanks guys :)! I love the consistency. The docs are awesome (although it is easier to setup on linux than on windows. I did it on both.).

Re: cakephp 2 app deployed on a subdomain

2011-09-04 Thread #2Will
comparing debug($_SERVER) between local and stage sites local: [PHP_SELF] = /app/webroot/index.php/people/login stage:[PHP_SELF] = /app/webroot/people/login This seems like a likely to be relevent, but what could be causing it? I think i have all my htaccess files present. Looking at

Re: CakePHP without naming convention. is it possible?

2011-09-04 Thread Greg Skerman
http://book.cakephp.org/view/1057/Model-Attributes is a good place to start. you can configure in most circumstances cake to talk to any old database - you just end up losing some of the magic and writing more code as a result. for a model which does not comply with the convention you will at