Re: Future Development Planning

2011-05-15 Thread Matt Murphy
Why not make 10k fake users now on your dev site?  (Maybe write a controller
to iterate through a set of fake creds using your existing user controller
to put them in -- or just do it by hand in SQL)  Do you need to create any
scripting of actions across alot of accounts as well (to simulate use)?

MM

On Sun, May 15, 2011 at 12:05 AM, Krissy Masters naked.cake.ba...@gmail.com
 wrote:

 I am working on a rather large project that will expand overtime as the
 site
 grows. So as I have never done this with Cake I was wondering how does one
 go about this.

 I know in 3 months we will be adding some new features once there are more
 users (10k Users)
 Now there is no way to test the functionality of these new features without
 the users / db records so we need to wait until we actually have this to
 start testing these new site options. But how? Once we have the base
 membership goal reached how do we add in new features / controllers and so
 on in an already live environment. We need to test it using the database
 yet
 also allow only developers to be able to see it as if it were a live
 account
 but not to actual live users?

 Thanks,

 K



 --
 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 email to
 cake-php+unsubscr...@googlegroups.com For more options, visit this group
 at http://groups.google.com/group/cake-php


-- 
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 email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Re: Future Development Planning

2011-05-15 Thread AD7six


On May 15, 6:05 am, Krissy Masters naked.cake.ba...@gmail.com
wrote:
 I am working on a rather large project that will expand overtime as the site
 grows. So as I have never done this with Cake I was wondering how does one
 go about this.

 I know in 3 months we will be adding some new features once there are more
 users (10k Users)
 Now there is no way to test the functionality of these new features without
 the users / db records so we need to wait until we actually have this to
 start testing these new site options.

Or you just create them yourself. I do hope you were not planning on
testing on your live environment.

Why don't you use something like this:
http://debuggable.com/posts/fixturize-shell---generate-your-fixtures-automatically:48c12ad0-2350-4b5a-94d4-5f424834cda3

 But how? Once we have the base
 membership goal reached how do we add in new features / controllers and so
 on in an already live environment.

You mean how do you deploy a new version?

Here's something for the db: https://github.com/CakeDC/migrations
How you deploy a new code version is up to you . why not start off
with simply: git checkout versiontag; cake migrate ...

  We need to test it using the database yet
 also allow only developers to be able to see it as if it were a live account
 but not to actual live users?

Don't know what that means but you're probably describing a staging
site.

AD

-- 
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 email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


RE: Future Development Planning

2011-05-15 Thread Krissy Masters
@ad7six no not planning on testing on live environment J

 

@m murphy I will read up on that. That's would be a better idea for now.
Only problem is in this situation for a User to be visible on the site
their profile needs to be complete with min requirements of related table
records must have 

1 ModelA 

2 ModelB 

5 ModelC and an uploaded Avatar

 

so I need to write a controller to make a full complete User with multi
record inserts which now makes me wonder if there is a way to do such a
thing in cake or its all manual?

 

Thanks guys!

 

K

 

From: cake-php@googlegroups.com [mailto:cake-php@googlegroups.com] On Behalf
Of Matt Murphy
Sent: Sunday, May 15, 2011 10:42 AM
To: cake-php@googlegroups.com
Subject: Re: Future Development Planning

 

Why not make 10k fake users now on your dev site?  (Maybe write a controller
to iterate through a set of fake creds using your existing user controller
to put them in -- or just do it by hand in SQL)  Do you need to create any
scripting of actions across alot of accounts as well (to simulate use)?

MM

On Sun, May 15, 2011 at 12:05 AM, Krissy Masters
naked.cake.ba...@gmail.com wrote:

I am working on a rather large project that will expand overtime as the site
grows. So as I have never done this with Cake I was wondering how does one
go about this.

I know in 3 months we will be adding some new features once there are more
users (10k Users)
Now there is no way to test the functionality of these new features without
the users / db records so we need to wait until we actually have this to
start testing these new site options. But how? Once we have the base
membership goal reached how do we add in new features / controllers and so
on in an already live environment. We need to test it using the database yet
also allow only developers to be able to see it as if it were a live account
but not to actual live users?

Thanks,

K



--
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 email to
cake-php+unsubscr...@googlegroups.com
mailto:cake-php%2bunsubscr...@googlegroups.com  For more options, visit
this group at http://groups.google.com/group/cake-php

 

-- 
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 email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at
http://groups.google.com/group/cake-php

-- 
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 email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Future Development Planning

2011-05-14 Thread Krissy Masters
I am working on a rather large project that will expand overtime as the site
grows. So as I have never done this with Cake I was wondering how does one
go about this.

I know in 3 months we will be adding some new features once there are more
users (10k Users) 
Now there is no way to test the functionality of these new features without
the users / db records so we need to wait until we actually have this to
start testing these new site options. But how? Once we have the base
membership goal reached how do we add in new features / controllers and so
on in an already live environment. We need to test it using the database yet
also allow only developers to be able to see it as if it were a live account
but not to actual live users?

Thanks,

K



-- 
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 email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php