Re: [PHP-DB] Php 5 and Mysql on Windows

2006-10-04 Thread Lester Caine

[EMAIL PROTECTED] wrote:


That solved it. Awesome. Thanks you so much.


Brian - A 'phpinfo()' test page is almost essential. When you make 
changes to the php.ini file you can check they have taken ;)


--
Lester Caine - G8HFL
-
L.S.Caine Electronic Services - http://home.lsces.co.uk
Model Engineers Digital Workshop - 
http://home.lsces.co.uk/ModelEngineersDigitalWorkshop/

Treasurer - Firebird Foundation Inc. - http://www.firebirdsql.org/index.php

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] Php 5 and Mysql on Windows

2006-10-03 Thread brian . kejser
Hi

I setup Php as follows:

1. Download the php zip file (not the installer)
2. Unzip the files to c:\Php
3. Add c:\php to the path
4. Copy php.ini-dist to php.ini
5. Add and enable the web extension php5isapi.dll
6. Add the .php extension mapping to php5isapi.dll at the the web sites
folder
7. Grant everyone read access to c:\php
8. Enable the mysql extension in php.ini
9. Set the extension_dir in php.ini to ./ext
10. Reboot

I setup Mysql as follows:

1. Download the 5.x installer
2. Run the installer
3. Run the configuration tool ater the installer

When I run the following script, the error Fatal error: Call to
undefined function mysql_connect() in Test.php on line 3  is returned.

?php

$conn = mysql_connect('localhost', 'root', 'password')

?

Any help would be appreciated.

Thanks

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



re: [PHP-DB] Php 5 and Mysql on Windows

2006-10-03 Thread brian . kejser
Hey

Thanks but that didn't help.

Do you have any other suggestions?

By the way, I'm using php 5.1.6 and mysql 5.0.24a.




-Original Message-
From: [EMAIL PROTECTED]
Sent: Tue, October 3, 2006 11:52
To: [EMAIL PROTECTED], php-db@lists.php.net
Subject: re: [PHP-DB] Php 5 and Mysql on Windows

Hi Brian...

My guess is that you want to take the period out from in front of the
/ext parm... This says look one  directory higher than  that of 
/php... for a folder called /ext

Here is my extension_dir entry:  extension_dir = c:/WebServ/php/ext/

Scot L. Diddle, Richmond VA, 804.231.8407


From: [EMAIL PROTECTED]
Sent: Tuesday, October 03, 2006 7:22 PM
To: php-db@lists.php.net
Subject: [PHP-DB] Php 5 and Mysql on Windows

Hi

I setup Php as follows:

1. Download the php zip file (not the installer)
2. Unzip the files to c:\Php
3. Add c:\php to the path
4. Copy php.ini-dist to php.ini
5. Add and enable the web extension php5isapi.dll
6. Add the .php extension mapping to php5isapi.dll at the the web sites
folder
7. Grant everyone read access to c:\php
8. Enable the mysql extension in php.ini
9. Set the extension_dir in php.ini to ./ext
10. Reboot

I setup Mysql as follows:

1. Download the 5.x installer
2. Run the installer
3. Run the configuration tool ater the installer

When I run the following script, the error Fatal error: Call to
undefined function mysql_connect() in Test.php on line 3 is returned.

$conn = mysql_connect('localhost', 'root', 'password')

?

Any help would be appreciated.

Thanks

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Php 5 and Mysql on Windows

2006-10-03 Thread brian . kejser
Hey

I'm using IIS on W2K3 SP1, php 5.1.6 and mysql 5.0.24a.







-Original Message-
From: Alejandro Tesone [EMAIL PROTECTED]
Sent: Tue, October 3, 2006 12:25
To: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] Php 5 and Mysql on Windows

Which server you will use? Apache or Microsoft?

On 10/3/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

 Hi

 I setup Php as follows:

 1. Download the php zip file (not the installer)
 2. Unzip the files to c:\Php
 3. Add c:\php to the path
 4. Copy php.ini-dist to php.ini
 5. Add and enable the web extension php5isapi.dll
 6. Add the .php extension mapping to php5isapi.dll at the the web sites
 folder
 7. Grant everyone read access to c:\php
 8. Enable the mysql extension in php.ini
 9. Set the extension_dir in php.ini to ./ext
 10. Reboot

 I setup Mysql as follows:

 1. Download the 5.x installer
 2. Run the installer
 3. Run the configuration tool ater the installer

 When I run the following script, the error Fatal error: Call to
 undefined function mysql_connect() in Test.php on line 3  is returned.

 ?php

 $conn = mysql_connect('localhost', 'root', 'password')

 ?

 Any help would be appreciated.

 Thanks

 --
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Php 5 and Mysql on Windows

2006-10-03 Thread Stut
[EMAIL PROTECTED] wrote:
 I setup Mysql as follows:
 
 1. Download the 5.x installer
 2. Run the installer
 3. Run the configuration tool ater the installer
 
 When I run the following script, the error Fatal error: Call to
 undefined function mysql_connect() in Test.php on line 3  is returned.
 
 $conn = mysql_connect('localhost', 'root', 'password')

Installing MySQL is not enough - you need to enable the mysql extension
in your php.ini.

