|
|
|
|
![]() ![]() |
Apr 13 2006, 05:14 PM
Post
#1
|
|
|
Newbie [ Level 1 ] Group: Members Posts: 4 Joined: 13-April 06 Member No.: 12,732 |
Hello, I am currently testing my site on my on PC which I am using as a testing server. I am experiencing problems with my database connection between PHP 5 and MySQL 5. Does anyone know how to solve this problem?
If you need any more info about my problem feel free to ask. Thanks Chris |
|
|
|
Apr 13 2006, 11:47 PM
Post
#2
|
|
|
NiGHTFoX - Hiding in the dark Group: Members Posts: 680 Joined: 3-April 05 Member No.: 3,584 |
Hello, I am currently testing my site on my on PC which I am using as a testing server. I am experiencing problems with my database connection between PHP 5 and MySQL 5. Does anyone know how to solve this problem? If you need any more info about my problem feel free to ask. Thanks Chris Here's your problem, you're using Micro$oft's lame excuse for a server. For Windows, if you're going to run a test server, get XAMPP. It's PHP, MySQL, Apache all bundled into one happy package. I've NEVER had any problems using a pre-packaged bundle of PHP, MySQL and Apache. I've tried exactly the same thing you're doing a long time ago. I got so frustrated with it that I installed phpTriad and problem solved. Just try XAMPP. It should work better for you. [N]F |
|
|
|
Apr 16 2006, 04:51 PM
Post
#3
|
|
|
End Of Computer Group: Members Posts: 346 Joined: 1-September 04 From: .:: MARS ::. Member No.: 28 |
Hi
Please give more details about your system have you installed PHP manually or with windows installer you should edit your PHP.inf file (located in C:\windows) find following line: ;extension=php_mysql.dll and delete first character like below: extension=php_mysql.dll and then copy/paste "php_mysql.dll" from \ext directory to php directory for example c:\php\ext to c:\php |
|
|
|
Apr 18 2006, 12:38 PM
Post
#4
|
|
|
Guilty Until Proven Innocent Group: Members Posts: 372 Joined: 13-April 05 Member No.: 3,937 |
;extension=php_mysql.dll and delete first character like below: extension=php_mysql.dll and then copy/paste "php_mysql.dll" from \ext directory to php directory for example c:\php\ext to c:\php Tried that before, never worked for me.. dont know if there is a bug with regards to mySQL and php with windows.. anyway, i have apache2 running.. to end up everything, i downloaded the sources codes for apache. php and apache2 and compiled myself my own version in one pack.. messy but it worked.. no ftp hough, never figure out how to enable that in the compilation.. anyway, phptriad is the shortest way, much better xammp.. I am on xammp now |
|
|
|
May 29 2006, 10:02 AM
Post
#5
|
|
|
Member [ Level 2 ] Group: Members Posts: 54 Joined: 28-May 06 Member No.: 13,691 |
I had similar problem when I tried to connect PHP 5 and MySQL 50.1. Then I switched to PHP 4.4.1.Now its running smoothly.
I used the following codes to connect to Mysql <?php $conn = mysql_connect('localhost', 'root', 'brother'); echo "successfully connected"; ?> At first I got this error message: ERROR1251:Client does not support authentication protocol requested by server; consider upgrading MySQL client. I then used the following syntax in mysql prompt. |
|
|
|
May 29 2006, 04:32 PM
Post
#6
|
|
|
Premium Member Group: Members Posts: 238 Joined: 9-September 05 Member No.: 8,400 |
common nightfox, that was a pretty lame attempt by urself at solving a problem by just bashing microsoft. the other responses came far intellectually dont u think? See, I know its easier to work in Linux with the open source tools but testing stuff on windows (and IIS 5.1) too does pay off at times.
i suppose the solution of soleimanian shall work. when i encountered the same problem with PHP 5, i did the same. In Linux usually installing the concerned modules does the deed. |
|
|
|
May 29 2006, 06:46 PM
Post
#7
|
|
|
Super Member Group: Members Posts: 572 Joined: 25-April 05 From: Nashville Tennessee Member No.: 4,340 |
PHP 5 comes with the mysql dlls disabled instead it uses mysqli (supposed to stand for MySQL improved), you will have to edit your php.ini (wherever it is located) and remove the semicolon from in front of the dll as shown below
HTML ;extension=php_mssql.dll Now if this is a brand new install and your php is working then just do a phpinfo() on your server copy and paste the below code into your server root directory if I remember right it is inetpub/www but if not then you should know ehre it is.;extension=php_mysql.dll extension=php_mysqli.dll HTML <?php If you are having problems then you might want to go to Chapter 6 of the PHP manual right here at Chapter 6. Installation on Windows systems. Being a regular contributor at PHP Builder this same question is a common one, and any more my answer, especially if the problem has lasted for more than two days is to get either Triad, or XAMPP (my choice) or Wamp and uninstall or disable IIS even though it is on your PC Apache is FREE and the most widely used webserver in the world (IIS or PWS aren't even close). If you have this problem after reading and following the instructions for PHP install using PHP's own manual then you might take my advice and just get an all in one package that does it all for you with no problems and you are ready to go with coding on your local machine then when your scripts are bug free then send them up to your active internet Web site.
phpinfo(); ?> |
|
|
|
![]() ![]() |
Similar Topics
|
Lo-Fi Version | Time is now: 22nd November 2008 - 02:25 PM |