The fastest and easiest way is probably to just copy the file “wildfire_mysql.sql” from “Wildfire\resources\database” folder and then paste it in the “c:\MySQL\bin” folder (if that’'s where you installed MySQL).
Then open the command prompt and change to the “c:\MySQL\bin” folder by executing:
cd c:\MySQL\bin
(if the prompt wasn’'t already on the “C:” partition, for example “D:\some_folder” then execute: c: )
and then run the import:
wildfire_mysql.sql | mysql -u root -p wildfire
When you installed MySQL you could have selected the option “Include Bin Directory in Windows PATH” (it’'s not selected by default).

All the folders that are added to the PATH variable gets searched
when Windows tries to locate a program. You can add it manually if you
want to be able to run mysql from wherever.
Rightclick on “My Computer”, choose “Properties”, select the
“Advanced” tab, click the “Enviroment Variables” button, select the
“Path” variable in the list of system variables and click “Edit”.

Now add the path to the bin folder at the end of the list but don’'t forget to add a ; before the path like this
;c:\MySQL\bin
You might have to reboot your system before the “bin” folder has been added to the PATH variable (I’'m not sure).
Now try to run the import again:
type “%PROGRAMFILES%\Wildfire\resources\database\wildfire_mysql.sql” | mysql -u root -p wildfire
Personally I think it’'s worth it to add it to the “bin” folder to the
PATH variable because you never have to “be” in the folder where MySQL
is (or type the whole path every time).
Message was edited by: FreaKBrother