In light of some comments, plus some further knowledge, please understand that my suggestion is for general software that isn't for something that has to be extremely secure. IE, if someone steals the password to your forum account, most the time you'll be ticked about it–but not harmed outright. But, if someone steals the password to something highly personal or financially related, it's a whole other ball park!
For highly secure environments, I suggest the following.
Use a military-grade hash algorithm like SHA512, GOST, or Whirlpool.For each installation of your software, enforce a policy of mixed characters plus frequent (2x monthly) password rotation.For each installation of your product, generate a very long (very, very!) random number that is stored in the configuration file as a secondary salt. I'd suggest numbers in the range of 1 trillion.NEVER STORE THE PASSWORD OUTSIDE THE DATABASE, EVER. If you must, key the user's account (in the database) to a specific login code that is then placed in the session (not a cookie) which differs at each login.Enforce a maximum login duration such as 1-2 days.Do not restrict password length, save the hashed result that is stored in the database. If the user memorizes a 60+ character long mnemonic let him use it, rather than enforcing "your password must be between 6 and 24 characters in length." This is the stupidest policy I see on every website, as the longer the length is, with more variations, the more secure the password is.Treat all input with absolute paranoia; allow nothing that could possibly lead to a session hijacking.Enforce a failure policy of 3 attempts-per-hour. Frankly, the user should be emailed immediately with the option to unlock if they've forgotten their password. But then again, assume it is compromised and limit that to 3 attempts as well. If someone uses all 9 attempts, then there's an obvious attack going on and the IP should be banned (or the incompetent user forced to pick another password).And last but not least: I am not an expert. Be as paranoid as possible, make things as hard to intrude as possible, then, if you are still worried, contact a white-hat hacker to see what they say about your code/system.