I did read that. I can't use the "my.cnf" because my boot drive is drive "D" and NOT drive "C". MySQL is located in my F:/Inetpub/MySQL folder.
According to the link you sent me (as well as the MYSQL docs), I need to use only my.ini in the D:/WINNT folder.
It's there and doesn't work.
The MySQL docs also say to try the my.cnf. I tried placing that in the D:/ folder, D:/WinNT, and F:/INetpub/MySQL folders.
No luck either way.
The MYSQL docs also say to edit the values in the registry (this is an exact copy/paste from the HTML docs. NOTE the last line of fixing the path in the registry!) :
--------------------
Note that in this case you can't use any other options for mysqld-nt!
You can also run mysqld-nt as a stand-alone program on NT if you need to start mysqld-nt with any options! If you start mysqld-nt without options on NT, mysqld-nt tries to start itself as a service with the default service options. If you have stopped mysqld-nt, you have to start it with NET START mysql.
The service is installed with the name MySQL. Once installed, it must be started using the Services Control Manager (SCM) Utility found in the Control Panel, or by using the NET START MySQL command. If any options are desired, they must be specified as ``Startup parameters'' in the SCM utility before you start the MySQL service. Once running, mysqld-nt can be stopped using mysqladmin, or from the SCM utility or by using the command NET STOP MySQL. If you use SCM to stop mysqld-nt, there is a strange message from SCM about mysqld shutdown normally. When run as a service, mysqld-nt has no access to a console and so no messages can be seen.
On NT you can get the following service error messages:
Permission Denied Means that it cannot find mysqld-nt.exe.
Cannot Register Means that the path is incorrect.
Failed to install service. Means that the service is already installed or that the Service Control Manager is in bad state.
If you have problems installing mysqld-nt as a service, try starting it with the full path:
C:\> C:\mysql\bin\mysqld-nt --install
If this doesn't work, you can get mysqld-nt to start properly by fixing the path in the registry!
----------------------
Any other ideas?