Re: Cakephp fails on xampp - cakecontroller could not be found

2012-01-26 Thread jkrug_98
Thanks for your reply. I must have done something wrong during the installation on my XP system. Not sure what yet - but - I successfully intalled xampp & cakephp 2.0.5 on my Windows 7 system. All works well! The Win7 system is my primary development station and the XP system is my "at work" sys

Re: Cakephp fails on xampp - cakecontroller could not be found

2012-01-26 Thread AD7six
On Jan 26, 1:21 am, Sam Sherlock wrote: > Cake might be a bad name for a controller. He's simply reading and following the error messages. jkrug_98 - it's either a setup problem ( missing .htaccess file) or a bug. what version of cake are you using. AD -- Our newest site for the community:

Re: Cakephp fails on xampp - cakecontroller could not be found

2012-01-25 Thread Sam Sherlock
Cake might be a bad name for a controller. Your controller has no action method Perhaps add: public function index() {} and put a index.ctp in View/Cake/ Also CakeController.php should be the filename (that casing) - S On 25 Jan 2012 23:18, "jkrug_98" wrote: > Hi, I'm a newbee to PHP and xam

Re: Cakephp fails on xampp - cakecontroller could not be found

2012-01-25 Thread jeremyharris
Don't modify core files. That's never a good idea. It's probably an issue with your cake include path. You can define a path to it in the /webroot/index.php file. Make sure it's finding the core classes. I use it on Win7 xampp at work and it works just fine. -- Our newest site for the communit

Cakephp fails on xampp - cakecontroller could not be found

2012-01-25 Thread jkrug_98
Hi, I'm a newbee to PHP and xampp but have years of embedded programming experience. My environment is: Windows XP, xampp 1.7.7 , Mysql 5.5.16, php 5.3.8. cakephp is installed in: c:xampp\htdocs\Cake (Note: Wordpress runs great in this environment!) Browser url: http://localhost/cake Re