up vote 1 down vote favorite
share [g+] share [fb]

I CakePHP (cake_1.2.2.8120) and EasyPHP (3.0) installed on Windows Vista Ultimate. I followed the "baking" tutorials online, successfully set the database connection with the "cake bake" command from the CLI.

I baked the controller for my "Users" table using the "php cake.php bake controller Users" command - worked fine. However, when I tried baking the view similarly, I got this message:

Fatal error: Call to undefined function mysql_connect() in C:\Web\EasyPHP
\www\cake\cake\libs\model\datasources\dbo\dbo_mysql.php on line 374'

Also, the mysql module is enabled for PHP on the phpmyadmin page (web), but I can't find it in the CLI (using "php -m" from the command line) even though I've uncommented the "extension=php_mysql.dll" line in the php.ini file.

Any clues?

link|improve this question
I think you had a PHP installation without a compiled MySQL extension. – powtac May 20 '09 at 13:53
Yep, seems that EasyPHP doesn't provide the compiled MySQL for the CLI. XAMPP does that without any extra steps, just installation. Thanks anyways :) – AlaaShaker May 22 '09 at 9:14
1  
I think that the correct answer is not the one that points to change your software, but the one that points why there is the problem, ie, the answer from @andrej. That is the solution to the problem. In common PHP usage, there is a php.ini for Apache (web usage) and another one for the CLI (command line interface). So EasyPHP has the Apache one, but not the one for CLI. You must make a copy from the php.ini in the apache folder to the php folder for use in CLI. Thanks Andrej. – GarciaWebDev Sep 4 '11 at 4:24
feedback

4 Answers

up vote 5 down vote accepted

Grab XAMPP which has apache with the mysql and php modules setup and working together, as well at the mysql and command-line versions. It just unzips to any directory so it won't mess up any other apache installs you have, just be careful of any port conflicts between the different installations.

http://www.apachefriends.org/en/xampp-windows.html

link|improve this answer
WAMP is an alternative. (wampserver.com/en) – dr Hannibal Lecter May 6 '09 at 12:20
Thanks, man .. it's was the silly EasyPHP! Now all's great (Y) – AlaaShaker May 6 '09 at 14:58
feedback

The root cause of problem is that in EasyPHP 5.3 there is no php.ini file in php folder. Copy php.ini from EasyPHP5.3\apache to EasyPHP5.3\php to solve this nasty issue.

link|improve this answer
feedback

Don't know EasyPHP, but it seems to be Apache based. Check if you're using a Apache-module for the mysql-connection, as this will not work in CLI.

link|improve this answer
Thx for the reply, but would you mind telling me how could I know that? I'm still new to those stuff :$ :) – AlaaShaker May 6 '09 at 11:46
feedback

copy the apache/php.ini to php/php.ini.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.