Re: Planning on CakePHP future versions

2006-10-24 Thread funkyfresh

Guys,

my own opinion on this. For the future stability and wider acceptance
of CakePHP, you should never remove any deprecated methods.

Anything that introduces instability into the product, reduces its
acceptance into the wider developer community.

At the least, you end up stuck on older releases because you dare not
upgrade an existing clients website. At worst, you dont use CakePHP
because of the added instability.

eg. Java has lots of deprecated classes and methods, but I dont believe
any of them have ever been removed. Why? Stability.

Many applications just cannot afford the time to revisit existing code.

If I use CakePHP to develop multiple websites, and each of them ends up
on a different Cake release because I dare not upgrade, thats gonna be
a major headache!

Deprecate as much a required, but please,please,please dont make the
product unstable by breaking existing code!

If it has to to be done at all, say for justifiable perfomance reasons,
can we make this something that happens very rarely. I like the product
so far, but for me to use it in anger, it has to be stable.

Glad to hear others opinions on this...

C


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~--~~~~--~~--~--~---



Re: MAMP and mod_rewrite with cake

2006-10-24 Thread funkyfresh

Ive had a similar problem when I add the final /

try removing the final slash, and see if it works, eg /posts

havent had time thus far to investigate this further, anyone know why
the additional / causes problems?


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~--~~~~--~~--~--~---



Problem with the Cake Blog Tutorial

2006-06-14 Thread funkyfresh

Hi,

new to cake and trying to get this tutorial up and running.

Installed XAMPP (Windows 1.5.3a)  and Cake (cake_1.1.3.2967)

Followed the instruction but when I try to access the URL in section 9,
in my case
http://localhost/posts/index, I just get an error message

You are seeing this error because the action index is not defined in
controller PostsController

Notice: this error is being rendered by the
app/views/errors/missing_action.thtml view file, a user-customizable
error page for handling invalid action dispatches.


Fatal: Create Method:

?php
class PostsController extends AppController
{
function index()
{

}
}
?


in file : app\controllers\posts_controller.php

Error: Unable to execute action index in PostsController



heres the contents of my posts_controller.php



?php

class PostsController extends AppController
{
var $name = 'Posts';
}

function index() {

$this-set('posts',$this-Post-findAll()); 
} 




?

any ideas?


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~--~~~~--~~--~--~---



Re: Problem with the Cake Blog Tutorial

2006-06-14 Thread funkyfresh

DOH!

Thanks for that, life saver. See what happens when you edit with
wordpad!


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~--~~~~--~~--~--~---