-Stut

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Php 5 and Mysql on Windows

2006-10-03 Thread brian . kejser
Hey

I did that already. Step (8) of setting up php.

Do I need to move any files around or add anything else to the path?




-Original Message-
From: Stut [EMAIL PROTECTED]
Sent: Tue, October 3, 2006 14:12
To: [EMAIL PROTECTED]
Cc: php-db@lists.php.net
Subject: Re: [PHP-DB] Php 5 and Mysql on Windows

[EMAIL PROTECTED] wrote:
 I setup Mysql as follows:

 1. Download the 5.x installer
 2. Run the installer
 3. Run the configuration tool ater the installer

 When I run the following script, the error Fatal error: Call to
 undefined function mysql_connect() in Test.php on line 3  is returned.

 $conn = mysql_connect('localhost', 'root', 'password')

Installing MySQL is not enough - you need to enable the mysql extension
in your php.ini.

-Stut

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Php 5 and Mysql on Windows

2006-10-03 Thread Dave W

You might want to try php.ini-recommended instead of php.ini-dist.

On 10/3/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:


Hey

I did that already. Step (8) of setting up php.

Do I need to move any files around or add anything else to the path?




-Original Message-
From: Stut [EMAIL PROTECTED]
Sent: Tue, October 3, 2006 14:12
To: [EMAIL PROTECTED]
Cc: php-db@lists.php.net
Subject: Re: [PHP-DB] Php 5 and Mysql on Windows

[EMAIL PROTECTED] wrote:
 I setup Mysql as follows:

 1. Download the 5.x installer
 2. Run the installer
 3. Run the configuration tool ater the installer

 When I run the following script, the error Fatal error: Call to
 undefined function mysql_connect() in Test.php on line 3  is returned.

 $conn = mysql_connect('localhost', 'root', 'password')

Installing MySQL is not enough - you need to enable the mysql extension
in your php.ini.

-Stut

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php





--
Dave W


Re: [PHP-DB] Php 5 and Mysql on Windows

2006-10-03 Thread Niel Archer
Hi

Make sure that the php.ini file being used is the one you thinkit is.

I keep mine in the php directory, so I have to be very careful that I
don't accidentally let one get into the Windows folder, becuase that is
search first

The manual lists the search order. It also has some notes on setting up
IIS and where to put the php5isapi.dll so it is found

Niel

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Php 5 and Mysql on Windows

2006-10-03 Thread brian . kejser
Hey

I tried that but I still get the error.





-Original Message-
From: Dave W [EMAIL PROTECTED]
Sent: Tue, October 3, 2006 14:33
To: [EMAIL PROTECTED]
Cc: php-db@lists.php.net
Subject: Re: [PHP-DB] Php 5 and Mysql on Windows

You might want to try php.ini-recommended instead of php.ini-dist.

On 10/3/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

 Hey

 I did that already. Step (8) of setting up php.

 Do I need to move any files around or add anything else to the path?




 -Original Message-
 From: Stut [EMAIL PROTECTED]
 Sent: Tue, October 3, 2006 14:12
 To: [EMAIL PROTECTED]
 Cc: php-db@lists.php.net
 Subject: Re: [PHP-DB] Php 5 and Mysql on Windows

 [EMAIL PROTECTED] wrote:
  I setup Mysql as follows:
 
  1. Download the 5.x installer
  2. Run the installer
  3. Run the configuration tool ater the installer
 
  When I run the following script, the error Fatal error: Call to
  undefined function mysql_connect() in Test.php on line 3  is returned.
 
  $conn = mysql_connect('localhost', 'root', 'password')

 Installing MySQL is not enough - you need to enable the mysql extension
 in your php.ini.

 -Stut

 --
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php

 --
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




-- 
Dave W

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Php 5 and Mysql on Windows

2006-10-03 Thread Frank M. Kromann
IIRC: When you are using ISAPI you must have php,ini in the windows
directory.

If you are using CGI you can have it in the same directory as all other
PHP files.

- Frank

 Hi
 
 Make sure that the php.ini file being used is the one you thinkit is.
 
 I keep mine in the php directory, so I have to be very careful that I
 don't accidentally let one get into the Windows folder, becuase that is
 search first
 
 The manual lists the search order. It also has some notes on setting up
 IIS and where to put the php5isapi.dll so it is found
 
 Niel
 
 -- 
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Php 5 and Mysql on Windows

2006-10-03 Thread brian . kejser
Wow

That solved it. Awesome. Thanks you so much.




-Original Message-
From: Frank M. Kromann [EMAIL PROTECTED]
Sent: Tue, October 3, 2006 19:20
To: php-db@lists.php.net
Subject: Re: [PHP-DB] Php 5 and Mysql on Windows

IIRC: When you are using ISAPI you must have php,ini in the windows
directory.

If you are using CGI you can have it in the same directory as all other
PHP files.

- Frank

 Hi

 Make sure that the php.ini file being used is the one you thinkit is.

 I keep mine in the php directory, so I have to be very careful that I
 don't accidentally let one get into the Windows folder, becuase that is
 search first

 The manual lists the search order. It also has some notes on setting up
 IIS and where to put the php5isapi.dll so it is found

 Niel

 --
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php